-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrun_fix.log
More file actions
1150 lines (1139 loc) · 818 KB
/
run_fix.log
File metadata and controls
1150 lines (1139 loc) · 818 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
🔧 Loading historical district data from districts.json...
✅ Loaded 283 historical representative terms into district_history
Loading Unified Location Database from static/data/unified_locations.parquet...
✅ Location DB loaded. Indexed 40699 locations.
✅ Found 1428 unique municipalities/cities.
✅ Loaded 38947 location entries from unified_locations.parquet
ℹ️ Normal mode: Skipping projects that are already fully classified
🚀 Starting dynasty-projects cache generation (DuckDB version - Parquet only)...
🚀 Building Inverted Index for Locations...
✅ Indexed 38947 locations.
✅ Loaded config with 432 congressmen
✅ Found political_dynasties.parquet at /home/joebert/open-data-visualization/data/parquet/political_dynasties.parquet
🔍 politician_contractors.parquet columns: ['id', 'politician_id', 'contractor_name', 'match_confidence', 'notes', 'source', 'created_at', 'updated_at']
🔄 Joining with /home/joebert/open-data-visualization/data/parquet/political_dynasties.parquet to resolve politician IDs...
✅ Loaded 288 verified contractor matches (with sources) from politician_contractors.parquet
✅ Loaded 59 party list members from Parquet
✅ Abraham Tolentino: Loaded 8 municipalities for 8th District: ['Naic', 'Alfonso', 'Ternate']...
✅ Arnie Teves: Loaded 8 municipalities for 3rd District: ['Basay', 'Dauin', 'Bacong']...
✅ Arthur C. Yap: Loaded 19 municipalities for 3rd District: ['Anda', 'Lila', 'Loay']...
✅ Aurelio Dueñas Gonzales Jr.: Loaded 4 municipalities for 3rd District: ['Arayat', 'Mexico', 'Bacolor']...
✅ Bai Sandra Sema: Loaded 12 municipalities for 1st District: ['Upi', 'Barira', 'Buldon']...
✅ Bernadette Herrera: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Bojie Dy: Loaded 4 municipalities for 6th District: ['Echague', 'San Isidro', 'Cauayan City']...
✅ Camille Villar: Loaded 20 municipalities for Lone District: ['Ilaya', 'Pilar', 'Zapote']...
✅ Conrado Estrella III: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Dan Fernandez: Loaded 1 municipalities for 1st District: ['City of San Pedro']...
✅ David Catarina Suarez: Loaded 7 municipalities for 2nd District: ['Lucena', 'Tiaong', 'Dolores']...
✅ Deogracias Victor Savellano: Loaded 11 municipalities for 1st District: ['Bantay', 'Sinait', 'Cabugao']...
✅ Divina Grace Yu: Loaded 12 municipalities for 1st District: ['Aurora', 'Molave', 'Mahayag']...
✅ Duke Frasco: Loaded 4 municipalities for 5th District: ['Liloan', 'Compostela', 'Danao City']...
✅ Eddie Villanueva: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Elizaldy Salcedo Co: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Eric Singson: Loaded 23 municipalities for 2nd District: ['Suyo', 'Santa', 'Sigay']...
✅ Evelina Escudero: Loaded 7 municipalities for 1st District: ['Pilar', 'Donsol', 'Castilla']...
✅ Ferdinand Hernandez: Loaded 3 municipalities for 2nd District: ['Banga', 'Tantangan', 'Koronadal City']...
✅ Ferdinand Martin Gomez Romualdez: Loaded 2 municipalities for 1st District: ['Tacloban', 'Tacloban City']...
✅ Ferjenel Biron: Loaded 21 municipalities for 4th District: ['Ajuy', 'Mina', 'Sara']...
✅ Fredenil Castro: Loaded 10 municipalities for 2nd District: ['Dao', 'Sigma', 'Tapaz']...
✅ Frederick Abueg: Loaded 7 municipalities for 2nd District: ['Narra', 'Rizal', 'Quezon']...
✅ Gloria Macapagal Arroyo: Loaded 6 municipalities for 2nd District: ['Lubao', 'Porac', 'Guagua']...
✅ Gwendolyn Garcia: Loaded 7 municipalities for 3rd District: ['Barili', 'Sibonga', 'Asturias']...
✅ Henry Oaminal: Loaded 7 municipalities for 2nd District: ['Clarin', 'Tudela', 'Bonifacio']...
✅ Janette Garin: Loaded 8 municipalities for 2nd District: ['Pavia', 'Jordan', 'Leganes']...
✅ Jay Khonghun: Loaded 4 municipalities for 1st District: ['Subic', 'Castillejos', 'Olongapo City']...
✅ Johnny Pimentel: Loaded 5 municipalities for 2nd District: ['Barobo', 'Lingig', 'Tagbina']...
✅ Juan Pablo Bondoc: Loaded 9 municipalities for 4th District: ['Apalit', 'Candaba', 'Minalin']...
✅ Kristine Singson-Meehan: Loaded 23 municipalities for 2nd District: ['Suyo', 'Santa', 'Sigay']...
✅ Len Alonte: Loaded 24 municipalities for Lone District: ['Loma', 'Biñan', 'Casile']...
✅ Linabelle Villarica: Loaded 8 municipalities for 4th District: ['Angat', 'Norzagaray', 'San Miguel']...
✅ Lito Atienza: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Loren Legarda: Loaded 17 municipalities for Lone District: ['Caluya', 'Culasi', 'Hamtic']...
✅ Luis Raymund Villafuerte: Loaded 7 municipalities for 2nd District: ['Gainza', 'Milaor', 'Pasacao']...
✅ Mercedes Alvarez: Loaded 6 municipalities for 6th District: ['Ilog', 'Candoni', 'Cauayan']...
✅ Mikee Romero: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Mujiv Hataman: Loaded 12 municipalities for At-large District: ['Akbar', 'Maluso', 'Sumisip']...
✅ Pablo John Garcia: Loaded 7 municipalities for 3rd District: ['Barili', 'Sibonga', 'Asturias']...
✅ Paolo Ortega: Loaded 9 municipalities for 1st District: ['Luna', 'Bangar', 'Santol']...
✅ Paulino Salvador C. Leachon: Loaded 8 municipalities for 1st District: ['Baco', 'Pola', 'Naujan']...
✅ Pia Cayetano: Loaded 1 municipalities for 2nd District: ['Taguig City']...
✅ Prospero Pichay Jr.: Loaded 14 municipalities for 1st District: ['Tago', 'Carmen', 'Cortes']...
✅ Ralph Recto: Loaded 8 municipalities for 6th District: ['Malvar', 'Taysan', 'Rosario']...
✅ Randolph Ting: Loaded 7 municipalities for 3rd District: ['Tuao', 'Iguig', 'Enrile']...
✅ Raneo Abu: Loaded 4 municipalities for 2nd District: ['Lobo', 'Mabini', 'Tingloy']...
✅ Raymond Mendoza: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Rodante Marcoleta: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Rogelio Pacquiao: Loaded 7 municipalities for At-large District: ['Glan', 'Alabel', 'Kiamba']...
✅ Rolando Andaya Jr.: Loaded 5 municipalities for 1st District: ['Lupi', 'Ragay', 'Cabusao']...
✅ Rose Marie Arenas: Loaded 6 municipalities for 3rd District: ['Calasiao', 'Mapandan', 'Bayambang']...
✅ Sharon Garin: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Strike Revilla: Loaded 1 municipalities for 2nd District: ['Bacoor City']...
ℹ️ Processing Tirso Edwin Loleng Gardiola via contractors only (no district data)
✅ Tonypet Albano: Loaded 9 municipalities for 1st District: ['Cabagan', 'Tumauini', 'Divilacan']...
✅ Vilma Santos: Loaded 8 municipalities for 6th District: ['Malvar', 'Taysan', 'Rosario']...
✅ Yasser Balindong: Loaded 22 municipalities for 2nd District: ['Butig', 'Bayang', 'Picong']...
✅ Yevgeny Emano: Loaded 14 municipalities for 2nd District: ['Opol', 'Initao', 'Jasaan']...
✅ Gerald Anthony V. Gullas Jr.: Loaded 2 municipalities for 1st District: ['Minglanilla', 'Talisay City']...
✅ Eduardo R. Gullas: Loaded 2 municipalities for 1st District: ['Minglanilla', 'Talisay City']...
✅ Rhea Mae Daluz Gullas: Loaded 2 municipalities for 1st District: ['Minglanilla', 'Talisay City']...
✅ Wilfredo S. Caminero: Loaded 7 municipalities for 2nd District: ['Argao', 'Cebu City', 'Dalaguete']...
✅ Edsel Galeos: Loaded 7 municipalities for 2nd District: ['Argao', 'Cebu City', 'Dalaguete']...
✅ Benhur L. Salimbangon: Loaded 14 municipalities for 4th District: ['Pilar', 'Sogod', 'Borbon']...
✅ Janice Zamora Salimbangon: Loaded 14 municipalities for 4th District: ['Pilar', 'Sogod', 'Borbon']...
✅ Ramon Durano VI: Loaded 4 municipalities for 5th District: ['Liloan', 'Compostela', 'Danao City']...
✅ Emmarie Ouano-Dizon: Loaded 2 municipalities for 6th District: ['Mandaue City', 'Lapu-Lapu City']...
✅ Jonas Cortes: Loaded 2 municipalities for 6th District: ['Mandaue City', 'Lapu-Lapu City']...
✅ Peter John Calderon: Loaded 12 municipalities for 7th District: ['Alcoy', 'Oslob', 'Ronda']...
✅ Daphne Lagon: Loaded 2 municipalities for 6th District: ['Mandaue City', 'Lapu-Lapu City']...
✅ Danilo Domingo: Loaded 6 municipalities for 1st District: ['Bulakan', 'Hagonoy', 'Pulilan']...
✅ Marlo Bancoro: Loaded 9 municipalities for 1st District: ['Buug', 'Payao', 'Alicia']...
✅ Marlyn Hofer-Hasim: Loaded 7 municipalities for 2nd District: ['Ipil', 'Naga', 'Siay']...
✅ Roberto Uy Jr.: Loaded 8 municipalities for 1st District: ['Mutia', 'Rizal', 'Piñan']...
✅ Gloria Irene Labadlabad: Loaded 7 municipalities for 2nd District: ['Siayan', 'Manukan', 'Katipunan']...
✅ Ian Amatong: Loaded 12 municipalities for 3rd District: ['Godod', 'Liloy', 'Salug']...
✅ Lawrence Lemuel Fortun: Loaded 2 municipalities for 1st District: ['Las Nieves', 'Butuan City']...
✅ Dale Corvera: Loaded 10 municipalities for 2nd District: ['Tubay', 'Carmen', 'Jabonga']...
✅ Rene Relampagos: Loaded 13 municipalities for 1st District: ['Loon', 'Dauis', 'Calape']...
✅ Edgar Chatto: Loaded 13 municipalities for 1st District: ['Loon', 'Dauis', 'Calape']...
✅ Erico Aristotle Aumentado: Loaded 13 municipalities for 2nd District: ['Ubay', 'Danao', 'Clarin']...
✅ Vanessa Aumentado: Loaded 13 municipalities for 2nd District: ['Ubay', 'Danao', 'Clarin']...
✅ Kristine Alexie Besas-Tutor: Loaded 19 municipalities for 3rd District: ['Anda', 'Lila', 'Loay']...
✅ Lani Mercado-Revilla: Loaded 1 municipalities for 2nd District: ['Bacoor City']...
✅ Bryan Revilla: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Ramon Rodrigo Gutierrez: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Jernie Jett Nisay: Loaded 1 municipalities for Nationwide: ['Nationwide']...
✅ Caroline Agyao: Loaded 8 municipalities for Lone District: ['Pasil', 'Rizal', 'Tanudan']...
✅ Allen Jesse Mangaoang: Loaded 8 municipalities for Lone District: ['Pasil', 'Rizal', 'Tanudan']...
✅ Carlos Loria: Loaded 10 municipalities for 2nd District: ['Oas', 'Libon', 'Daraga']...
✅ Eulogio Rodriguez: Loaded 11 municipalities for Lone District: ['Bato', 'Viga', 'Baras']...
✅ De Carlo Uy: Loaded 8 municipalities for 1st District: ['Carmen', 'Asuncion', 'Kapalong']...
✅ Ronald Singson: Loaded 11 municipalities for 1st District: ['Bantay', 'Sinait', 'Cabugao']...
✅ Jojo Lara: Loaded 7 municipalities for 3rd District: ['Tuao', 'Iguig', 'Enrile']...
✅ Francisco Jose Matugas II: Loaded 9 municipalities for 1st District: ['Dapa', 'Pilar', 'Burgos']...
✅ Anna York Bondoc: Loaded 9 municipalities for 4th District: ['Apalit', 'Candaba', 'Minalin']...
✅ Romeo Momo: Loaded 14 municipalities for 1st District: ['Tago', 'Carmen', 'Cortes']...
✅ Leonel Domo-ong Ceniza: Loaded 4 municipalities for 2nd District: ['Monkayo', 'Pantukan', 'Montevista']...
✅ Marie Bernadette Escudero: Loaded 7 municipalities for 1st District: ['Pilar', 'Donsol', 'Castilla']...
✅ Ramon Nolasco Sr.: Loaded 10 municipalities for 1st District: ['Alcala', 'Aparri', 'Baggao']...
✅ Ramon Nolasco Jr.: Loaded 10 municipalities for 1st District: ['Alcala', 'Aparri', 'Baggao']...
✅ Samantha Louise Vargas-Alfonso: Loaded 12 municipalities for 2nd District: ['Piat', 'Lasam', 'Rizal']...
✅ Baby Aline Vargas-Alfonso: Loaded 12 municipalities for 2nd District: ['Piat', 'Lasam', 'Rizal']...
✅ Gabriel Bordado Jr.: Loaded 6 municipalities for 3rd District: ['Bombon', 'Canaman', 'Magarao']...
✅ Arnulf Bryan Fuentebella: Loaded 8 municipalities for 4th District: ['Goa', 'Siruma', 'Tigaon']...
✅ Salvio Fortuno: Loaded 7 municipalities for 5th District: ['Baao', 'Bato', 'Buhi']...
✅ Miguel Luis Villafuerte: Loaded 7 municipalities for 5th District: ['Baao', 'Bato', 'Buhi']...
✅ Emmanuel Billones: Loaded 7 municipalities for 1st District: ['Panay', 'Pilar', 'Maayon']...
✅ Dante S. Garcia: Loaded 11 municipalities for 2nd District: ['Agoo', 'Caba', 'Pugo']...
✅ Ramil Hernandez: Loaded 3 municipalities for 2nd District: ['Bay', 'Los Baños', 'Cabuyao City']...
✅ Loreto S. Amante: Loaded 7 municipalities for 3rd District: ['Liliw', 'Rizal', 'Calauan']...
✅ Benjamin Agarao Jr.: Loaded 16 municipalities for 4th District: ['Famy', 'Pila', 'Paete']...
✅ Ziaur-Rahman A. Adiong: Loaded 18 municipalities for 1st District: ['Wao', 'Kapai', 'Masiu']...
✅ Jason P. Almonte: Loaded 10 municipalities for 1st District: ['Aloran', 'Panaon', 'Calamba']...
✅ Christian Unabia: Loaded 11 municipalities for 1st District: ['Salay', 'Medina', 'Balingoan']...
✅ Geraldine Joan Reyes Rosales: Loaded 5 municipalities for 1st District: ['Toboso', 'Calatrava', 'Escalante City']...
✅ Alfredo Marañon III: Loaded 3 municipalities for 2nd District: ['Manapla', 'Cadiz City', 'Sagay City']...
✅ Javier Miguel L. Benitez: Loaded 5 municipalities for 3rd District: ['Murcia', 'Silay City', 'Talisay City']...
✅ Jeffrey P. Ferrer: Loaded 6 municipalities for 4th District: ['Bago City', 'Pontevedra', 'Pulupandan']...
✅ Emilio Bernardino Yulo III: Loaded 6 municipalities for 5th District: ['Isabela', 'Hinigaran', 'Binalbagan']...
✅ Ed Christopher S. Go: Loaded 6 municipalities for 2nd District: ['Gamu', 'Palanan', 'Naguilian']...
✅ Faustino A. Dy V: Loaded 5 municipalities for 3rd District: ['Ramon', 'Alicia', 'Cabatuan']...
✅ Joseph S. Tan: Loaded 5 municipalities for 4th District: ['Jones', 'Cordon', 'Dinapigue']...
✅ Ma. Lourdes P. Aggabao: Loaded 8 municipalities for 5th District: ['Luna', 'Roxas', 'Aurora']...
✅ Emmanuel Iway: Loaded 9 municipalities for 1st District: ['Bindoy', 'Ayungon', 'Tayasan']...
✅ Ma. Isabel L. Sagarbarria: Loaded 8 municipalities for 2nd District: ['Amlan', 'Mabinay', 'Sibulan']...
✅ Alfonso V. Umali Jr.: Loaded 7 municipalities for 2nd District: ['Roxas', 'Bansud', 'Gloria']...
✅ Rose Salvame: Loaded 15 municipalities for 1st District: ['Cuyo', 'Coron', 'Roxas']...
✅ Gil Acosta Jr.: Loaded 2 municipalities for 3rd District: ['Aborlan', 'Puerto Princesa City']...
✅ Zajid Mangudadatu: Loaded 25 municipalities for 2nd District: ['Buluan', 'Paglat', 'Pandag']...
✅ Mohamad Paglas: Loaded 25 municipalities for 2nd District: ['Buluan', 'Paglat', 'Pandag']...
✅ Arthur F. Celeste: Loaded 10 municipalities for 1st District: ['Agno', 'Anda', 'Bani']...
✅ Mark Cojuangco: Loaded 8 municipalities for 2nd District: ['Aguilar', 'Basista', 'Binmaley']...
✅ Gina de Venecia: Loaded 5 municipalities for 4th District: ['Manaoag', 'Mangaldan', 'San Fabian']...
✅ Marlyn Primicias-Agabas: Loaded 10 municipalities for 6th District: ['Tayug', 'Asingan', 'Rosales']...
✅ Isidro Lumayag: Loaded 3 municipalities for 1st District: ['Tupi', 'Tampakan', 'Polomolok']...
✅ Dibu Tuan: Loaded 6 municipalities for 3rd District: ['Norala', "T'boli", 'Surallah']...
✅ Doris E. Maniquiz: Loaded 10 municipalities for 2nd District: ['Iba', 'Botolan', 'Palauig']...
✅ Ricardo S. Cruz Jr.: Loaded 1 municipalities for 1st District: ['Pateros']...
✅ Jeyzel Victoria Yu: Loaded 15 municipalities for 2nd District: ['Bayog', 'Dinas', 'Guipos']...
✅ Alan Dujali: Loaded 3 municipalities for 2nd District: ['Tagum City', 'Panabo City', 'Braulio E. Dujali']...
✅ Raul Tupas: Loaded 7 municipalities for 5th District: ['Jaro', 'Molo', 'Lapuz']...
✅ Julienne Baronda: Loaded 1 municipalities for Lone District: ['Iloilo City']...
✅ Maria Carmen Zamora: Loaded 7 municipalities for 1st District: ['Laak', 'Maco', 'Mawab']...
✅ Lolita Javier: Loaded 14 municipalities for 2nd District: ['Jaro', 'Dulag', 'Tunga']...
✅ Maria Victoria Aumentado: Loaded 4 municipalities for 3rd District: ['Abuyog', 'Javier', 'Silago']...
✅ Richard Gomez: Loaded 5 municipalities for 4th District: ['Palo', 'Tabango', 'Santa Fe']...
✅ Carl Nicolas Cari: Loaded 3 municipalities for 5th District: ['Tolosa', 'Albuera', 'Tanauan']...
✅ Vicente S. Veloso III: Loaded 3 municipalities for 6th District: ['Leyte', 'Kananga', 'Babatngon']...
✅ Carmelo Lazatin II: Loaded 3 municipalities for 1st District: ['Magalang', 'Angeles City', 'Mabalacat City']...
✅ Augusto Sy-Alvarado: Loaded 1 municipalities for 2nd District: ['Obando']...
✅ Lorna Silverio: Loaded 2 municipalities for 3rd District: ['Bustos', 'Plaridel']...
✅ Ambrosio Cruz Jr.: Loaded 1 municipalities for 5th District: ['San Jose del Monte City']...
✅ Salvador Pleyto: Loaded 7 municipalities for 6th District: ['Pandi', 'Bocaue', 'Marilao']...
✅ Francis Gerald A. Abaya: Loaded 4 municipalities for 1st District: ['Kawit', 'Rosario', 'Noveleta']...
✅ Alex L. Advincula: Loaded 1 municipalities for 3rd District: ['Imus City']...
✅ Elpidio F. Barzaga Jr.: Loaded 1 municipalities for 4th District: ['Dasmariñas City']...
✅ Roy M. Loyola: Loaded 3 municipalities for 5th District: ['Silang', 'Carmona', 'General Mariano Alvarez']...
✅ Antonio A. Ferrer: Loaded 1 municipalities for 6th District: ['General Trias City']...
✅ Dania A. Loyola: Loaded 4 municipalities for 7th District: ['Tanza', 'Amadeo', 'Indang']...
✅ Jesus Crispin Remulla: Loaded 4 municipalities for 7th District: ['Tanza', 'Amadeo', 'Indang']...
✅ Wilfrido Mark Enverga: Loaded 5 municipalities for 1st District: ['Baler', 'Dingalan', 'San Luis']...
✅ Reynaldo Uy: Loaded 10 municipalities for 1st District: ['Almagro', 'Gandara', 'Calbayog']...
✅ Keith Micah Tan: Loaded 13 municipalities for 4th District: ['Real', 'Alabat', 'Infanta']...
✅ John Tracy Cagas: Loaded 6 municipalities for 2nd District: ['Sulop', 'Padada', 'Hagonoy']...
✅ Manuel Wowo Fortes Jr.: Loaded 8 municipalities for 2nd District: ['Bulan', 'Gubat', 'Juban']...
✅ Edcel Lagman: Loaded 3 municipalities for 1st District: ['Tiwi', 'Manito', 'Bacacay']...
✅ Fernando Cabredo: Loaded 7 municipalities for 3rd District: ['Ligao', 'Legazpi', 'Pio Duran']...
✅ Eileen Ermita-Buhain: Loaded 3 municipalities for 1st District: ['Lipa City', 'Tanauan City', 'Batangas City']...
✅ Ma. Theresa Collantes: Loaded 8 municipalities for 3rd District: ['Tuy', 'Lian', 'Taal']...
✅ Lianda Bolilia: Loaded 2 municipalities for 4th District: ['Bauan', 'Ibaan']...
✅ Mario Vittorio Mariño: Loaded 9 municipalities for 5th District: ['Balete', 'Cuenca', 'Laurel']...
✅ Bernadette S. Barbers: Loaded 12 municipalities for 2nd District: ['Sison', 'Tubod', 'Bacuag']...
✅ Ching Bernos: Loaded 27 municipalities for Lone District: ['Luba', 'Tubo', 'Bucay']...
✅ Eleanor Begtang: Loaded 7 municipalities for Lone District: ['Luna', 'Flora', 'Conner']...
✅ Lord Allan Jay Velasco: Loaded 6 municipalities for Lone District: ['Boac', 'Gasan', 'Mogpog']...
✅ Odie Tarriela: Loaded 11 municipalities for Lone District: ['Looc', 'Rizal', 'Lubang']...
✅ Eleandro Jesus Madrona: Loaded 17 municipalities for Lone District: ['Looc', 'Banton', 'Ferrol']...
✅ Alan Ecleo: Loaded 7 municipalities for Lone District: ['Libjo', 'Loreto', 'Dinagat']...
✅ Dimszar Sali: Loaded 11 municipalities for Lone District: ['Mapun', 'Bongao', 'Sibutu']...
✅ Jun Gato: Loaded 6 municipalities for Lone District: ['Basco', 'Ivana', 'Uyugan']...
✅ Midy Cua: Loaded 6 municipalities for Lone District: ['Diffun', 'Aglipay', 'Maddela']...
✅ Rommel Rico Angara: Loaded 8 municipalities for Lone District: ['Baler', 'Dilasag', 'Dingalan']...
✅ Lucille Nava: Loaded 5 municipalities for Lone District: ['Jordan', 'Sibunag', 'Buenavista']...
✅ Zaldy Villa: Loaded 6 municipalities for Lone District: ['Lazi', 'Maria', 'Larena']...
✅ Gerardo J. Espina Jr.: Loaded 8 municipalities for Lone District: ['Naval', 'Culaba', 'Almeria']...
✅ Maria Fe Abunda: Loaded 23 municipalities for Lone District: ['Oras', 'Taft', 'Sulat']...
✅ Claude Bautista: Loaded 5 municipalities for Lone District: ['Malita', 'Sarangani', 'Santa Maria']...
✅ Jurdin Jesus Romualdo: Loaded 5 municipalities for Lone District: ['Sagay', 'Mahinog', 'Catarman']...
✅ Solomon Chungalao: Loaded 11 municipalities for Lone District: ['Lamut', 'Tinoc', 'Banaue']...
✅ Maximo Dalog Jr.: Loaded 10 municipalities for Lone District: ['Bauko', 'Besao', 'Barlig']...
✅ Luisa Lloren Cuaresma: Loaded 15 municipalities for Lone District: ['Diadi', 'Aritao', 'Kasibu']...
✅ Eric Yap: Loaded 13 municipalities for Lone District: ['Atok', 'Tuba', 'Bakun']...
✅ Sandro Marcos: Loaded 12 municipalities for 1st District: ['Adams', 'Laoag', 'Bangui']...
✅ Eugenio Angelo Barba: Loaded 11 municipalities for 2nd District: ['Badoc', 'Banna', 'Batac']...
✅ Geraldine Roman: Loaded 4 municipalities for 1st District: ['Orani', 'Samal', 'Abucay']...
✅ Albert Garcia: Loaded 4 municipalities for 2nd District: ['Limay', 'Orion', 'Pilar']...
✅ Maria Angela Garcia: Loaded 4 municipalities for 3rd District: ['Bagac', 'Morong', 'Mariveles']...
✅ Mika Suansing: Loaded 9 municipalities for 1st District: ['Licab', 'Aliaga', 'Cuyapo']...
✅ Joseph Gilbert Violago: Loaded 8 municipalities for 2nd District: ['Lupao', 'Rizal', 'Muñoz']...
✅ Rosanna Vergara: Loaded 7 municipalities for 3rd District: ['Laur', 'Palayan', 'Bongabon']...
✅ Emeng Pascual: Loaded 8 municipalities for 4th District: ['Jaen', 'Gapan', 'Cabiao']...
✅ Jaime Cojuangco: Loaded 10 municipalities for 1st District: ['Anao', 'Pura', 'Ramos']...
✅ Christian Yap: Loaded 4 municipalities for 2nd District: ['Gerona', 'San Jose', 'Victoria']...
✅ Bong Rivera: Loaded 4 municipalities for 3rd District: ['Capas', 'Bamban', 'La Paz']...
✅ Jack Duavit: Loaded 4 municipalities for 1st District: ['Angono', 'Cainta', 'Taytay']...
✅ Dino Tanjuatco: Loaded 7 municipalities for 2nd District: ['Baras', 'Tanay', 'Morong']...
✅ Jose Arturo Garcia Jr.: Loaded 1 municipalities for 3rd District: ['San Mateo']...
✅ Fidel Nograles: Loaded 1 municipalities for 4th District: ['Rodriguez']...
✅ Josefina Tallado: Loaded 5 municipalities for 1st District: ['Labo', 'Paracale', 'Capalonga']...
✅ Rosemarie Panotes: Loaded 7 municipalities for 2nd District: ['Daet', 'Basud', 'Talisay']...
✅ Richard Kho: Loaded 6 municipalities for 1st District: ['Batuan', 'Monreal', 'Claveria']...
✅ Ara Kho: Loaded 7 municipalities for 2nd District: ['Mobo', 'Balud', 'Aroroy']...
✅ Wilton Kho: Loaded 8 municipalities for 3rd District: ['Uson', 'Placer', 'Cawayan']...
✅ Carlito Marquez: Loaded 8 municipalities for 1st District: ['Banga', 'Batan', 'Balete']...
✅ Teodorico Haresco Jr.: Loaded 9 municipalities for 2nd District: ['Lezo', 'Malay', 'Nabas']...
✅ Paul Daza: Loaded 14 municipalities for 1st District: ['Biri', 'Allen', 'Bobon']...
✅ Harris Ongchuan: Loaded 10 municipalities for 2nd District: ['Gamay', 'Laoang', 'Catubig']...
✅ Stephen James Tan: Loaded 10 municipalities for 1st District: ['Almagro', 'Gandara', 'Calbayog']...
✅ Reynolds Michael Tan: Loaded 16 municipalities for 2nd District: ['Basey', 'Daram', 'Calbiga']...
✅ Luz Mercado: Loaded 7 municipalities for 1st District: ['Bontoc', 'Maasin', 'Limasawa']...
✅ Christopherson Yap: Loaded 12 municipalities for 2nd District: ['Sogod', 'Liloan', 'Silago']...
✅ Jose Manuel Alba: Loaded 6 municipalities for 1st District: ['Libona', 'Baungon', 'Sumilao']...
✅ Jonathan Keith Flores: Loaded 5 municipalities for 2nd District: ['Lantapan', 'Impasugong', 'Malaybalay']...
✅ Laarni Roque: Loaded 3 municipalities for 4th District: ['Valencia', 'Kalilangan', 'Pangantucan']...
✅ Mohamad Khalid Quibranza-Dimaporo: Loaded 11 municipalities for 1st District: ['Baroy', 'Maigo', 'Tubod']...
✅ Aminah Dimaporo: Loaded 11 municipalities for 2nd District: ['Lala', 'Munai', 'Sapad']...
✅ Joselito Sacdalan: Loaded 6 municipalities for 1st District: ['Pikit', 'Alamada', 'Aleosan']...
✅ Rudy Caoagdan: Loaded 6 municipalities for 2nd District: ['Arakan', 'Magpet', 'Antipas']...
✅ Maria Alana Samantha Santos: Loaded 6 municipalities for 3rd District: ['Carmen', "M'lang", 'Kabacan']...
✅ Nelson Dayanghirang: Loaded 6 municipalities for 1st District: ['Manay', 'Boston', 'Caraga']...
✅ Cheeno Almario: Loaded 5 municipalities for 2nd District: ['Mati', 'Lupon', 'Banaybanay']...
✅ Rihan Sakaluran: Loaded 6 municipalities for 1st District: ['Isulan', 'Lutayan', 'Columbio']...
✅ Horacio Suansing Jr.: Loaded 6 municipalities for 2nd District: ['Lebak', 'Esperanza', 'Palimbang']...
✅ Alfel Bascug: Loaded 7 municipalities for 1st District: ['Bayugan', 'Sibagat', 'San Luis']...
✅ Eddiebong Plaza: Loaded 8 municipalities for 2nd District: ['La Paz', 'Loreto', 'Trento']...
✅ Samier Tan: Loaded 8 municipalities for 1st District: ['Jolo', 'Parang', 'Indanan']...
✅ Munir Arbison Jr.: Loaded 11 municipalities for 2nd District: ['Luuk', 'Omar', 'Pata']...
✅ Pantaleon Alvarez: Loaded 8 municipalities for 1st District: ['Carmen', 'Asuncion', 'Kapalong']...
✅ Sam Vargas-Alfonso: Loaded 12 municipalities for 2nd District: ['Piat', 'Lasam', 'Rizal']...
✅ Marissa Andaya: Loaded 5 municipalities for 1st District: ['Lupi', 'Ragay', 'Cabusao']...
✅ Luis Raymund Villafuerte Jr.: Loaded 7 municipalities for 2nd District: ['Gainza', 'Milaor', 'Pasacao']...
✅ Josal Fortuno: Loaded 7 municipalities for 5th District: ['Baao', 'Bato', 'Buhi']...
✅ Joseph Bernos: Loaded 27 municipalities for Lone District: ['Luba', 'Tubo', 'Bucay']...
✅ Joel Sacdalan: Loaded 6 municipalities for 1st District: ['Pikit', 'Alamada', 'Aleosan']...
✅ Jose Tejada: Loaded 6 municipalities for 3rd District: ['Carmen', "M'lang", 'Kabacan']...
✅ Corazon Malanyaon: Loaded 6 municipalities for 1st District: ['Manay', 'Boston', 'Caraga']...
✅ Joel Almario: Loaded 5 municipalities for 2nd District: ['Mati', 'Lupon', 'Banaybanay']...
✅ Elias Bulut Jr.: Loaded 7 municipalities for Lone District: ['Luna', 'Flora', 'Conner']...
✅ Michael Goricetta: Loaded 8 municipalities for 2nd District: ['Pavia', 'Jordan', 'Leganes']...
✅ Lorenz Defensor: Loaded 8 municipalities for 3rd District: ['Anilao', 'Banate', 'Dingle']...
✅ Braeden Joseph Biron: Loaded 21 municipalities for 4th District: ['Ajuy', 'Mina', 'Sara']...
✅ Pablo C. Ortega: Loaded 9 municipalities for 1st District: ['Luna', 'Bangar', 'Santol']...
✅ Sandra Y. Eriguel MD: Loaded 11 municipalities for 2nd District: ['Agoo', 'Caba', 'Pugo']...
✅ Josephine Y. Ramirez-Sato: Loaded 11 municipalities for Lone District: ['Looc', 'Rizal', 'Lubang']...
✅ Ruth Mariano-Hernandez: Loaded 3 municipalities for 2nd District: ['Bay', 'Los Baños', 'Cabuyao City']...
✅ Marisol Aragones-Sampelo: Loaded 7 municipalities for 3rd District: ['Liliw', 'Rizal', 'Calauan']...
✅ Ansaruddin Alonto Adiong: Loaded 18 municipalities for 1st District: ['Wao', 'Kapai', 'Masiu']...
✅ Farouk Macarambon: Loaded 22 municipalities for 2nd District: ['Butig', 'Bayang', 'Picong']...
✅ Emmanuel Madrona: Loaded 17 municipalities for Lone District: ['Looc', 'Banton', 'Ferrol']...
✅ Lucy Torres-Gomez: Loaded 5 municipalities for 4th District: ['Palo', 'Tabango', 'Santa Fe']...
✅ Diego Ty: Loaded 10 municipalities for 1st District: ['Aloran', 'Panaon', 'Calamba']...
✅ Juliette Uy: Loaded 14 municipalities for 2nd District: ['Opol', 'Initao', 'Jasaan']...
✅ Gerardo Valmayor: Loaded 5 municipalities for 1st District: ['Toboso', 'Calatrava', 'Escalante City']...
✅ Leo Rafael Cueva: Loaded 3 municipalities for 2nd District: ['Manapla', 'Cadiz City', 'Sagay City']...
✅ Jose Francisco Benitez: Loaded 5 municipalities for 3rd District: ['Murcia', 'Silay City', 'Talisay City']...
✅ Juliet Marie Ferrer: Loaded 6 municipalities for 4th District: ['Bago City', 'Pontevedra', 'Pulupandan']...
✅ Maria Lourdes Arroyo: Loaded 6 municipalities for 5th District: ['Isabela', 'Hinigaran', 'Binalbagan']...
✅ Genaro Alvarez: Loaded 6 municipalities for 6th District: ['Ilog', 'Candoni', 'Cauayan']...
✅ Antonio T. Albano: Loaded 9 municipalities for 1st District: ['Cabagan', 'Tumauini', 'Divilacan']...
✅ Ian Dy: Loaded 5 municipalities for 3rd District: ['Ramon', 'Alicia', 'Cabatuan']...
✅ Sheena Tan: Loaded 5 municipalities for 4th District: ['Jones', 'Cordon', 'Dinapigue']...
✅ Faustino Dy III: Loaded 8 municipalities for 5th District: ['Luna', 'Roxas', 'Aurora']...
✅ Jocelyn Limkaichong: Loaded 9 municipalities for 1st District: ['Bindoy', 'Ayungon', 'Tayasan']...
✅ Manuel Sagarbarria: Loaded 8 municipalities for 2nd District: ['Amlan', 'Mabinay', 'Sibulan']...
✅ Arnulfo Teves: Loaded 8 municipalities for 3rd District: ['Basay', 'Dauin', 'Bacong']...
✅ Paulino Salvador C. Leachon: Loaded 8 municipalities for 1st District: ['Baco', 'Pola', 'Naujan']...
✅ Alfonso V. Umali Jr.: Loaded 7 municipalities for 2nd District: ['Roxas', 'Bansud', 'Gloria']...
✅ Franz Josef George E. Alvarez: Loaded 15 municipalities for 1st District: ['Cuyo', 'Coron', 'Roxas']...
✅ Cyrille Abueg: Loaded 7 municipalities for 2nd District: ['Narra', 'Rizal', 'Quezon']...
✅ Gil Acosta: Loaded 2 municipalities for 3rd District: ['Aborlan', 'Puerto Princesa City']...
✅ Bai Rihan Sakaluran: Loaded 6 municipalities for 1st District: ['Isulan', 'Lutayan', 'Columbio']...
✅ Mikey Arroyo: Loaded 6 municipalities for 2nd District: ['Lubao', 'Porac', 'Guagua']...
✅ Aurelio Dueñas Gonzales Jr.: Loaded 4 municipalities for 3rd District: ['Arayat', 'Mexico', 'Bacolor']...
✅ Rashidin Matba: Loaded 11 municipalities for Lone District: ['Mapun', 'Bongao', 'Sibutu']...
✅ Jose Antonio Sy-Alvarado: Loaded 6 municipalities for 1st District: ['Bulakan', 'Hagonoy', 'Pulilan']...
✅ Apolonio Pancho: Loaded 1 municipalities for 2nd District: ['Obando']...
✅ Henry Villarica: Loaded 8 municipalities for 4th District: ['Angat', 'Norzagaray', 'San Miguel']...
✅ Datu Roonie Sinsuat Sr.: Loaded 12 municipalities for 1st District: ['Upi', 'Barira', 'Buldon']...
✅ Esmael Mangudadatu: Loaded 25 municipalities for 2nd District: ['Buluan', 'Paglat', 'Pandag']...
✅ Ciriaco Gato Jr.: Loaded 6 municipalities for Lone District: ['Basco', 'Ivana', 'Uyugan']...
✅ Junie Cua: Loaded 6 municipalities for Lone District: ['Diffun', 'Aglipay', 'Maddela']...
✅ Ma. Lucille Nava: Loaded 5 municipalities for Lone District: ['Jordan', 'Sibunag', 'Buenavista']...
✅ Jec-Jec Villa II: Loaded 6 municipalities for Lone District: ['Lazi', 'Maria', 'Larena']...
✅ Elpidio F. Barzaga Jr.: Loaded 1 municipalities for 4th District: ['Dasmariñas City']...
✅ Dahlia Loyola: Loaded 3 municipalities for 5th District: ['Silang', 'Carmona', 'General Mariano Alvarez']...
✅ Luis A. Ferrer IV: Loaded 1 municipalities for 6th District: ['General Trias City']...
✅ Wilfredo Mark Enverga: Loaded 5 municipalities for 1st District: ['Baler', 'Dingalan', 'San Luis']...
✅ Aleta Suarez: Loaded 11 municipalities for 3rd District: ['Lopez', 'Gumaca', 'Pitogo']...
✅ Angelina Tan: Loaded 13 municipalities for 4th District: ['Real', 'Alabat', 'Infanta']...
✅ Ditas Ramos: Loaded 8 municipalities for 2nd District: ['Bulan', 'Gubat', 'Juban']...
✅ Shirlyn Bañas-Nograles: Loaded 3 municipalities for 1st District: ['Tupi', 'Tampakan', 'Polomolok']...
✅ Jeffrey Khonghun: Loaded 4 municipalities for 1st District: ['Subic', 'Castillejos', 'Olongapo City']...
✅ Cherry Deloso-Montalla: Loaded 10 municipalities for 2nd District: ['Iba', 'Botolan', 'Palauig']...
✅ Lorna Bautista-Bandigan: Loaded 5 municipalities for Lone District: ['Malita', 'Sarangani', 'Santa Maria']...
✅ Xavier Jesus Romualdo: Loaded 5 municipalities for Lone District: ['Sagay', 'Mahinog', 'Catarman']...
✅ Sameir Tan: Loaded 8 municipalities for 1st District: ['Jolo', 'Parang', 'Indanan']...
✅ Abdulmunir Mundoc Arbison: Loaded 11 municipalities for 2nd District: ['Luuk', 'Omar', 'Pata']...
✅ Joey Salceda: Loaded 10 municipalities for 2nd District: ['Oas', 'Libon', 'Daraga']...
✅ Maria Theresa Collantes: Loaded 8 municipalities for 3rd District: ['Tuy', 'Lian', 'Taal']...
✅ Marvey Mariño: Loaded 9 municipalities for 5th District: ['Balete', 'Cuenca', 'Laurel']...
✅ Vilma Santos-Recto: Loaded 8 municipalities for 6th District: ['Malvar', 'Taysan', 'Rosario']...
✅ Wilter Palma II: Loaded 9 municipalities for 1st District: ['Buug', 'Payao', 'Alicia']...
✅ Dulce Ann Hofer: Loaded 7 municipalities for 2nd District: ['Ipil', 'Naga', 'Siay']...
✅ Nestor Fongwan: Loaded 13 municipalities for Lone District: ['Atok', 'Tuba', 'Bakun']...
✅ Romeo Jalosjos Jr.: Loaded 8 municipalities for 1st District: ['Mutia', 'Rizal', 'Piñan']...
✅ Glona Labadlabad: Loaded 7 municipalities for 2nd District: ['Siayan', 'Manukan', 'Katipunan']...
✅ Isagani Amatong: Loaded 12 municipalities for 3rd District: ['Godod', 'Liloy', 'Salug']...
✅ Ria Christina Fariñas: Loaded 12 municipalities for 1st District: ['Adams', 'Laoag', 'Bangui']...
wsl : DEBUG load_projects_from_parquet: Loaded 523655 rows from /home/joebert/open-data-visualization/data/parquet/inte
grated_projects.parquet
At line:1 char:1
+ wsl -d Ubuntu-22.04 python3 /home/joebert/open-data-visualization/scr ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (DEBUG load_proj...rojects.parquet:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
DEBUG process_projects: Loaded 523655 rows from /home/joebert/open-data-visualization/data/parquet/integrated_projects.
parquet
✅ Kristine Singson: Loaded 23 municipalities for 2nd District: ['Suyo', 'Santa', 'Sigay']...
✅ Angelica Amante-Matba: Loaded 10 municipalities for 2nd District: ['Tubay', 'Carmen', 'Jabonga']...
✅ Joet Garcia: Loaded 4 municipalities for 2nd District: ['Limay', 'Orion', 'Pilar']...
✅ Estrelita Suansing: Loaded 9 municipalities for 1st District: ['Licab', 'Aliaga', 'Cuyapo']...
✅ Mikki Violago: Loaded 8 municipalities for 2nd District: ['Lupao', 'Rizal', 'Muñoz']...
✅ Ria Vergara: Loaded 7 municipalities for 3rd District: ['Laur', 'Palayan', 'Bongabon']...
✅ Maricel Natividad: Loaded 8 municipalities for 4th District: ['Jaen', 'Gapan', 'Cabiao']...
✅ Carlos Charlie Cojuangco: Loaded 10 municipalities for 1st District: ['Anao', 'Pura', 'Ramos']...
✅ Victor Yap: Loaded 4 municipalities for 2nd District: ['Gerona', 'San Jose', 'Victoria']...
✅ Noel Villanueva: Loaded 4 municipalities for 3rd District: ['Capas', 'Bamban', 'La Paz']...
✅ Michael John Duavit: Loaded 4 municipalities for 1st District: ['Angono', 'Cainta', 'Taytay']...
✅ Marisol Panotes: Loaded 7 municipalities for 2nd District: ['Daet', 'Basud', 'Talisay']...
✅ Robert Barbers: Loaded 12 municipalities for 2nd District: ['Sison', 'Tubod', 'Bacuag']...
✅ Narciso Bravo Jr.: Loaded 6 municipalities for 1st District: ['Batuan', 'Monreal', 'Claveria']...
✅ Elisa Olga Kho: Loaded 7 municipalities for 2nd District: ['Mobo', 'Balud', 'Aroroy']...
✅ Edgar Mary Sarmiento: Loaded 10 municipalities for 1st District: ['Almagro', 'Gandara', 'Calbayog']...
✅ Sharee Ann Tan: Loaded 16 municipalities for 2nd District: ['Basey', 'Daram', 'Calbiga']...
✅ Malou Acosta: Loaded 6 municipalities for 1st District: ['Libona', 'Baungon', 'Sumilao']...
✅ John Flores: Loaded 5 municipalities for 2nd District: ['Lantapan', 'Impasugong', 'Malaybalay']...
✅ Manuel Zubiri: Loaded 8 municipalities for 3rd District: ['Kibawe', 'Quezon', 'Damulog']...
✅ Rogelio Roque: Loaded 3 municipalities for 4th District: ['Valencia', 'Kalilangan', 'Pangantucan']...
✅ Hector Sanchez: Loaded 11 municipalities for Lone District: ['Bato', 'Viga', 'Baras']...
✅ Jun Babasa: Loaded 15 municipalities for 2nd District: ['Bayog', 'Dinas', 'Guipos']...
✅ Abdullah Dimaporo: Loaded 11 municipalities for 2nd District: ['Lala', 'Munai', 'Sapad']...
✅ Loaded 399 congressmen
🔍 DEBUG: Mikee Romero
Provinces: ['1-PACMAN Party-list']
District: Nationwide
Contractors: ['St Matthew Gen Contractor Development Corp']
🔧 Building lookup dictionaries...
🔧 Applying district corrections...
- Fixing Davao City barangays...
Removed 0 barangays from Isidro Ungab
Added 9 barangays to Paolo Duterte and cleaned up incorrect entries
- Fixing Leyte 1st District municipalities...
Removed 4 municipalities from Richard Gomez
Removed 2 municipalities from Carl Nicolas Cari
Removed 1 municipalities from Vicente S. Veloso III
Removed 4 municipalities from Lucy Torres-Gomez
DEBUG: Finished building inverted index with 131 tokens.
✅ Received contractor index from helper (size: 131)
🔧 Building name normalization map...
✅ Built name normalization map: 399 name variations mapped
🔧 Building O(1) lookup dictionaries for optimized matching...
🔧 Applying district corrections...
- Fixing Davao City barangays...
Removed 0 barangays from Isidro Ungab
Added 9 barangays to Paolo Duterte and cleaned up incorrect entries
- Fixing Leyte 1st District municipalities...
DEBUG: Finished building inverted index with 131 tokens.
✅ Built lookup dictionaries: 4233 district keys, 496 contractor keys
✅ Built inverted index: 131 tokens
🔧 Building location dictionaries from data...
✅ Loaded comprehensive location database into location_dicts: 83 provinces, 193 cities
✅ Built location dictionaries:
- 122 provinces
- 204 cities
- 1389 municipalities
- 2526 barangays
- 131 directional variants
- 3838 location contexts
🌍 Preparing shared data for worker processes...
📊 Using integrated Parquet file: /home/joebert/open-data-visualization/data/parquet/integrated_projects.parquet
💾 Loading ALL projects into memory...
✅ Loaded 523655 total projects into memory
📊 Processing 523655 total projects (Unified Pipeline)
🔧 Created 72 chunks
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION/REHABILITATION OF WATER SUPPLY/SEPTAGE AND SEWERAGE/RAIN WATER COLLECTOR SYSTEM ( 17 UNITS FOR VARIOUS LOCATIONS WITHIN THE 2ND DISTRICT OF LEYTE)', 'project_description': 'CONSTRUCTION/REHABILITATION OF WATER SUPPLY/SEPTAGE AND SEWERAGE/RAIN WATER COLLECTOR SYSTEM ( 17 UNITS FOR VARIOUS LOCATIONS WITHIN THE 2ND DISTRICT OF LEYTE)', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 3273318.55, 'contract_amount': 3273318.55, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ROCKCON BUILDERS AND CONSTRUCTION SUPPLY (36451)', 'organization_name': 'Region VIII - Leyte 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 3273318.55, 'project_name_1': 'CONSTRUCTION/REHABILITATION OF WATER SUPPLY/SEPTAGE AND SEWERAGE/RAIN WATER COLLECTOR SYSTEM ( 17 UNITS FOR VARIOUS LOCATIONS WITHIN THE 2ND DISTRICT OF LEYTE)', 'contractor': 'ROCKCON BUILDERS AND CONSTRUCTION SUPPLY (36451)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '17ID0083', 'philgeps_reference_id': None, 'contract_id': '17ID0083', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '3273318.55', 'infrawatch_implementing_agency': 'Region VIII - Leyte 2nd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2017 MFO-3', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'REPAIR/REHABILITATION OF MULTI-PURPOSE BUILDING - BRGY. POBLACION, GUINAYANGAN, QUEZON', 'project_description': 'REPAIR/REHABILITATION OF MULTI-PURPOSE BUILDING - BRGY. POBLACION, GUINAYANGAN, QUEZON', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 1739022.13, 'contract_amount': 1739022.13, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'JUNCAN ENTERPRISES (23299)', 'organization_name': 'Region IV-A - Quezon 4th District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 1739022.13, 'project_name_1': 'REPAIR/REHABILITATION OF MULTI-PURPOSE BUILDING - BRGY. POBLACION, GUINAYANGAN, QUEZON', 'contractor': 'JUNCAN ENTERPRISES (23299)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '17DL0027', 'philgeps_reference_id': None, 'contract_id': '17DL0027', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '1739022.13', 'infrawatch_implementing_agency': 'Region IV-A - Quezon 4th District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2017 LFP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'BRIDGE-RETROFITTING/STRENGTHENIG OF PERMANENT BRIDGES: ANUPUL BRIDGE ALONG MNR, BAMBAN, TARLAC', 'project_description': 'BRIDGE-RETROFITTING/STRENGTHENIG OF PERMANENT BRIDGES: ANUPUL BRIDGE ALONG MNR, BAMBAN, TARLAC', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 9884496.45, 'contract_amount': 9884496.45, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'L.M.G. CONSTRUCTION INCORPORATED (FORMERLY: LMG CONSTRUCTI=\nON) (5719)', 'organization_name': 'Region III - Tarlac 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 9884496.45, 'project_name_1': 'BRIDGE-RETROFITTING/STRENGTHENIG OF PERMANENT BRIDGES: ANUPUL BRIDGE ALONG MNR, BAMBAN, TARLAC', 'contractor': 'L.M.G. CONSTRUCTION INCORPORATED (FORMERLY: LMG CONSTRUCTI=\nON) (5719)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '18CK0006', 'philgeps_reference_id': None, 'contract_id': '18CK0006', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '9884496.45', 'infrawatch_implementing_agency': 'Region III - Tarlac 2nd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2018 OO-1', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF CONCRETE ROAD - DAKIT-AMPONGOL-CABUNGAHAN ROAD LEADING TO LAUAGAN FALLS, BRGY. DAKIT, SOGOD, CEBU', 'project_description': 'CONSTRUCTION OF CONCRETE ROAD - DAKIT-AMPONGOL-CABUNGAHAN ROAD LEADING TO LAUAGAN FALLS, BRGY. DAKIT, SOGOD, CEBU', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 27930000.0, 'contract_amount': 27930000.0, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'LA PRUEBA CONSTRUCTION (9923)', 'organization_name': 'Region VII - Cebu 5th District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 27930000.0, 'project_name_1': 'CONSTRUCTION OF CONCRETE ROAD - DAKIT-AMPONGOL-CABUNGAHAN ROAD LEADING TO LAUAGAN FALLS, BRGY. DAKIT, SOGOD, CEBU', 'contractor': 'LA PRUEBA CONSTRUCTION (9923)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '20HI0013', 'philgeps_reference_id': None, 'contract_id': '20HI0013', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '27930000.00', 'infrawatch_implementing_agency': 'Region VII - Cebu 5th District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2020 CSSP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'Construction Projects', 'project_description': 'Construction Projects', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 230808.61, 'contract_amount': 230808.61, 'dime_cost': None, 'region': None, 'province': 'Isabela', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2022.0, 'contract_year': 2022.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': "SRAA & SON'S CONSTRUCTION", 'organization_name': 'MUNICIPALITY OF BURGOS, ISABELA', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 230808.61, 'project_name_1': 'Construction Projects', 'contractor': "SRAA & SON'S CONSTRUCTION", 'location': 'Isabela', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': 'INFRA-2022-11', 'philgeps_reference_id': 'INFRA-2022-11', 'contract_id': 'INFRA-2022-11', 'philgeps_contract_no': 'INFRA-2022-11', 'philgeps_award_title': 'Construction Projects', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Isabela', 'award_date': '2022-12-21 00:00:00', 'philgeps_awardee_name': "SRAA & SON'S CONSTRUCTION", 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF ROAD AT BARANGAY SAN MIGUEL, GIPORLOS, EASTERN SAMAR', 'project_description': 'CONSTRUCTION OF ROAD AT BARANGAY SAN MIGUEL, GIPORLOS, EASTERN SAMAR', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 4949995.41, 'contract_amount': 4949995.41, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'BORONGAN MBC MERCHANDISING AND CONSTRUCTION (21742)<=\n/li>', 'organization_name': 'Region VIII - Eastern Samar District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 4949995.41, 'project_name_1': 'CONSTRUCTION OF ROAD AT BARANGAY SAN MIGUEL, GIPORLOS, EASTERN SAMAR', 'contractor': 'BORONGAN MBC MERCHANDISING AND CONSTRUCTION (21742)<=\n/li>', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '22IB0087', 'philgeps_reference_id': None, 'contract_id': '22IB0087', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '4949995.41', 'infrawatch_implementing_agency': 'Region VIII - Eastern Samar District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2022 CSSP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION/ IMPROVEMENT OF ACCESS ROADS LEADING TO TRADES, INDUSTRIES AND ECONOMIC ZONES (ROAD LEVERAGING LINKAGES FOR INDUSTRY AND TRADE INFRASTRUCTURE PROGRAM - ROLL-IT) - BARANGAY ROAD CONNECTING IMAVEMCO TO JUNCTION NATIONAL HIGHWAY IN SUPPORT OF NO', 'project_description': 'CONSTRUCTION/ IMPROVEMENT OF ACCESS ROADS LEADING TO TRADES, INDUSTRIES AND ECONOMIC ZONES (ROAD LEVERAGING LINKAGES FOR INDUSTRY AND TRADE INFRASTRUCTURE PROGRAM - ROLL-IT) - BARANGAY ROAD CONNECTING IMAVEMCO TO JUNCTION NATIONAL HIGHWAY IN SUPPORT OF NO', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 3182100.27, 'contract_amount': 3182100.27, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ACR BUILDWAY CONSTRUCTION (50804)', 'organization_name': 'Region IX - Zamboanga Sibugay 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 3182100.27, 'project_name_1': 'CONSTRUCTION/ IMPROVEMENT OF ACCESS ROADS LEADING TO TRADES, INDUSTRIES AND ECONOMIC ZONES (ROAD LEVERAGING LINKAGES FOR INDUSTRY AND TRADE INFRASTRUCTURE PROGRAM - ROLL-IT) - BARANGAY ROAD CONNECTING IMAVEMCO TO JUNCTION NATIONAL HIGHWAY IN SUPPORT OF NO', 'contractor': 'ACR BUILDWAY CONSTRUCTION (50804)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '24JF0016', 'philgeps_reference_id': None, 'contract_id': '24JF0016', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '3182100.27', 'infrawatch_implementing_agency': 'Region IX - Zamboanga Sibugay 2nd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2024 CP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF DAY CARE CENTER, ST. JOHN DISTRICT, GUIMBA, NUEVA ECIJA', 'project_description': 'CONSTRUCTION OF DAY CARE CENTER, ST. JOHN DISTRICT, GUIMBA, NUEVA ECIJA', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 972870.33, 'contract_amount': 972870.33, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'R.D. TALENS CONSTRUCTION AND TRADING (36817)', 'organization_name': 'Region III - Nueva Ecija 1st District Engineering Office<=\n/li>', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 972870.33, 'project_name_1': 'CONSTRUCTION OF DAY CARE CENTER, ST. JOHN DISTRICT, GUIMBA, NUEVA ECIJA', 'contractor': 'R.D. TALENS CONSTRUCTION AND TRADING (36817)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '15CE0202', 'philgeps_reference_id': None, 'contract_id': '15CE0202', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '972870.33', 'infrawatch_implementing_agency': 'Region III - Nueva Ecija 1st District Engineering Office<=\n/li>', 'infrawatch_fund_source': 'Regular Infra - GAA 2016 Locally Funded Projects', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': '24DF0089', 'project_description': '24DF0089', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 95621636.24, 'contract_amount': 95621636.24, 'dime_cost': None, 'region': None, 'province': 'Cavite', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2024.0, 'contract_year': 2024.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'N.B. AVILA CONSTRUCTION - CAVITE', 'organization_name': 'DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS - CAVITE I DEO', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 95621636.24, 'project_name_1': '24DF0089', 'contractor': 'N.B. AVILA CONSTRUCTION - CAVITE', 'location': 'Cavite', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '24DF0089', 'philgeps_reference_id': '24DF0089', 'contract_id': '24DF0089', 'philgeps_contract_no': '24DF0089', 'philgeps_award_title': '24DF0089', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Cavite', 'award_date': '2024-01-31 00:00:00', 'philgeps_awardee_name': 'N.B. AVILA CONSTRUCTION - CAVITE', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'project_description': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 3999090.77, 'contract_amount': 3999090.77, 'dime_cost': None, 'region': None, 'province': 'Bataan', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2025.0, 'contract_year': 2025.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'THREE-IN-ONE CONSTRUCTION & TRADING', 'organization_name': 'NATIONAL IRRIGATION ADMINISTRATION - PAMPANGA BATAAN IRRIGAT', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 3999090.77, 'project_name_1': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'contractor': 'THREE-IN-ONE CONSTRUCTION & TRADING', 'location': 'Bataan', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'philgeps_reference_id': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'contract_id': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'philgeps_contract_no': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'philgeps_award_title': 'NIAR3-PAMBAT IMO-2025-TANGILAD SRIS-21', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Bataan', 'award_date': '2025-05-16 00:00:00', 'philgeps_awardee_name': 'THREE-IN-ONE CONSTRUCTION & TRADING', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': '18HA0100', 'project_description': '18HA0100', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 23397560.0, 'contract_amount': 23397560.0, 'dime_cost': None, 'region': None, 'province': 'Bohol', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2018.0, 'contract_year': 2018.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'HERBERT MALMIS GENERAL MERCHANDISE & CONTRACTOR, INC.', 'organization_name': 'DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS - BOHOL 1ST ED', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 23397560.0, 'project_name_1': '18HA0100', 'contractor': 'HERBERT MALMIS GENERAL MERCHANDISE & CONTRACTOR, INC.', 'location': 'Bohol', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '18HA0100', 'philgeps_reference_id': '18HA0100', 'contract_id': '18HA0100', 'philgeps_contract_no': '18HA0100', 'philgeps_award_title': '18HA0100', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Bohol', 'award_date': '2018-08-01 00:00:00', 'philgeps_awardee_name': 'HERBERT MALMIS GENERAL MERCHANDISE & CONTRACTOR, INC.', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CID NO. 24IF0070', 'project_description': 'CID NO. 24IF0070', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 3497782.01, 'contract_amount': 3497782.01, 'dime_cost': None, 'region': None, 'province': 'Leyte', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2024.0, 'contract_year': 2024.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'MAVI CONSTRUCTION INC.', 'organization_name': 'DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS - LEYTE 4TH DEO', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 3497782.01, 'project_name_1': 'CID NO. 24IF0070', 'contractor': 'MAVI CONSTRUCTION INC.', 'location': 'Leyte', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '24IF0070', 'philgeps_reference_id': '24IF0070', 'contract_id': '24IF0070', 'philgeps_contract_no': '24IF0070', 'philgeps_award_title': 'CID NO. 24IF0070', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Leyte', 'award_date': '2024-05-15 00:00:00', 'philgeps_awardee_name': 'MAVI CONSTRUCTION INC.', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': '16DD0079 - School', 'project_description': '16DD0079 - School', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 1928288.46, 'contract_amount': 1928288.46, 'dime_cost': None, 'region': None, 'province': 'Batangas', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2016.0, 'contract_year': 2016.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': '830 BUILDERS & DEVELOPERS CORP.', 'organization_name': 'DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS - BATANGAS IV DEO', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 1928288.46, 'project_name_1': '16DD0079 - School', 'contractor': '830 BUILDERS & DEVELOPERS CORP.', 'location': 'Batangas', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '16DD0079', 'philgeps_reference_id': '16DD0079', 'contract_id': '16DD0079', 'philgeps_contract_no': '16DD0079', 'philgeps_award_title': '16DD0079 - School', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Batangas', 'award_date': '2016-03-18 00:00:00', 'philgeps_awardee_name': '830 BUILDERS & DEVELOPERS CORP.', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'Concrete Paving of Farm-to-Market Road', 'project_description': 'Concrete Paving of Farm-to-Market Road', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 497519.2, 'contract_amount': 497519.2, 'dime_cost': None, 'region': None, 'province': 'Pangasinan', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2017.0, 'contract_year': 2017.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'W.J.P CONSTRUCTION & SUPPLY', 'organization_name': 'MUNICIPALITY OF ALCALA, PANGASINAN', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 497519.2, 'project_name_1': 'Concrete Paving of Farm-to-Market Road', 'contractor': 'W.J.P CONSTRUCTION & SUPPLY', 'location': 'Pangasinan', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '4650590', 'philgeps_reference_id': '4650590', 'contract_id': '4650590', 'philgeps_contract_no': '4650590', 'philgeps_award_title': 'Concrete Paving of Farm-to-Market Road', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Pangasinan', 'award_date': '2017-08-10 00:00:00', 'philgeps_awardee_name': 'W.J.P CONSTRUCTION & SUPPLY', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': '22DE0136 71x Special Maintenance – Drainage Mainte', 'project_description': '22DE0136 71x Special Maintenance – Drainage Mainte', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 1468665.25, 'contract_amount': 1468665.25, 'dime_cost': None, 'region': None, 'province': 'Batangas', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2022.0, 'contract_year': 2022.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'GREENFIELD CONSTRUCTION', 'organization_name': 'DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS - BATANGAS 2ND ED', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 1468665.25, 'project_name_1': '22DE0136 71x Special Maintenance – Drainage Mainte', 'contractor': 'GREENFIELD CONSTRUCTION', 'location': 'Batangas', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '22DE0136', 'philgeps_reference_id': '22DE0136', 'contract_id': '22DE0136', 'philgeps_contract_no': '22DE0136', 'philgeps_award_title': '22DE0136 71x Special Maintenance – Drainage Mainte', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Batangas', 'award_date': '2022-06-06 00:00:00', 'philgeps_awardee_name': 'GREENFIELD CONSTRUCTION', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'construction project', 'project_description': 'construction project', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 1979633.92, 'contract_amount': 1979633.92, 'dime_cost': None, 'region': None, 'province': 'Metro Manila', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2014.0, 'contract_year': 2014.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'EXPRESS CONSTRUCTION', 'organization_name': 'METRO MANILA DEVELOPMENT AUTHORITY', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 1979633.92, 'project_name_1': 'construction project', 'contractor': 'EXPRESS CONSTRUCTION', 'location': 'Metro Manila', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': 'C2014-196', 'philgeps_reference_id': 'C2014-196', 'contract_id': 'C2014-196', 'philgeps_contract_no': 'C2014-196', 'philgeps_award_title': 'construction project', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Metro Manila', 'award_date': '2014-11-17 00:00:00', 'philgeps_awardee_name': 'EXPRESS CONSTRUCTION', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'Construction of Flood Control Structure along Sta. Maria River (Package 2), Sta. Maria, Ilocos Sur', 'project_description': 'Construction of Flood Control Structure along Sta. Maria River (Package 2), Sta. Maria, Ilocos Sur', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Flood Control', 'amount': 28949536.8, 'contract_amount': 28949536.8, 'dime_cost': None, 'region': None, 'province': 'SANTA MARIA (ILOCOS SUR), ILOCOS SUR, Region I', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2023.0, 'contract_year': 2023.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': '68eef149-7a55-4bc8-84d3-e0569101dfe3', 'project_code': None, 'contractor_name': 'M.A. TEJADA CONSTRUCTION', 'organization_name': 'Region I', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 28949536.8, 'project_name_1': 'Construction of Flood Control Structure along Sta. Maria River (Package 2), Sta. Maria, Ilocos Sur', 'contractor': 'M.A. TEJADA CONSTRUCTION', 'location': 'SANTA MARIA (ILOCOS SUR), ILOCOS SUR, Region I', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '22A00123', 'philgeps_reference_id': '22A00123', 'contract_id': '22A00123', 'philgeps_contract_no': '22A00123', 'philgeps_award_title': 'Construction of Flood Control Structure along Sta. Maria River (Package 2), Sta. Maria, Ilocos Sur', 'work_type': 'Flood Control', 'philgeps_business_category': 'Flood Control', 'philgeps_area_of_delivery': 'SANTA MARIA (ILOCOS SUR), ILOCOS SUR, Region I', 'award_date': '2023-03-15 00:00:00', 'philgeps_awardee_name': 'M.A. TEJADA CONSTRUCTION', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'INFRA 2023-61', 'project_description': 'INFRA 2023-61', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 4992959.25, 'contract_amount': 4992959.25, 'dime_cost': None, 'region': None, 'province': 'Dinagat Islands', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2023.0, 'contract_year': 2023.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ALKE CONSTRUCTION', 'organization_name': 'PROVINCE OF DINAGAT ISLANDS', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 4992959.25, 'project_name_1': 'INFRA 2023-61', 'contractor': 'ALKE CONSTRUCTION', 'location': 'Dinagat Islands', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': 'INFRA 2023-61', 'philgeps_reference_id': 'INFRA 2023-61', 'contract_id': 'INFRA 2023-61', 'philgeps_contract_no': 'INFRA 2023-61', 'philgeps_award_title': 'INFRA 2023-61', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Dinagat Islands', 'award_date': '2023-11-10 00:00:00', 'philgeps_awardee_name': 'ALKE CONSTRUCTION', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': '20-00030 PROPOSED REHABILITATION OF ROAD AND DRAIN', 'project_description': '20-00030 PROPOSED REHABILITATION OF ROAD AND DRAIN', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 16136290.55, 'contract_amount': 16136290.55, 'dime_cost': None, 'region': None, 'province': 'Metro Manila', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2020.0, 'contract_year': 2020.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'MILES TRADING AND CONSTRUCTION', 'organization_name': 'CITY OF QUEZON', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 16136290.55, 'project_name_1': '20-00030 PROPOSED REHABILITATION OF ROAD AND DRAIN', 'contractor': 'MILES TRADING AND CONSTRUCTION', 'location': 'Metro Manila', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '20-00030', 'philgeps_reference_id': '20-00030', 'contract_id': '20-00030', 'philgeps_contract_no': '20-00030', 'philgeps_award_title': '20-00030 PROPOSED REHABILITATION OF ROAD AND DRAIN', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Metro Manila', 'award_date': '2020-12-11 00:00:00', 'philgeps_awardee_name': 'MILES TRADING AND CONSTRUCTION', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'Contract ID No. 25OB0140 - Construction of Slope', 'project_description': 'Contract ID No. 25OB0140 - Construction of Slope', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 94569888.81, 'contract_amount': 94569888.81, 'dime_cost': None, 'region': None, 'province': 'Metro Manila', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2025.0, 'contract_year': 2025.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ZYRE TRADING AND CONSTRUCTION', 'organization_name': 'DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS - METRO MANILA 1ST E', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 94569888.81, 'project_name_1': 'Contract ID No. 25OB0140 - Construction of Slope', 'contractor': 'ZYRE TRADING AND CONSTRUCTION', 'location': 'Metro Manila', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '25OB0140 ', 'philgeps_reference_id': '25OB0140 ', 'contract_id': '25OB0140 ', 'philgeps_contract_no': '25OB0140 ', 'philgeps_award_title': 'Contract ID No. 25OB0140 - Construction of Slope', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Metro Manila', 'award_date': '2025-02-10 00:00:00', 'philgeps_awardee_name': 'ZYRE TRADING AND CONSTRUCTION', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': '19DD0087', 'project_description': '19DD0087', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 4752998.0, 'contract_amount': 4752998.0, 'dime_cost': None, 'region': None, 'province': 'Batangas', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2019.0, 'contract_year': 2019.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ROMABUILD ENGINEERING AND CONSTRUCTION SERVICES', 'organization_name': 'DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS - BATANGAS IV DEO', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 4752998.0, 'project_name_1': '19DD0087', 'contractor': 'ROMABUILD ENGINEERING AND CONSTRUCTION SERVICES', 'location': 'Batangas', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '19DD0087', 'philgeps_reference_id': '19DD0087', 'contract_id': '19DD0087', 'philgeps_contract_no': '19DD0087', 'philgeps_award_title': '19DD0087', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Batangas', 'award_date': '2019-08-22 00:00:00', 'philgeps_awardee_name': 'ROMABUILD ENGINEERING AND CONSTRUCTION SERVICES', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'OO 1: ENSURE SAFE AND RELIABLE NATIONAL RD SYSTEM-ASSET PRESERVATION REHAB./ RECONST./ UPGRADING OF DAMAGED PAVED RDS-TERTIARY RDS,REHAB. OF PAVED ROAD, BAYBAYOG-BAGGAO-DALIN-STA. MARGARITA RD-K0544+507-K0544+970 BRGY.SAN ISIDRO, BAGGAO, CAG.(S00663LZ)', 'project_description': 'OO 1: ENSURE SAFE AND RELIABLE NATIONAL RD SYSTEM-ASSET PRESERVATION REHAB./ RECONST./ UPGRADING OF DAMAGED PAVED RDS-TERTIARY RDS,REHAB. OF PAVED ROAD, BAYBAYOG-BAGGAO-DALIN-STA. MARGARITA RD-K0544+507-K0544+970 BRGY.SAN ISIDRO, BAGGAO, CAG.(S00663LZ)', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 5437880.0, 'contract_amount': 5437880.0, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'VERZONTAL INFRASTRUCTURE CORPORATION (FORMERLY: VERZONTAL B=\nUILDERS, INC.) (31579)', 'organization_name': 'Region II - Cagayan 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 5437880.0, 'project_name_1': 'OO 1: ENSURE SAFE AND RELIABLE NATIONAL RD SYSTEM-ASSET PRESERVATION REHAB./ RECONST./ UPGRADING OF DAMAGED PAVED RDS-TERTIARY RDS,REHAB. OF PAVED ROAD, BAYBAYOG-BAGGAO-DALIN-STA. MARGARITA RD-K0544+507-K0544+970 BRGY.SAN ISIDRO, BAGGAO, CAG.(S00663LZ)', 'contractor': 'VERZONTAL INFRASTRUCTURE CORPORATION (FORMERLY: VERZONTAL B=\nUILDERS, INC.) (31579)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '18BB0059', 'philgeps_reference_id': None, 'contract_id': '18BB0059', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '5437880.00', 'infrawatch_implementing_agency': 'Region II - Cagayan 1st District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2018 OO-1', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF CONCRETE REVETMENT ON STEEL SHEET PILES ALONG TAGUM - LIBUGANON RIVER, DOWNSTREAM/UPSTREAM MIRANDA BRIDGE II INCLUDING ROW, TAGUM CITY, DAVAO DEL NORTE', 'project_description': 'CONSTRUCTION OF CONCRETE REVETMENT ON STEEL SHEET PILES ALONG TAGUM - LIBUGANON RIVER, DOWNSTREAM/UPSTREAM MIRANDA BRIDGE II INCLUDING ROW, TAGUM CITY, DAVAO DEL NORTE', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 136694545.29, 'contract_amount': 136694545.29, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'DREIRICH BUILDERS (39521) / THREE W BUILDERS, INC. (10722)<=\n/span>', 'organization_name': 'Region XI - Region XI', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 136694545.29, 'project_name_1': 'CONSTRUCTION OF CONCRETE REVETMENT ON STEEL SHEET PILES ALONG TAGUM - LIBUGANON RIVER, DOWNSTREAM/UPSTREAM MIRANDA BRIDGE II INCLUDING ROW, TAGUM CITY, DAVAO DEL NORTE', 'contractor': 'DREIRICH BUILDERS (39521) / THREE W BUILDERS, INC. (10722)<=\n/span>', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '18L00193', 'philgeps_reference_id': None, 'contract_id': '18L00193', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '136694545.29', 'infrawatch_implementing_agency': 'Region XI - Region XI', 'infrawatch_fund_source': 'Regular Infra - GAA 2018 Augmentation', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'Construction of Riverbank Protection Pantal River, Dagupan City, Pangasinan', 'project_description': '', 'program': '{"id": 10, "programName": "Flood Control Infrastructure", "nameAbbreviation": "FCI", "programDescription": "Flood Control Infrastructure"}', 'status': 'Completed', 'latest_progress': '', 'source_of_funds': '[{"id": 8, "name": "General Appropriations Act FY 2023", "nameAbbreviation": "GAA FY 2023"}]', 'project_type': 'Main Portal', 'amount': 48995295.6, 'contract_amount': 48995295.6, 'dime_cost': Decimal('48995295.60'), 'region': 'Ilocos Region', 'province': 'Pangasinan', 'city': 'Dagupan City', 'barangay': 'Pantal', 'latitude': '16.04861000', 'longitude': Decimal('120.32820000'), 'project_year': 2023.0, 'contract_year': 2023.0, 'start_date': '2023-05-11', 'contract_end_date': '2023-07-26', 'actual_completion_date': None, 'actual_start_date': '2023-05-11', 'last_updated_cost': None, 'utilized_amount': Decimal('0.00'), 'global_id': '08870ca9-8f65-4a0c-bce9-4152affa1248', 'project_code': 'P00727089LZ', 'contractor_name': 'BET CONSTRUCTION & SUPPLY', 'organization_name': '{"id": 1, "name": "Department of Public Works and Highways", "nameAbbreviation": "DPWH"}', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.495153+01', 'updated_at': '2025-12-13 01:55:26.495153+01', 'source_created_at': '2025-10-08 18:23:45.409664', 'amount_1': 48995295.6, 'project_name_1': 'Construction of Riverbank Protection Pantal River, Dagupan City, Pangasinan', 'contractor': 'BET CONSTRUCTION & SUPPLY', 'location': 'Pangasinan', 'source': 'DIME', '_source': 'DIME', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': None, 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'FLOOD CONTROL OF BANCO-PACUGAO RIVER GABION TYPE)', 'project_description': 'FLOOD CONTROL OF BANCO-PACUGAO RIVER GABION TYPE)', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': 'Construction Projects', 'amount': 2998000.0, 'contract_amount': 2998000.0, 'dime_cost': None, 'region': None, 'province': 'Aurora', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': 2021.0, 'contract_year': 2021.0, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'R.S.C. CONSTRUCTION SERVICES', 'organization_name': 'PROVINCE OF AURORA', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'active', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.631551+01', 'updated_at': '2025-12-13 01:55:26.631551+01', 'source_created_at': None, 'amount_1': 2998000.0, 'project_name_1': 'FLOOD CONTROL OF BANCO-PACUGAO RIVER GABION TYPE)', 'contractor': 'R.S.C. CONSTRUCTION SERVICES', 'location': 'Aurora', 'source': 'PhilGEPS', '_source': 'PhilGEPS', 'project_id': '2021-08-93-GF(INFRA)', 'philgeps_reference_id': '2021-08-93-GF(INFRA)', 'contract_id': '2021-08-93-GF(INFRA)', 'philgeps_contract_no': '2021-08-93-GF(INFRA)', 'philgeps_award_title': 'FLOOD CONTROL OF BANCO-PACUGAO RIVER GABION TYPE)', 'work_type': 'Construction Projects', 'philgeps_business_category': 'Construction Projects', 'philgeps_area_of_delivery': 'Aurora', 'award_date': '2021-09-23 00:00:00', 'philgeps_awardee_name': 'R.S.C. CONSTRUCTION SERVICES', 'philgeps_award_status': 'active', 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'Southeast Metro Manila Expressway Project', 'project_description': '32.664 km, combination of elevated and at-grade expressway, from Skyway/FTI, Taguig City to Batasan Complex in Quezon City', 'program': '{"id": 6, "programName": "No data available", "nameAbbreviation": "N/A", "programDescription": "No data available"}', 'status': 'Incomplete', 'latest_progress': '', 'source_of_funds': '[{"id": 4, "name": "Public-Private Partnership", "nameAbbreviation": "PPP"}]', 'project_type': 'Main Portal', 'amount': 31320000.0, 'contract_amount': 31320000.0, 'dime_cost': Decimal('31320000.00'), 'region': '(Region IV-A) CALABARZON', 'province': ' Rizal', 'city': ' Taytay ', 'barangay': ' Dolores (Pob.)', 'latitude': '14.57434300', 'longitude': Decimal('121.14378600'), 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': Decimal('0.00'), 'global_id': None, 'project_code': '', 'contractor_name': 'No Data Available', 'organization_name': '{"id": 1, "name": "Department of Public Works and Highways", "nameAbbreviation": "DPWH"}', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.495153+01', 'updated_at': '2025-12-13 01:55:26.495153+01', 'source_created_at': '2025-10-08 18:23:27.228411', 'amount_1': 31320000.0, 'project_name_1': 'Southeast Metro Manila Expressway Project', 'contractor': 'No Data Available', 'location': ' Rizal', 'source': 'DIME', '_source': 'DIME', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': None, 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING BRGY. BURGOS, CABARROGUIS, QUIRINO', 'project_description': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING BRGY. BURGOS, CABARROGUIS, QUIRINO', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 1727422.52, 'contract_amount': 1727422.52, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'C-BROS CONSTRUCTION (36606)', 'organization_name': 'Region II - Quirino District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 1727422.52, 'project_name_1': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING BRGY. BURGOS, CABARROGUIS, QUIRINO', 'contractor': 'C-BROS CONSTRUCTION (36606)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '19BK0063', 'philgeps_reference_id': None, 'contract_id': '19BK0063', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '1727422.52', 'infrawatch_implementing_agency': 'Region II - Quirino District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2019 LP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONST. OF CONCRETE ROAD - SAN MARIANO ROAD LEADING TO SINANGBALDE FALLS & APAR FALLS, SAN MARIANO', 'project_description': 'CONST. OF CONCRETE ROAD - SAN MARIANO ROAD LEADING TO SINANGBALDE FALLS & APAR FALLS, SAN MARIANO', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2019 CSSP', 'project_type': None, 'amount': 14700000.0, 'contract_amount': 14700000.0, 'dime_cost': None, 'region': 'Region I', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'A.P.B. CONSTRUCTION', 'organization_name': 'Ilocos Sur 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 14700000.0, 'project_name_1': 'CONST. OF CONCRETE ROAD - SAN MARIANO ROAD LEADING TO SINANGBALDE FALLS & APAR FALLS, SAN MARIANO', 'contractor': 'A.P.B. CONSTRUCTION', 'location': 'Ilocos Sur 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '19AC0052', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2019 CSSP', 'infrawatch_contract_status': None, 'description': 'CONST. OF CONCRETE ROAD - SAN MARIANO ROAD LEADING TO SINANGBALDE FALLS & APAR FALLS, SAN MARIANO', 'contractor_id': '17055', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Ilocos Sur 1st District Engineering Office', 'cost_php': 14700000.0, 'Contract Price': 14700000.0, 'Contract Amount': 14700000.0, 'effectivity_date': '2019-05-27 00:00:00', 'expiry_date': '2019-12-29 00:00:00', 'year': 2019, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-I', 'file_source': 'table_Region-I_2019_20251111_160220.html', 'row_number': 270, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Ilocos Sur 1st District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG) - ACCESS ROADS AND/ OR BRIDGES FROM THE NATIONAL ROAD/S LEADING TO MAJOR/ STRATEGIC PUBLIC BUILDINGS/ FACILITIES - IMPROVEMENT OF ABBAG ROAD, BARANGAY ABBAG, MADDELA, QUIRINO', 'project_description': 'SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG) - ACCESS ROADS AND/ OR BRIDGES FROM THE NATIONAL ROAD/S LEADING TO MAJOR/ STRATEGIC PUBLIC BUILDINGS/ FACILITIES - IMPROVEMENT OF ABBAG ROAD, BARANGAY ABBAG, MADDELA, QUIRINO', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 9797842.02, 'contract_amount': 9797842.02, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'COLBY CONSTRUCTION (33969)', 'organization_name': 'Region II - Quirino District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 9797842.02, 'project_name_1': 'SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG) - ACCESS ROADS AND/ OR BRIDGES FROM THE NATIONAL ROAD/S LEADING TO MAJOR/ STRATEGIC PUBLIC BUILDINGS/ FACILITIES - IMPROVEMENT OF ABBAG ROAD, BARANGAY ABBAG, MADDELA, QUIRINO', 'contractor': 'COLBY CONSTRUCTION (33969)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '23BK0069', 'philgeps_reference_id': None, 'contract_id': '23BK0069', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '9797842.02', 'infrawatch_implementing_agency': 'Region II - Quirino District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2023 CSSP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM - BASIC INFRASTRUCTURE PROGRAM (BIP) - MULTI-PURPOSE BUILDINGS / FACILITIES TO SUPPORT SOCIAL SERVICES - CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING, BARANGAYQUIOT, CEBU CITY, CEBU', 'project_description': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM - BASIC INFRASTRUCTURE PROGRAM (BIP) - MULTI-PURPOSE BUILDINGS / FACILITIES TO SUPPORT SOCIAL SERVICES - CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING, BARANGAYQUIOT, CEBU CITY, CEBU', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 5997753.0, 'contract_amount': 5997753.0, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'SB & T CONSTRUCTION OPC (FORMERLY: SB & T CONSTRUCT=\nION) (25313)', 'organization_name': 'Region VII - Cebu City District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'On-Going', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 5997753.0, 'project_name_1': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM - BASIC INFRASTRUCTURE PROGRAM (BIP) - MULTI-PURPOSE BUILDINGS / FACILITIES TO SUPPORT SOCIAL SERVICES - CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING, BARANGAYQUIOT, CEBU CITY, CEBU', 'contractor': 'SB & T CONSTRUCTION OPC (FORMERLY: SB & T CONSTRUCT=\nION) (25313)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '23HH0153', 'philgeps_reference_id': None, 'contract_id': '23HH0153', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '5997753.00', 'infrawatch_implementing_agency': 'Region VII - Cebu City District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2023 CSSP', 'infrawatch_contract_status': 'On-Going', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'BASIC INFRASTRUCTURE PROGRAM (BIP): MULTI-PURPOSE BUILDINGS / FACILITIES TO SUPPORT SOCIAL SERVICES - REHABILITATION/COMPLETION OF MULTI PURPOSE BUILDINGS, DOLORES AND MALIWALU, BACOLOR, PAMPANGA', 'project_description': 'BASIC INFRASTRUCTURE PROGRAM (BIP): MULTI-PURPOSE BUILDINGS / FACILITIES TO SUPPORT SOCIAL SERVICES - REHABILITATION/COMPLETION OF MULTI PURPOSE BUILDINGS, DOLORES AND MALIWALU, BACOLOR, PAMPANGA', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2025 SSP', 'project_type': None, 'amount': 3756754.98, 'contract_amount': 3756754.98, 'dime_cost': None, 'region': 'Region III', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'R.S.C. CONSTRUCTION SERVICES', 'organization_name': 'Pampanga 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 3756754.98, 'project_name_1': 'BASIC INFRASTRUCTURE PROGRAM (BIP): MULTI-PURPOSE BUILDINGS / FACILITIES TO SUPPORT SOCIAL SERVICES - REHABILITATION/COMPLETION OF MULTI PURPOSE BUILDINGS, DOLORES AND MALIWALU, BACOLOR, PAMPANGA', 'contractor': 'R.S.C. CONSTRUCTION SERVICES', 'location': 'Pampanga 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '25CG0231', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2025 SSP', 'infrawatch_contract_status': None, 'description': 'BASIC INFRASTRUCTURE PROGRAM (BIP): MULTI-PURPOSE BUILDINGS / FACILITIES TO SUPPORT SOCIAL SERVICES - REHABILITATION/COMPLETION OF MULTI PURPOSE BUILDINGS, DOLORES AND MALIWALU, BACOLOR, PAMPANGA', 'contractor_id': '45013', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Pampanga 1st District Engineering Office', 'cost_php': 3756754.98, 'Contract Price': 3756754.98, 'Contract Amount': 3756754.98, 'effectivity_date': '2025-07-29 00:00:00', 'expiry_date': '2025-09-30 00:00:00', 'year': 2016, 'Contract Status': 'On-Going', 'accomplishment_pct': 0.0, 'source_office': 'Region-III', 'file_source': 'table_Region-III_2016_20251111_160728.html', 'row_number': 1497, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Pampanga 1st District Engineering Office'}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM - SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG) - ACCESS ROADS AND/OR BRIDGES FROM THE NATIONAL ROAD/S LEADING TO MAJOR / STRATEGIC PUBLIC BUILDINGS / FACILITIES - CONSTRUCTION OF BARANGAY CAGNITUAN R', 'project_description': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM - SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG) - ACCESS ROADS AND/OR BRIDGES FROM THE NATIONAL ROAD/S LEADING TO MAJOR / STRATEGIC PUBLIC BUILDINGS / FACILITIES - CONSTRUCTION OF BARANGAY CAGNITUAN R', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 29367974.88, 'contract_amount': 29367974.88, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'DAV-LEY CONSTRUCTION SERVICES INC. (FORMERLY:DAV-LEY CONSTR=\nUCTION SERVICES) (47201)', 'organization_name': 'Region VIII - Southern Leyte 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'On-Going', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 29367974.88, 'project_name_1': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM - SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG) - ACCESS ROADS AND/OR BRIDGES FROM THE NATIONAL ROAD/S LEADING TO MAJOR / STRATEGIC PUBLIC BUILDINGS / FACILITIES - CONSTRUCTION OF BARANGAY CAGNITUAN R', 'contractor': 'DAV-LEY CONSTRUCTION SERVICES INC. (FORMERLY:DAV-LEY CONSTR=\nUCTION SERVICES) (47201)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '25IL0005', 'philgeps_reference_id': None, 'contract_id': '25IL0005', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '29367974.88', 'infrawatch_implementing_agency': 'Region VIII - Southern Leyte 1st District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2025 SSP', 'infrawatch_contract_status': 'On-Going', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING, LINAO, SAN ISIDRO, DAVAO DEL NORTE', 'project_description': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING, LINAO, SAN ISIDRO, DAVAO DEL NORTE', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 2959063.15, 'contract_amount': 2959063.15, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'JJR ACE CONSTRUCTION AND SUPPLY CORP. (44145)', 'organization_name': 'Region XI - Davao del Norte District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 2959063.15, 'project_name_1': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING, LINAO, SAN ISIDRO, DAVAO DEL NORTE', 'contractor': 'JJR ACE CONSTRUCTION AND SUPPLY CORP. (44145)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '21LC0155', 'philgeps_reference_id': None, 'contract_id': '21LC0155', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '2959063.15', 'infrawatch_implementing_agency': 'Region XI - Davao del Norte District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2021 LP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONCRETING OF BUENAVISTA-MOZZOZZIN ROAD STA. MARIA, ISABELA', 'project_description': 'CONCRETING OF BUENAVISTA-MOZZOZZIN ROAD STA. MARIA, ISABELA', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2019 LP', 'project_type': None, 'amount': 18809991.75, 'contract_amount': 18809991.75, 'dime_cost': None, 'region': 'Region II', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'DRAGON TWELVE BUILDERS & CONSTRUCTION SUPPLY', 'organization_name': 'Isabela 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 18809991.75, 'project_name_1': 'CONCRETING OF BUENAVISTA-MOZZOZZIN ROAD STA. MARIA, ISABELA', 'contractor': 'DRAGON TWELVE BUILDERS & CONSTRUCTION SUPPLY', 'location': 'Isabela 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '19BE0057', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2019 LP', 'infrawatch_contract_status': None, 'description': 'CONCRETING OF BUENAVISTA-MOZZOZZIN ROAD STA. MARIA, ISABELA', 'contractor_id': '39808', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Isabela 1st District Engineering Office', 'cost_php': 18809991.75, 'Contract Price': 18809991.75, 'Contract Amount': 18809991.75, 'effectivity_date': '2019-05-29 00:00:00', 'expiry_date': '2019-09-23 00:00:00', 'year': 2020, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-II', 'file_source': 'table_Region-II_2020_20251111_160527.html', 'row_number': 547, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Isabela 1st District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'LOCAL PROGRAM - LOCAL INFRASTRUCTURE PROGRAM; BUILDINGS AND OTHER STRUCTURES; MULTIPURPOSE/FACILITIES- CONSTRUCTION OF MULTI-PURPOSE BUILDING, ARGAO, CEBU', 'project_description': 'LOCAL PROGRAM - LOCAL INFRASTRUCTURE PROGRAM; BUILDINGS AND OTHER STRUCTURES; MULTIPURPOSE/FACILITIES- CONSTRUCTION OF MULTI-PURPOSE BUILDING, ARGAO, CEBU', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 2461132.23, 'contract_amount': 2461132.23, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'SERCHER DEVELOPMENT CORPORATION (26332)', 'organization_name': 'Region VII - Cebu 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 2461132.23, 'project_name_1': 'LOCAL PROGRAM - LOCAL INFRASTRUCTURE PROGRAM; BUILDINGS AND OTHER STRUCTURES; MULTIPURPOSE/FACILITIES- CONSTRUCTION OF MULTI-PURPOSE BUILDING, ARGAO, CEBU', 'contractor': 'SERCHER DEVELOPMENT CORPORATION (26332)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '21HG0099', 'philgeps_reference_id': None, 'contract_id': '21HG0099', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '2461132.23', 'infrawatch_implementing_agency': 'Region VII - Cebu 2nd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2021 LP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF COVERED COURT, BRGY. PALOMOC, MUNICIPALITY OF TITAY, ZAMBOANGA SIBUGAY', 'project_description': 'CONSTRUCTION OF COVERED COURT, BRGY. PALOMOC, MUNICIPALITY OF TITAY, ZAMBOANGA SIBUGAY', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2019 LP', 'project_type': None, 'amount': 1971243.8, 'contract_amount': 1971243.8, 'dime_cost': None, 'region': 'Region IX', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'SQUARE ONE BUILDERS', 'organization_name': 'Zamboanga Sibugay 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 1971243.8, 'project_name_1': 'CONSTRUCTION OF COVERED COURT, BRGY. PALOMOC, MUNICIPALITY OF TITAY, ZAMBOANGA SIBUGAY', 'contractor': 'SQUARE ONE BUILDERS', 'location': 'Zamboanga Sibugay 2nd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '19JF0032', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2019 LP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF COVERED COURT, BRGY. PALOMOC, MUNICIPALITY OF TITAY, ZAMBOANGA SIBUGAY', 'contractor_id': '40202', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Zamboanga Sibugay 2nd District Engineering Office', 'cost_php': 1971243.8, 'Contract Price': 1971243.8, 'Contract Amount': 1971243.8, 'effectivity_date': '2019-06-25 00:00:00', 'expiry_date': '2019-08-23 00:00:00', 'year': 2019, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-IX', 'file_source': 'table_Region-IX_2019_20251111_162949.html', 'row_number': 510, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Zamboanga Sibugay 2nd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION/ UPGRADING/ REHABILITATION OF DRAINAGE ALONG NATIONAL ROADS, LEGAZPI AIRPORT RD S05848LZ, K0530+-990 - K0530+-881, K0530+-867 - K0530+-673', 'project_description': 'CONSTRUCTION/ UPGRADING/ REHABILITATION OF DRAINAGE ALONG NATIONAL ROADS, LEGAZPI AIRPORT RD S05848LZ, K0530+-990 - K0530+-881, K0530+-867 - K0530+-673', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2017 MFO-1', 'project_type': None, 'amount': 1413688.56, 'contract_amount': 1413688.56, 'dime_cost': None, 'region': 'Region V', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'HI-TONE CONSTRUCTION & DEVELOPMENT CORP. (FORMERLY~', 'organization_name': 'Albay 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 1413688.56, 'project_name_1': 'CONSTRUCTION/ UPGRADING/ REHABILITATION OF DRAINAGE ALONG NATIONAL ROADS, LEGAZPI AIRPORT RD S05848LZ, K0530+-990 - K0530+-881, K0530+-867 - K0530+-673', 'contractor': 'HI-TONE CONSTRUCTION & DEVELOPMENT CORP. (FORMERLY~', 'location': 'Albay 2nd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '17FB0013', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2017 MFO-1', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION/ UPGRADING/ REHABILITATION OF DRAINAGE ALONG NATIONAL ROADS, LEGAZPI AIRPORT RD S05848LZ, K0530+-990 - K0530+-881, K0530+-867 - K0530+-673', 'contractor_id': '23385', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Albay 2nd District Engineering Office', 'cost_php': 1413688.56, 'Contract Price': 1413688.56, 'Contract Amount': 1413688.56, 'effectivity_date': '2017-02-22 00:00:00', 'expiry_date': '2017-05-11 00:00:00', 'year': 2017, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-V', 'file_source': 'table_Region-V_2017_20251111_161830.html', 'row_number': 125, 'critical_errors': None, 'errors': None, 'warnings': "WARN-044: Contractor name appears truncated: 'HI-TONE CONSTRUCTION & DEVELOPMENT CORP. (FORMERLY'", 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Albay 2nd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF BARANGAY ROAD, BARANGAY GINATILAN, BALAMBAN, CEBU', 'project_description': 'CONSTRUCTION OF BARANGAY ROAD, BARANGAY GINATILAN, BALAMBAN, CEBU', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 4940000.0, 'contract_amount': 4940000.0, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'JJ &J CONSTRUCTION & GENERAL SUPPLY (30231)<=\n/li>', 'organization_name': 'Region VII - Cebu 3rd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 4940000.0, 'project_name_1': 'CONSTRUCTION OF BARANGAY ROAD, BARANGAY GINATILAN, BALAMBAN, CEBU', 'contractor': 'JJ &J CONSTRUCTION & GENERAL SUPPLY (30231)<=\n/li>', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '22HF0081', 'philgeps_reference_id': None, 'contract_id': '22HF0081', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '4940000.00', 'infrawatch_implementing_agency': 'Region VII - Cebu 3rd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2022 CSSP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'IMPROVEMENT OF CABILOGAN RIVER COURSE (BALANGIBANG SECTION UPSTREAM) POLANGUI, ALBAY', 'project_description': 'IMPROVEMENT OF CABILOGAN RIVER COURSE (BALANGIBANG SECTION UPSTREAM) POLANGUI, ALBAY', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2020 LP', 'project_type': None, 'amount': 84765600.0, 'contract_amount': 84765600.0, 'dime_cost': None, 'region': 'Region V', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'RICHMAR CONSTRUCTION', 'organization_name': 'Albay 3rd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 84765600.0, 'project_name_1': 'IMPROVEMENT OF CABILOGAN RIVER COURSE (BALANGIBANG SECTION UPSTREAM) POLANGUI, ALBAY', 'contractor': 'RICHMAR CONSTRUCTION', 'location': 'Albay 3rd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '20FO0019', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2020 LP', 'infrawatch_contract_status': None, 'description': 'IMPROVEMENT OF CABILOGAN RIVER COURSE (BALANGIBANG SECTION UPSTREAM) POLANGUI, ALBAY', 'contractor_id': '18797', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Albay 3rd District Engineering Office', 'cost_php': 84765600.0, 'Contract Price': 84765600.0, 'Contract Amount': 84765600.0, 'effectivity_date': '2020-03-09 00:00:00', 'expiry_date': '2020-11-18 00:00:00', 'year': 2020, 'Contract Status': 'On-Going', 'accomplishment_pct': 93.32, 'source_office': 'Region-V', 'file_source': 'table_Region-V_2020_20251111_161919.html', 'row_number': 1199, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Albay 3rd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': "CONST./IMPV'T. OF ACCESS RDS. LEADING TO DECLARED TOURISM DEST.: RD. TO ANTULANG RESORT, ZAMBOANGUIT", 'project_description': "CONST./IMPV'T. OF ACCESS RDS. LEADING TO DECLARED TOURISM DEST.: RD. TO ANTULANG RESORT, ZAMBOANGUIT", 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2017 MFO-3', 'project_type': None, 'amount': 49000000.0, 'contract_amount': 49000000.0, 'dime_cost': None, 'region': 'Negros Island Region', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'QM BUILDERS', 'organization_name': 'Negros Oriental 3rd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 49000000.0, 'project_name_1': "CONST./IMPV'T. OF ACCESS RDS. LEADING TO DECLARED TOURISM DEST.: RD. TO ANTULANG RESORT, ZAMBOANGUIT", 'contractor': 'QM BUILDERS', 'location': 'Negros Oriental 3rd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '17HL0021', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2017 MFO-3', 'infrawatch_contract_status': None, 'description': "CONST./IMPV'T. OF ACCESS RDS. LEADING TO DECLARED TOURISM DEST.: RD. TO ANTULANG RESORT, ZAMBOANGUIT", 'contractor_id': '30743', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Negros Oriental 3rd District Engineering Office', 'cost_php': 49000000.0, 'Contract Price': 49000000.0, 'Contract Amount': 49000000.0, 'effectivity_date': '2017-04-25 00:00:00', 'expiry_date': '2017-12-13 00:00:00', 'year': 2017, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Negros-Island-Region', 'file_source': 'table_Negros-Island-Region_2017_20251111_155928.html', 'row_number': 153, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Negros Oriental 3rd District Engineering Office'}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF FIRST SCOUT RANGER REGIMENT (FSRR) MUSEUM, PHILIPPINE ARMY CAMP TECSON, SAN MIGUEL BULACAN', 'project_description': 'CONSTRUCTION OF FIRST SCOUT RANGER REGIMENT (FSRR) MUSEUM, PHILIPPINE ARMY CAMP TECSON, SAN MIGUEL BULACAN', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2022 CSSP', 'project_type': None, 'amount': 24216575.44, 'contract_amount': 24216575.44, 'dime_cost': None, 'region': 'Region III', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ALE-J CONSTRUCTION & TRADING', 'organization_name': 'Bulacan 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 24216575.44, 'project_name_1': 'CONSTRUCTION OF FIRST SCOUT RANGER REGIMENT (FSRR) MUSEUM, PHILIPPINE ARMY CAMP TECSON, SAN MIGUEL BULACAN', 'contractor': 'ALE-J CONSTRUCTION & TRADING', 'location': 'Bulacan 2nd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '22CD0105', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2022 CSSP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF FIRST SCOUT RANGER REGIMENT (FSRR) MUSEUM, PHILIPPINE ARMY CAMP TECSON, SAN MIGUEL BULACAN', 'contractor_id': '26445', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Bulacan 2nd District Engineering Office', 'cost_php': 24216575.44, 'Contract Price': 24216575.44, 'Contract Amount': 24216575.44, 'effectivity_date': '2022-03-30 00:00:00', 'expiry_date': '2023-04-22 00:00:00', 'year': 2022, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-III', 'file_source': 'table_Region-III_2022_20251111_160947.html', 'row_number': 662, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Bulacan 2nd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'INSTALLATION/ APPLICATION OF ROAD SAFETY FACILITIES (ROADWAY LIGHTING) ALONG MT PROV-CAGAYAN VIA TABUK ENRILE RD, KO392+(-332) - KO396+683', 'project_description': 'INSTALLATION/ APPLICATION OF ROAD SAFETY FACILITIES (ROADWAY LIGHTING) ALONG MT PROV-CAGAYAN VIA TABUK ENRILE RD, KO392+(-332) - KO396+683', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 48509999.59, 'contract_amount': 48509999.59, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'BALINTUGAN CONSTRUCTION (34566)', 'organization_name': 'Cordillera Administrative Region - Mountain Province 1st Distric=\nt Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'On-Going', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 48509999.59, 'project_name_1': 'INSTALLATION/ APPLICATION OF ROAD SAFETY FACILITIES (ROADWAY LIGHTING) ALONG MT PROV-CAGAYAN VIA TABUK ENRILE RD, KO392+(-332) - KO396+683', 'contractor': 'BALINTUGAN CONSTRUCTION (34566)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '25PI0060', 'philgeps_reference_id': None, 'contract_id': '25PI0060', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '48509999.59', 'infrawatch_implementing_agency': 'Cordillera Administrative Region - Mountain Province 1st Distric=\nt Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2025 SSP', 'infrawatch_contract_status': 'On-Going', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'UPGRADING OF ROADS WITH DRAINAGE CANAL, PUROK II, BRGY. SALAMBAO, OBANDO, BULACAN', 'project_description': 'UPGRADING OF ROADS WITH DRAINAGE CANAL, PUROK II, BRGY. SALAMBAO, OBANDO, BULACAN', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2023 CSSP', 'project_type': None, 'amount': 4872811.16, 'contract_amount': 4872811.16, 'dime_cost': None, 'region': 'Region III', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': '747 BUILDERS & TRADERS,INC. (FORMERLY:747 BUILDERS & TRADER)', 'organization_name': 'Bulacan 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 4872811.16, 'project_name_1': 'UPGRADING OF ROADS WITH DRAINAGE CANAL, PUROK II, BRGY. SALAMBAO, OBANDO, BULACAN', 'contractor': '747 BUILDERS & TRADERS,INC. (FORMERLY:747 BUILDERS & TRADER)', 'location': 'Bulacan 2nd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '23CD0133', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2023 CSSP', 'infrawatch_contract_status': None, 'description': 'UPGRADING OF ROADS WITH DRAINAGE CANAL, PUROK II, BRGY. SALAMBAO, OBANDO, BULACAN', 'contractor_id': '16892', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Bulacan 2nd District Engineering Office', 'cost_php': 4872811.16, 'Contract Price': 4872811.16, 'Contract Amount': 4872811.16, 'effectivity_date': '2023-05-15 00:00:00', 'expiry_date': '2023-10-19 00:00:00', 'year': 2023, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-III', 'file_source': 'table_Region-III_2023_20251111_161014.html', 'row_number': 934, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Bulacan 2nd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF MULTI PURPOSE COVERED COURT,\tBRGY. CALIOS, STA. CRUZ, LAGUNA', 'project_description': 'CONSTRUCTION OF MULTI PURPOSE COVERED COURT,\tBRGY. CALIOS, STA. CRUZ, LAGUNA', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2018 LP', 'project_type': None, 'amount': 6119979.21, 'contract_amount': 6119979.21, 'dime_cost': None, 'region': 'Region IV-A', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'JOBEL ENTERPRISES', 'organization_name': 'Laguna 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 6119979.21, 'project_name_1': 'CONSTRUCTION OF MULTI PURPOSE COVERED COURT,\tBRGY. CALIOS, STA. CRUZ, LAGUNA', 'contractor': 'JOBEL ENTERPRISES', 'location': 'Laguna 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '18DH0022', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2018 LP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF MULTI PURPOSE COVERED COURT,\tBRGY. CALIOS, STA. CRUZ, LAGUNA', 'contractor_id': '19799', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Laguna 1st District Engineering Office', 'cost_php': 6119979.21, 'Contract Price': 6119979.21, 'Contract Amount': 6119979.21, 'effectivity_date': '2018-02-21 00:00:00', 'expiry_date': '2018-07-20 00:00:00', 'year': 2018, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-IV-A', 'file_source': 'table_Region-IV-A_2018_20251111_161215.html', 'row_number': 1018, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Laguna 1st District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'LOCAL INFRASTRUCTURE PROGRAM: BUILDINGS AND OTHER STRUCTURES - MULTIPURPOSE/ FACILITIES -REHABILITATION OF MULTI-PURPOSE BUILDING AT STA. MARIA, MEXICO, PAMPANGA', 'project_description': 'LOCAL INFRASTRUCTURE PROGRAM: BUILDINGS AND OTHER STRUCTURES - MULTIPURPOSE/ FACILITIES -REHABILITATION OF MULTI-PURPOSE BUILDING AT STA. MARIA, MEXICO, PAMPANGA', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2021 LP', 'project_type': None, 'amount': 1879898.08, 'contract_amount': 1879898.08, 'dime_cost': None, 'region': 'Region III', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'CARL JOSH BUILDERS', 'organization_name': 'Pampanga 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 1879898.08, 'project_name_1': 'LOCAL INFRASTRUCTURE PROGRAM: BUILDINGS AND OTHER STRUCTURES - MULTIPURPOSE/ FACILITIES -REHABILITATION OF MULTI-PURPOSE BUILDING AT STA. MARIA, MEXICO, PAMPANGA', 'contractor': 'CARL JOSH BUILDERS', 'location': 'Pampanga 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '21CG0120', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2021 LP', 'infrawatch_contract_status': None, 'description': 'LOCAL INFRASTRUCTURE PROGRAM: BUILDINGS AND OTHER STRUCTURES - MULTIPURPOSE/ FACILITIES -REHABILITATION OF MULTI-PURPOSE BUILDING AT STA. MARIA, MEXICO, PAMPANGA', 'contractor_id': '33437', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Pampanga 1st District Engineering Office', 'cost_php': 1879898.08, 'Contract Price': 1879898.08, 'Contract Amount': 1879898.08, 'effectivity_date': '2021-04-05 00:00:00', 'expiry_date': '2021-05-19 00:00:00', 'year': 2021, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-III', 'file_source': 'table_Region-III_2021_20251111_160915.html', 'row_number': 1080, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Pampanga 1st District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONST OF ROAD SLOPE PROTECTION STRUCTURE-TERNATE-NASUGBU RD K0069+318-K0069+353', 'project_description': 'CONST OF ROAD SLOPE PROTECTION STRUCTURE-TERNATE-NASUGBU RD K0069+318-K0069+353', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 14794468.21, 'contract_amount': 14794468.21, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'WRC CONSTRUCTION AND GENERAL MERCHANDISE (42440)', 'organization_name': 'Region IV-A - Cavite 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 14794468.21, 'project_name_1': 'CONST OF ROAD SLOPE PROTECTION STRUCTURE-TERNATE-NASUGBU RD K0069+318-K0069+353', 'contractor': 'WRC CONSTRUCTION AND GENERAL MERCHANDISE (42440)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '22DG0005', 'philgeps_reference_id': None, 'contract_id': '22DG0005', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '14794468.21', 'infrawatch_implementing_agency': 'Region IV-A - Cavite 2nd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2022 OO-1', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF ROAD, BRGY. DOMINGO ALARCIO, LAOAC, PANGASINAN', 'project_description': 'CONSTRUCTION OF ROAD, BRGY. DOMINGO ALARCIO, LAOAC, PANGASINAN', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2025 SSP', 'project_type': None, 'amount': 4801156.81, 'contract_amount': 4801156.81, 'dime_cost': None, 'region': 'Region I', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'R.A. MATIAS CONSTRUCTION AND DEVELOPERS INC. (FORMERLY : R.A. MATIAS CONSTRUCTION AND DEVELOPERS)', 'organization_name': 'Pangasinan 3rd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 4801156.81, 'project_name_1': 'CONSTRUCTION OF ROAD, BRGY. DOMINGO ALARCIO, LAOAC, PANGASINAN', 'contractor': 'R.A. MATIAS CONSTRUCTION AND DEVELOPERS INC. (FORMERLY : R.A. MATIAS CONSTRUCTION AND DEVELOPERS)', 'location': 'Pangasinan 3rd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '25AI0145', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2025 SSP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF ROAD, BRGY. DOMINGO ALARCIO, LAOAC, PANGASINAN', 'contractor_id': '26346', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Pangasinan 3rd District Engineering Office', 'cost_php': 4801156.81, 'Contract Price': 4801156.81, 'Contract Amount': 4801156.81, 'effectivity_date': '2025-05-27 00:00:00', 'expiry_date': '2025-07-22 00:00:00', 'year': 2025, 'Contract Status': 'On-Going', 'accomplishment_pct': 3.15, 'source_office': 'Region-I', 'file_source': 'table_Region-I_2025_20251111_154600.html', 'row_number': 1701, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Pangasinan 3rd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'ORGANIZATIONAL OUTCOME 2: PROTECT LIVES AND PROPERTIES AGAINST MAJOR FLOODS - FLOOD MANAGEMENT PROGRAM - CONSTRUCTION/REHABILITATION OF FLOOD MITIGATION FACILITIES WITHIN MAJOR RIVER BASINS AND PRINCIPAL RIVERS-CONSTRUCTION OF SANTOS FLOOD CONTROL STRUCTU', 'project_description': 'ORGANIZATIONAL OUTCOME 2: PROTECT LIVES AND PROPERTIES AGAINST MAJOR FLOODS - FLOOD MANAGEMENT PROGRAM - CONSTRUCTION/REHABILITATION OF FLOOD MITIGATION FACILITIES WITHIN MAJOR RIVER BASINS AND PRINCIPAL RIVERS-CONSTRUCTION OF SANTOS FLOOD CONTROL STRUCTU', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 115800000.0, 'contract_amount': 115800000.0, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'V.B. MANUBAY CONSTRUCTION (32705)', 'organization_name': 'Region II - Isabela 4th District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 115800000.0, 'project_name_1': 'ORGANIZATIONAL OUTCOME 2: PROTECT LIVES AND PROPERTIES AGAINST MAJOR FLOODS - FLOOD MANAGEMENT PROGRAM - CONSTRUCTION/REHABILITATION OF FLOOD MITIGATION FACILITIES WITHIN MAJOR RIVER BASINS AND PRINCIPAL RIVERS-CONSTRUCTION OF SANTOS FLOOD CONTROL STRUCTU', 'contractor': 'V.B. MANUBAY CONSTRUCTION (32705)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '24BH0086', 'philgeps_reference_id': None, 'contract_id': '24BH0086', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '115800000.00', 'infrawatch_implementing_agency': 'Region II - Isabela 4th District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2024 OO-2', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONCRETING OF ROAD, CUARTERO, CAPIZ', 'project_description': 'CONCRETING OF ROAD, CUARTERO, CAPIZ', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2021 LP', 'project_type': None, 'amount': 2958304.12, 'contract_amount': 2958304.12, 'dime_cost': None, 'region': 'Region VI', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ARRIANNE MERCHANDISING AND CONSTRUCTION SERVICES INCORPORATED', 'organization_name': 'Capiz 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 2958304.12, 'project_name_1': 'CONCRETING OF ROAD, CUARTERO, CAPIZ', 'contractor': 'ARRIANNE MERCHANDISING AND CONSTRUCTION SERVICES INCORPORATED', 'location': 'Capiz 2nd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '21GP0040', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2021 LP', 'infrawatch_contract_status': None, 'description': 'CONCRETING OF ROAD, CUARTERO, CAPIZ', 'contractor_id': '41643', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Capiz 2nd District Engineering Office', 'cost_php': 2958304.12, 'Contract Price': 2958304.12, 'Contract Amount': 2958304.12, 'effectivity_date': '2021-03-11 00:00:00', 'expiry_date': '2021-05-02 00:00:00', 'year': 2021, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-VI', 'file_source': 'table_Region-VI_2021_20251111_162215.html', 'row_number': 1065, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Capiz 2nd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'ORGANIZATIONAL OUTCOME 1: ENSURE SAFE AND RELIABLE NATIONAL ROAD SYSTEM ASSET PRESERVATION PROGRAM - CONST/UPGRADING/REHAB OF DRAINAGE ALONG NATIONAL ROADS - PRIMARY ROADS - N BACALSO AVE (CEBU SOUTH RD) - K0033+935 -K0034+141, CITY OF CARCAR, CEBU', 'project_description': 'ORGANIZATIONAL OUTCOME 1: ENSURE SAFE AND RELIABLE NATIONAL ROAD SYSTEM ASSET PRESERVATION PROGRAM - CONST/UPGRADING/REHAB OF DRAINAGE ALONG NATIONAL ROADS - PRIMARY ROADS - N BACALSO AVE (CEBU SOUTH RD) - K0033+935 -K0034+141, CITY OF CARCAR, CEBU', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2025 OO-1', 'project_type': None, 'amount': 9645000.0, 'contract_amount': 9645000.0, 'dime_cost': None, 'region': 'Region VII', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ZLREJ TRADING AND CONSTRUCTION CORPORATION', 'organization_name': 'Cebu 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 9645000.0, 'project_name_1': 'ORGANIZATIONAL OUTCOME 1: ENSURE SAFE AND RELIABLE NATIONAL ROAD SYSTEM ASSET PRESERVATION PROGRAM - CONST/UPGRADING/REHAB OF DRAINAGE ALONG NATIONAL ROADS - PRIMARY ROADS - N BACALSO AVE (CEBU SOUTH RD) - K0033+935 -K0034+141, CITY OF CARCAR, CEBU', 'contractor': 'ZLREJ TRADING AND CONSTRUCTION CORPORATION', 'location': 'Cebu 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '25HD0101', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2025 OO-1', 'infrawatch_contract_status': None, 'description': 'ORGANIZATIONAL OUTCOME 1: ENSURE SAFE AND RELIABLE NATIONAL ROAD SYSTEM ASSET PRESERVATION PROGRAM - CONST/UPGRADING/REHAB OF DRAINAGE ALONG NATIONAL ROADS - PRIMARY ROADS - N BACALSO AVE (CEBU SOUTH RD) - K0033+935 -K0034+141, CITY OF CARCAR, CEBU', 'contractor_id': '49171', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Cebu 1st District Engineering Office', 'cost_php': 9645000.0, 'Contract Price': 9645000.0, 'Contract Amount': 9645000.0, 'effectivity_date': '2025-03-31 00:00:00', 'expiry_date': '2025-07-31 00:00:00', 'year': 2016, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-VII', 'file_source': 'table_Region-VII_2016_20251111_162356.html', 'row_number': 487, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Cebu 1st District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONST. OF MISSING LINKS/NEW ROADS, JCT. CDO CITY CAMP KIBARITAN DOMINOROG ROAD TO JCT. MANOLO FORTICH LIBONA INDAHAG ROAD (LIBONA-BAUNGON), LIBONA-BAUNGON SECTION, PACKAGE 3A, BUKIDNON', 'project_description': 'CONST. OF MISSING LINKS/NEW ROADS, JCT. CDO CITY CAMP KIBARITAN DOMINOROG ROAD TO JCT. MANOLO FORTICH LIBONA INDAHAG ROAD (LIBONA-BAUNGON), LIBONA-BAUNGON SECTION, PACKAGE 3A, BUKIDNON', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 132401662.39, 'contract_amount': 132401662.39, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'VEN RAY CONSTRUCTION CORPORATION (18310)', 'organization_name': 'Region X - Region X', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 132401662.39, 'project_name_1': 'CONST. OF MISSING LINKS/NEW ROADS, JCT. CDO CITY CAMP KIBARITAN DOMINOROG ROAD TO JCT. MANOLO FORTICH LIBONA INDAHAG ROAD (LIBONA-BAUNGON), LIBONA-BAUNGON SECTION, PACKAGE 3A, BUKIDNON', 'contractor': 'VEN RAY CONSTRUCTION CORPORATION (18310)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '19K00028', 'philgeps_reference_id': None, 'contract_id': '19K00028', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '132401662.39', 'infrawatch_implementing_agency': 'Region X - Region X', 'infrawatch_fund_source': 'Regular Infra - GAA 2019 OO-1', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING, BRGY. BANTUANONLANTAPAN, BUKIDNON', 'project_description': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING, BRGY. BANTUANONLANTAPAN, BUKIDNON', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2018 LP', 'project_type': None, 'amount': 1900208.99, 'contract_amount': 1900208.99, 'dime_cost': None, 'region': 'Region X', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'R. SEMILLA CONSTRUCTION & MARKETING', 'organization_name': 'Bukidnon 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 1900208.99, 'project_name_1': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING, BRGY. BANTUANONLANTAPAN, BUKIDNON', 'contractor': 'R. SEMILLA CONSTRUCTION & MARKETING', 'location': 'Bukidnon 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '18KA0045', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2018 LP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING, BRGY. BANTUANONLANTAPAN, BUKIDNON', 'contractor_id': '9263', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Bukidnon 1st District Engineering Office', 'cost_php': 1900208.99, 'Contract Price': 1900208.99, 'Contract Amount': 1900208.99, 'effectivity_date': '2018-02-20 00:00:00', 'expiry_date': '2018-07-04 00:00:00', 'year': 2018, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-X', 'file_source': 'table_Region-X_2018_20251111_163150.html', 'row_number': 285, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Bukidnon 1st District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF LOCAL ROAD, PANTOL-SAN GABRIEL ROADLINE, BRGY. PANTOL, BAYAMBANG, PANGASINAN', 'project_description': 'CONSTRUCTION OF LOCAL ROAD, PANTOL-SAN GABRIEL ROADLINE, BRGY. PANTOL, BAYAMBANG, PANGASINAN', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 4818712.39, 'contract_amount': 4818712.39, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'LEZA CONSTRUCTION & SUPPLY (25565)', 'organization_name': 'Region I - Pangasinan 4th District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 4818712.39, 'project_name_1': 'CONSTRUCTION OF LOCAL ROAD, PANTOL-SAN GABRIEL ROADLINE, BRGY. PANTOL, BAYAMBANG, PANGASINAN', 'contractor': 'LEZA CONSTRUCTION & SUPPLY (25565)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '20AJ0076', 'philgeps_reference_id': None, 'contract_id': '20AJ0076', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '4818712.39', 'infrawatch_implementing_agency': 'Region I - Pangasinan 4th District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2020 LP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING AT CALICLIC, BABAK DISTRICT, ISLAND GARDEN CITY OF SAMAL, DAVAO DEL NORTE', 'project_description': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING AT CALICLIC, BABAK DISTRICT, ISLAND GARDEN CITY OF SAMAL, DAVAO DEL NORTE', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2019 LP', 'project_type': None, 'amount': 1920789.01, 'contract_amount': 1920789.01, 'dime_cost': None, 'region': 'Region XI', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'L.A. ARIZOLA CONSTRUCTION & SUPPLY', 'organization_name': 'Davao del Norte District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 1920789.01, 'project_name_1': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING AT CALICLIC, BABAK DISTRICT, ISLAND GARDEN CITY OF SAMAL, DAVAO DEL NORTE', 'contractor': 'L.A. ARIZOLA CONSTRUCTION & SUPPLY', 'location': 'Davao del Norte District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '19LC0192', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2019 LP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION (COMPLETION) OF MULTI-PURPOSE BUILDING AT CALICLIC, BABAK DISTRICT, ISLAND GARDEN CITY OF SAMAL, DAVAO DEL NORTE', 'contractor_id': '31060', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Davao del Norte District Engineering Office', 'cost_php': 1920789.01, 'Contract Price': 1920789.01, 'Contract Amount': 1920789.01, 'effectivity_date': '2019-08-01 00:00:00', 'expiry_date': '2019-10-29 00:00:00', 'year': 2019, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-XI', 'file_source': 'table_Region-XI_2019_20251111_163453.html', 'row_number': 777, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Davao del Norte District Engineering Office'}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTURCTION OF MULTI-PURPOSE BUILDING (MAKILING SECTOR 3 POLICE, ASSISTANCE BASE) CALAMBA CITY, LAGUNA', 'project_description': 'CONSTURCTION OF MULTI-PURPOSE BUILDING (MAKILING SECTOR 3 POLICE, ASSISTANCE BASE) CALAMBA CITY, LAGUNA', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2024 CP', 'project_type': None, 'amount': 9457197.93, 'contract_amount': 9457197.93, 'dime_cost': None, 'region': 'Region IV-A', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': "R'CEL GENERAL CONTRACTOR & GEN MERCHANDISE", 'organization_name': 'Region IV-A', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 9457197.93, 'project_name_1': 'CONSTURCTION OF MULTI-PURPOSE BUILDING (MAKILING SECTOR 3 POLICE, ASSISTANCE BASE) CALAMBA CITY, LAGUNA', 'contractor': "R'CEL GENERAL CONTRACTOR & GEN MERCHANDISE", 'location': 'Region IV-A', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '24D00186', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2024 CP', 'infrawatch_contract_status': None, 'description': 'CONSTURCTION OF MULTI-PURPOSE BUILDING (MAKILING SECTOR 3 POLICE, ASSISTANCE BASE) CALAMBA CITY, LAGUNA', 'contractor_id': '13385', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Region IV-A', 'cost_php': 9457197.93, 'Contract Price': 9457197.93, 'Contract Amount': 9457197.93, 'effectivity_date': '2024-05-08 00:00:00', 'expiry_date': '2024-12-03 00:00:00', 'year': 2025, 'Contract Status': 'On-Going', 'accomplishment_pct': 0.0, 'source_office': 'Region-IV-A', 'file_source': 'table_Region-IV-A_2025_20251111_161538.html', 'row_number': 151, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Region IV-A'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING MUNICIPALITY OF ALTAVAS, AKLAN', 'project_description': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING MUNICIPALITY OF ALTAVAS, AKLAN', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2023 CSSP', 'project_type': None, 'amount': 5192069.69, 'contract_amount': 5192069.69, 'dime_cost': None, 'region': 'Region VI', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'EC BUILDERS', 'organization_name': 'Aklan District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 5192069.69, 'project_name_1': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING MUNICIPALITY OF ALTAVAS, AKLAN', 'contractor': 'EC BUILDERS', 'location': 'Aklan District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '23GA0132', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2023 CSSP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF MULTI-PURPOSE BUILDING MUNICIPALITY OF ALTAVAS, AKLAN', 'contractor_id': '47417', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Aklan District Engineering Office', 'cost_php': 5192069.69, 'Contract Price': 5192069.69, 'Contract Amount': 5192069.69, 'effectivity_date': '2023-05-22 00:00:00', 'expiry_date': '2024-01-07 00:00:00', 'year': 2023, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-VI', 'file_source': 'table_Region-VI_2023_20251111_162258.html', 'row_number': 190, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Aklan District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'ROAD OPENING OF SO. MAHABANG BUHANGIN - SO. BIL - ISAN BARANGAY ROAD, BANILAD, PINAMALAYAN, ORIENTAL MINDORO', 'project_description': 'ROAD OPENING OF SO. MAHABANG BUHANGIN - SO. BIL - ISAN BARANGAY ROAD, BANILAD, PINAMALAYAN, ORIENTAL MINDORO', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 4948634.39, 'contract_amount': 4948634.39, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'TWENTY SIXTEEN CONSTRUCTION AND GENERAL MERCHANDISE (41944)=', 'organization_name': 'Region IV-B - Southern Mindoro District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 4948634.39, 'project_name_1': 'ROAD OPENING OF SO. MAHABANG BUHANGIN - SO. BIL - ISAN BARANGAY ROAD, BANILAD, PINAMALAYAN, ORIENTAL MINDORO', 'contractor': 'TWENTY SIXTEEN CONSTRUCTION AND GENERAL MERCHANDISE (41944)=', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '20EI0082', 'philgeps_reference_id': None, 'contract_id': '20EI0082', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '4948634.39', 'infrawatch_implementing_agency': 'Region IV-B - Southern Mindoro District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2020 LP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF FLOOD CONTROL STRUCTURE ALONG MATOGDON RIVER, BARANGAY LUGUI, LABO, CAMARINES NORTE (PACKAGE II), BRGY. LUGUI, LABO, CAMARINES NORTE', 'project_description': 'CONSTRUCTION OF FLOOD CONTROL STRUCTURE ALONG MATOGDON RIVER, BARANGAY LUGUI, LABO, CAMARINES NORTE (PACKAGE II), BRGY. LUGUI, LABO, CAMARINES NORTE', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2024 OO-2', 'project_type': None, 'amount': 144749351.14, 'contract_amount': 144749351.14, 'dime_cost': None, 'region': 'Region V', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'CENTERWAYS CONSTRUCTION AND DEVELOPMENT INC.', 'organization_name': 'Camarines Norte District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 144749351.14, 'project_name_1': 'CONSTRUCTION OF FLOOD CONTROL STRUCTURE ALONG MATOGDON RIVER, BARANGAY LUGUI, LABO, CAMARINES NORTE (PACKAGE II), BRGY. LUGUI, LABO, CAMARINES NORTE', 'contractor': 'CENTERWAYS CONSTRUCTION AND DEVELOPMENT INC.', 'location': 'Camarines Norte District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '24FC0027', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2024 OO-2', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF FLOOD CONTROL STRUCTURE ALONG MATOGDON RIVER, BARANGAY LUGUI, LABO, CAMARINES NORTE (PACKAGE II), BRGY. LUGUI, LABO, CAMARINES NORTE', 'contractor_id': '34105', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Camarines Norte District Engineering Office', 'cost_php': 144749351.14, 'Contract Price': 144749351.14, 'Contract Amount': 144749351.14, 'effectivity_date': '2024-03-21 00:00:00', 'expiry_date': '2025-04-07 00:00:00', 'year': 2024, 'Contract Status': 'On-Going', 'accomplishment_pct': 100.0, 'source_office': 'Region-V', 'file_source': 'table_Region-V_2024_20251111_162027.html', 'row_number': 620, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Camarines Norte District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'IMPROVEMENT/SHEET PILING OF PARAÑAQUE RIVER SOUTH NEAR AVIDA TOWER,PARAÑAQUE CITY, METRO MANILA', 'project_description': 'IMPROVEMENT/SHEET PILING OF PARAÑAQUE RIVER SOUTH NEAR AVIDA TOWER,PARAÑAQUE CITY, METRO MANILA', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2018 OO-2', 'project_type': None, 'amount': 46059816.58, 'contract_amount': 46059816.58, 'dime_cost': None, 'region': 'National Capital Region', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'AKN CONSTRUCTION CORPORATION', 'organization_name': 'Metro Manila 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 46059816.58, 'project_name_1': 'IMPROVEMENT/SHEET PILING OF PARAÑAQUE RIVER SOUTH NEAR AVIDA TOWER,PARAÑAQUE CITY, METRO MANILA', 'contractor': 'AKN CONSTRUCTION CORPORATION', 'location': 'Metro Manila 2nd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '18OC0043', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2018 OO-2', 'infrawatch_contract_status': None, 'description': 'IMPROVEMENT/SHEET PILING OF PARAÑAQUE RIVER SOUTH NEAR AVIDA TOWER,PARAÑAQUE CITY, METRO MANILA', 'contractor_id': '11845', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Metro Manila 2nd District Engineering Office', 'cost_php': 46059816.58, 'Contract Price': 46059816.58, 'Contract Amount': 46059816.58, 'effectivity_date': '2018-02-26 00:00:00', 'expiry_date': '2018-12-22 00:00:00', 'year': 2018, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'National-Capital-Region', 'file_source': 'table_National-Capital-Region_2018_20251111_155634.html', 'row_number': 597, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Metro Manila 2nd District Engineering Office'}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'ASSET PRESERVATION PROGRAM - PREVENTIVE MAINTENANCE - SECONDARY ROAD - JCT LAYAC-BALANGA-MARIVELES PORT RD - MARIVELES, BATAAN', 'project_description': 'ASSET PRESERVATION PROGRAM - PREVENTIVE MAINTENANCE - SECONDARY ROAD - JCT LAYAC-BALANGA-MARIVELES PORT RD - MARIVELES, BATAAN', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2023 OO-1', 'project_type': None, 'amount': 17988565.0, 'contract_amount': 17988565.0, 'dime_cost': None, 'region': 'Region III', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'D.M. BERNALES CONSTRUCTION', 'organization_name': 'Region III', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 17988565.0, 'project_name_1': 'ASSET PRESERVATION PROGRAM - PREVENTIVE MAINTENANCE - SECONDARY ROAD - JCT LAYAC-BALANGA-MARIVELES PORT RD - MARIVELES, BATAAN', 'contractor': 'D.M. BERNALES CONSTRUCTION', 'location': 'Region III', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '23C00204', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2023 OO-1', 'infrawatch_contract_status': None, 'description': 'ASSET PRESERVATION PROGRAM - PREVENTIVE MAINTENANCE - SECONDARY ROAD - JCT LAYAC-BALANGA-MARIVELES PORT RD - MARIVELES, BATAAN', 'contractor_id': '38691', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Region III', 'cost_php': 17988565.0, 'Contract Price': 17988565.0, 'Contract Amount': 17988565.0, 'effectivity_date': '2023-09-11 00:00:00', 'expiry_date': '2023-12-09 00:00:00', 'year': 2024, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-III', 'file_source': 'table_Region-III_2024_20251111_161040.html', 'row_number': 141, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Region III'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION/IMPROVEMENT OF MAGTIACO RIVER FLOOD CONTROL STRUCTURE ALONG MAGTIACO BR. (PHASE 2) / BRGY. SAN PEDRO, ALEGRIA, SURIGAO DEL NORTE', 'project_description': 'CONSTRUCTION/IMPROVEMENT OF MAGTIACO RIVER FLOOD CONTROL STRUCTURE ALONG MAGTIACO BR. (PHASE 2) / BRGY. SAN PEDRO, ALEGRIA, SURIGAO DEL NORTE', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2021 OO-2', 'project_type': None, 'amount': 47037505.82, 'contract_amount': 47037505.82, 'dime_cost': None, 'region': 'Region XIII', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'C.V. CONSTRUCTION & DEVELOPMENT', 'organization_name': 'Surigao del Norte 2nd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 47037505.82, 'project_name_1': 'CONSTRUCTION/IMPROVEMENT OF MAGTIACO RIVER FLOOD CONTROL STRUCTURE ALONG MAGTIACO BR. (PHASE 2) / BRGY. SAN PEDRO, ALEGRIA, SURIGAO DEL NORTE', 'contractor': 'C.V. CONSTRUCTION & DEVELOPMENT', 'location': 'Surigao del Norte 2nd District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '21NG0014', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2021 OO-2', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION/IMPROVEMENT OF MAGTIACO RIVER FLOOD CONTROL STRUCTURE ALONG MAGTIACO BR. (PHASE 2) / BRGY. SAN PEDRO, ALEGRIA, SURIGAO DEL NORTE', 'contractor_id': '8334', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Surigao del Norte 2nd District Engineering Office', 'cost_php': 47037505.82, 'Contract Price': 47037505.82, 'Contract Amount': 47037505.82, 'effectivity_date': '2021-05-03 00:00:00', 'expiry_date': '2022-02-14 00:00:00', 'year': 2021, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-XIII', 'file_source': 'table_Region-XIII_2021_20251111_163958.html', 'row_number': 562, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Surigao del Norte 2nd District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CSSP - CONSTRUCTION/ IMPROVEMENT OF ACCESS ROADS LEADINGTO DECLARED TOURISM DESTINATIONS (TOURISM ROAD INFRASTRUCTURE PROGRAM - TRIP) - CONSTRUCTION OF ACCESS ROAD LEADING TO ROLLING HILLS, BRGY. PLANAS-SAN MIGUEL-AGUINALDO, RAMON, ISABELA', 'project_description': 'CSSP - CONSTRUCTION/ IMPROVEMENT OF ACCESS ROADS LEADINGTO DECLARED TOURISM DESTINATIONS (TOURISM ROAD INFRASTRUCTURE PROGRAM - TRIP) - CONSTRUCTION OF ACCESS ROAD LEADING TO ROLLING HILLS, BRGY. PLANAS-SAN MIGUEL-AGUINALDO, RAMON, ISABELA', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 19279821.51, 'contract_amount': 19279821.51, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'D.A. CADELI=C3=91A CONSTRUCTION (29004)', 'organization_name': 'Region II - Isabela 3rd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 19279821.51, 'project_name_1': 'CSSP - CONSTRUCTION/ IMPROVEMENT OF ACCESS ROADS LEADINGTO DECLARED TOURISM DESTINATIONS (TOURISM ROAD INFRASTRUCTURE PROGRAM - TRIP) - CONSTRUCTION OF ACCESS ROAD LEADING TO ROLLING HILLS, BRGY. PLANAS-SAN MIGUEL-AGUINALDO, RAMON, ISABELA', 'contractor': 'D.A. CADELI=C3=91A CONSTRUCTION (29004)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '24BG0004', 'philgeps_reference_id': None, 'contract_id': '24BG0004', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '19279821.51', 'infrawatch_implementing_agency': 'Region II - Isabela 3rd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2024 CP', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'WIDENING OF BRIDGE BALETE BR. (B00283PN) ALONG AKLAN EAST ROAD', 'project_description': 'WIDENING OF BRIDGE BALETE BR. (B00283PN) ALONG AKLAN EAST ROAD', 'program': None, 'status': 'Terminated', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2022 OO-1', 'project_type': None, 'amount': None, 'contract_amount': None, 'dime_cost': None, 'region': 'Region VI', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'UNITEC BUILDER, INCORPORATED', 'organization_name': 'Aklan District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': None, 'project_name_1': 'WIDENING OF BRIDGE BALETE BR. (B00283PN) ALONG AKLAN EAST ROAD', 'contractor': 'UNITEC BUILDER, INCORPORATED', 'location': 'Aklan District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '22GA0020', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2022 OO-1', 'infrawatch_contract_status': None, 'description': 'WIDENING OF BRIDGE BALETE BR. (B00283PN) ALONG AKLAN EAST ROAD', 'contractor_id': '4803', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Aklan District Engineering Office', 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': '2022-02-21 00:00:00', 'expiry_date': '2022-12-06 00:00:00', 'year': 2022, 'Contract Status': 'Terminated', 'accomplishment_pct': 0.0, 'source_office': 'Region-VI', 'file_source': 'table_Region-VI_2022_20251111_162237.html', 'row_number': 158, 'critical_errors': None, 'errors': None, 'warnings': 'WARN-011: Empty cost field', 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Aklan District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF MULTIPURPOSE BUILDING (DEPARTMENT OF LABOR AND EMPLOYMENT (DOLE) BUILDING) DIGOS CITY, DAVAO DEL SUR', 'project_description': 'CONSTRUCTION OF MULTIPURPOSE BUILDING (DEPARTMENT OF LABOR AND EMPLOYMENT (DOLE) BUILDING) DIGOS CITY, DAVAO DEL SUR', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2024 SSP', 'project_type': None, 'amount': 4799084.81, 'contract_amount': 4799084.81, 'dime_cost': None, 'region': 'Region XI', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'NLC CONSTRUCTION AND SUPPLIES', 'organization_name': 'Davao del Sur District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 4799084.81, 'project_name_1': 'CONSTRUCTION OF MULTIPURPOSE BUILDING (DEPARTMENT OF LABOR AND EMPLOYMENT (DOLE) BUILDING) DIGOS CITY, DAVAO DEL SUR', 'contractor': 'NLC CONSTRUCTION AND SUPPLIES', 'location': 'Davao del Sur District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '24LD0158', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2024 SSP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF MULTIPURPOSE BUILDING (DEPARTMENT OF LABOR AND EMPLOYMENT (DOLE) BUILDING) DIGOS CITY, DAVAO DEL SUR', 'contractor_id': '36704', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Davao del Sur District Engineering Office', 'cost_php': 4799084.81, 'Contract Price': 4799084.81, 'Contract Amount': 4799084.81, 'effectivity_date': '2024-08-05 00:00:00', 'expiry_date': '2024-11-02 00:00:00', 'year': 2024, 'Contract Status': 'On-Going', 'accomplishment_pct': 92.5, 'source_office': 'Region-XI', 'file_source': 'table_Region-XI_2024_20251111_163613.html', 'row_number': 588, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Davao del Sur District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF PNPA ENGINEERING OFFICE, CAMP GEN MARIANOCASTA=C3=91EDA, SILANG, CAVITE', 'project_description': 'CONSTRUCTION OF PNPA ENGINEERING OFFICE, CAMP GEN MARIANOCASTA=C3=91EDA, SILANG, CAVITE', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 5043089.06, 'contract_amount': 5043089.06, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'PROTECH CONSTRUCTION & DEVELOPMENT CORP. (FORMERLY (1540=\n8)', 'organization_name': 'Region IV-A - Region IV-A', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'On-Going', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 5043089.06, 'project_name_1': 'CONSTRUCTION OF PNPA ENGINEERING OFFICE, CAMP GEN MARIANOCASTA=C3=91EDA, SILANG, CAVITE', 'contractor': 'PROTECH CONSTRUCTION & DEVELOPMENT CORP. (FORMERLY (1540=\n8)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '22D00035', 'philgeps_reference_id': None, 'contract_id': '22D00035', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '5043089.06', 'infrawatch_implementing_agency': 'Region IV-A - Region IV-A', 'infrawatch_fund_source': 'Regular Infra - GAA 2022 CSSP', 'infrawatch_contract_status': 'On-Going', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'READ - CONSTRUCTION OF BRGY. HALL, POBLACION 1, REMEDIOS T. ROMUALDEZ, AGUSAN DEL NORTE', 'project_description': 'READ - CONSTRUCTION OF BRGY. HALL, POBLACION 1, REMEDIOS T. ROMUALDEZ, AGUSAN DEL NORTE', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2020 LP', 'project_type': None, 'amount': 2967929.69, 'contract_amount': 2967929.69, 'dime_cost': None, 'region': 'Region XIII', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'NAHARO BUILDERS, INC.', 'organization_name': 'Agusan del Norte District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 2967929.69, 'project_name_1': 'READ - CONSTRUCTION OF BRGY. HALL, POBLACION 1, REMEDIOS T. ROMUALDEZ, AGUSAN DEL NORTE', 'contractor': 'NAHARO BUILDERS, INC.', 'location': 'Agusan del Norte District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '20NA0061', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2020 LP', 'infrawatch_contract_status': None, 'description': 'READ - CONSTRUCTION OF BRGY. HALL, POBLACION 1, REMEDIOS T. ROMUALDEZ, AGUSAN DEL NORTE', 'contractor_id': '43001', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Agusan del Norte District Engineering Office', 'cost_php': 2967929.69, 'Contract Price': 2967929.69, 'Contract Amount': 2967929.69, 'effectivity_date': '2020-11-27 00:00:00', 'expiry_date': '2021-05-05 00:00:00', 'year': 2020, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-XIII', 'file_source': 'table_Region-XIII_2020_20251111_163946.html', 'row_number': 150, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Agusan del Norte District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF SEAWALL, BARANGAY 11, BARANGAY 12 AND BARANGAY 13 DAPA, SURIGAO DEL NORTE', 'project_description': 'CONSTRUCTION OF SEAWALL, BARANGAY 11, BARANGAY 12 AND BARANGAY 13 DAPA, SURIGAO DEL NORTE', 'program': None, 'status': 'Completed', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2022 CSSP', 'project_type': None, 'amount': 95535492.09, 'contract_amount': 95535492.09, 'dime_cost': None, 'region': 'Region XIII', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'BOOMETRIX DEVELOPMENT CORP.', 'organization_name': 'Surigao del Norte 1st District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 95535492.09, 'project_name_1': 'CONSTRUCTION OF SEAWALL, BARANGAY 11, BARANGAY 12 AND BARANGAY 13 DAPA, SURIGAO DEL NORTE', 'contractor': 'BOOMETRIX DEVELOPMENT CORP.', 'location': 'Surigao del Norte 1st District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '22NF0053', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2022 CSSP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF SEAWALL, BARANGAY 11, BARANGAY 12 AND BARANGAY 13 DAPA, SURIGAO DEL NORTE', 'contractor_id': '40441', 'contractor_name_2': 'MONOLITHIC CONSTRUCTION & CONCRETE PRODUCTS, INC.', 'contractor_id_2': '5733', 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Surigao del Norte 1st District Engineering Office', 'cost_php': 95535492.09, 'Contract Price': 95535492.09, 'Contract Amount': 95535492.09, 'effectivity_date': '2022-03-06 00:00:00', 'expiry_date': '2023-03-19 00:00:00', 'year': 2022, 'Contract Status': 'Completed', 'accomplishment_pct': 100.0, 'source_office': 'Region-XIII', 'file_source': 'table_Region-XIII_2022_20251111_164010.html', 'row_number': 459, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': 'INFO-045: Joint venture with 2 contractors', 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Surigao del Norte 1st District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'ASSET PRESERVATION OF NATIONAL ROADS CONSTRUCTION UPGRADING REHABILITATION OF DRAINAGE ALONG NATIONAL ROADS AT SAN PABLO DOLORES ROAD (S01686LZ)', 'project_description': 'ASSET PRESERVATION OF NATIONAL ROADS CONSTRUCTION UPGRADING REHABILITATION OF DRAINAGE ALONG NATIONAL ROADS AT SAN PABLO DOLORES ROAD (S01686LZ)', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 7105000.0, 'contract_amount': 7105000.0, 'dime_cost': None, 'region': None, 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': '11 DIAMOND EAGLE CONSTRUCTION CORPORATION (FORMERLY:11 DIAMO=\nND EAGLE CONSTRUCTION) (33328)', 'organization_name': 'Region IV-A - Laguna 3rd District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': 'Completed', 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:27.513987+01', 'updated_at': '2025-12-13 01:55:27.513987+01', 'source_created_at': '2025-11-07 08:08:39.641574+01', 'amount_1': 7105000.0, 'project_name_1': 'ASSET PRESERVATION OF NATIONAL ROADS CONSTRUCTION UPGRADING REHABILITATION OF DRAINAGE ALONG NATIONAL ROADS AT SAN PABLO DOLORES ROAD (S01686LZ)', 'contractor': '11 DIAMOND EAGLE CONSTRUCTION CORPORATION (FORMERLY:11 DIAMO=\nND EAGLE CONSTRUCTION) (33328)', 'location': None, 'source': 'Microsite', '_source': 'Microsite', 'project_id': '16DP0059', 'philgeps_reference_id': None, 'contract_id': '16DP0059', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': '7105000.00', 'infrawatch_implementing_agency': 'Region IV-A - Laguna 3rd District Engineering Office', 'infrawatch_fund_source': 'Regular Infra - GAA 2017 MFO-1', 'infrawatch_contract_status': 'Completed', 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF GUINABSAN - LOMBUYAN ROAD (PHASE III), BUENAVISTA, AGUSAN DEL NORTE', 'project_description': 'CONSTRUCTION OF GUINABSAN - LOMBUYAN ROAD (PHASE III), BUENAVISTA, AGUSAN DEL NORTE', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2023 CSSP', 'project_type': None, 'amount': 106149992.18, 'contract_amount': 106149992.18, 'dime_cost': None, 'region': 'Region XIII', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'ME 3 CONSTRUCTION', 'organization_name': 'Region XIII', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 106149992.18, 'project_name_1': 'CONSTRUCTION OF GUINABSAN - LOMBUYAN ROAD (PHASE III), BUENAVISTA, AGUSAN DEL NORTE', 'contractor': 'ME 3 CONSTRUCTION', 'location': 'Region XIII', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '23N00161', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2023 CSSP', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF GUINABSAN - LOMBUYAN ROAD (PHASE III), BUENAVISTA, AGUSAN DEL NORTE', 'contractor_id': '31364', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Region XIII', 'cost_php': 106149992.18, 'Contract Price': 106149992.18, 'Contract Amount': 106149992.18, 'effectivity_date': '2023-07-21 00:00:00', 'expiry_date': '2025-01-10 00:00:00', 'year': 2023, 'Contract Status': 'On-Going', 'accomplishment_pct': 84.64, 'source_office': 'Region-XIII', 'file_source': 'table_Region-XIII_2023_20251111_164023.html', 'row_number': 128, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Region XIII'}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM, SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG), FLOOD MITIGATION STRUCTURES PROTECTING PUBLIC INFRASTRUCTURES/FACILITIES, CONSTRUCTION OF REVETMENT WALL AT BARANGAY COLABTINGON (DOWNSTREAM LEFT SIDE),', 'project_description': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM, SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG), FLOOD MITIGATION STRUCTURES PROTECTING PUBLIC INFRASTRUCTURES/FACILITIES, CONSTRUCTION OF REVETMENT WALL AT BARANGAY COLABTINGON (DOWNSTREAM LEFT SIDE),', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2025 SSP', 'project_type': None, 'amount': 95052000.0, 'contract_amount': 95052000.0, 'dime_cost': None, 'region': 'Region VII', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'QM BUILDERS', 'organization_name': 'Cebu 7th District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 95052000.0, 'project_name_1': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM, SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG), FLOOD MITIGATION STRUCTURES PROTECTING PUBLIC INFRASTRUCTURES/FACILITIES, CONSTRUCTION OF REVETMENT WALL AT BARANGAY COLABTINGON (DOWNSTREAM LEFT SIDE),', 'contractor': 'QM BUILDERS', 'location': 'Cebu 7th District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '25HO0046', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2025 SSP', 'infrawatch_contract_status': None, 'description': 'CONVERGENCE AND SPECIAL SUPPORT PROGRAM, SUSTAINABLE INFRASTRUCTURE PROJECTS ALLEVIATING GAPS (SIPAG), FLOOD MITIGATION STRUCTURES PROTECTING PUBLIC INFRASTRUCTURES/FACILITIES, CONSTRUCTION OF REVETMENT WALL AT BARANGAY COLABTINGON (DOWNSTREAM LEFT SIDE),', 'contractor_id': '30743', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Cebu 7th District Engineering Office', 'cost_php': 95052000.0, 'Contract Price': 95052000.0, 'Contract Amount': 95052000.0, 'effectivity_date': '2025-02-28 00:00:00', 'expiry_date': '2025-12-31 00:00:00', 'year': 2025, 'Contract Status': 'On-Going', 'accomplishment_pct': 95.46, 'source_office': 'Region-VII', 'file_source': 'table_Region-VII_2025_20251111_162617.html', 'row_number': 1204, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Cebu 7th District Engineering Office'}
🔍 DEBUG Unified Values: {'project_name': 'CONSTRUCTION OF RIVERWALLS ALONG TANGOS RIVER, PHASE 8, NAVOTAS CITY', 'project_description': 'CONSTRUCTION OF RIVERWALLS ALONG TANGOS RIVER, PHASE 8, NAVOTAS CITY', 'program': None, 'status': 'On-Going', 'latest_progress': None, 'source_of_funds': 'Regular Infra - GAA 2025 OO-2', 'project_type': None, 'amount': 47499984.14, 'contract_amount': 47499984.14, 'dime_cost': None, 'region': 'National Capital Region', 'province': None, 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': None, 'project_code': None, 'contractor_name': 'STRUKTURA TEKNIKA SERVICES CO.', 'organization_name': 'Malabon-Navotas District Engineering Office', 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': None, 'is_joint_venture': None, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': None, 'dynasty_relationship': None, 'created_at': None, 'updated_at': None, 'source_created_at': None, 'amount_1': 47499984.14, 'project_name_1': 'CONSTRUCTION OF RIVERWALLS ALONG TANGOS RIVER, PHASE 8, NAVOTAS CITY', 'contractor': 'STRUKTURA TEKNIKA SERVICES CO.', 'location': 'Malabon-Navotas District Engineering Office', 'source': 'Transparency', '_source': 'Transparency', 'project_id': None, 'philgeps_reference_id': None, 'contract_id': '25OA0005', 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': None, 'municipality': None, 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': 'Regular Infra - GAA 2025 OO-2', 'infrawatch_contract_status': None, 'description': 'CONSTRUCTION OF RIVERWALLS ALONG TANGOS RIVER, PHASE 8, NAVOTAS CITY', 'contractor_id': '16646', 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': 'Malabon-Navotas District Engineering Office', 'cost_php': 47499984.14, 'Contract Price': 47499984.14, 'Contract Amount': 47499984.14, 'effectivity_date': '2025-02-20 00:00:00', 'expiry_date': '2025-10-17 00:00:00', 'year': 2016, 'Contract Status': 'On-Going', 'accomplishment_pct': 66.37, 'source_office': 'National-Capital-Region', 'file_source': 'table_National-Capital-Region_2016_20251111_155602.html', 'row_number': 36, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': 'Malabon-Navotas District Engineering Office'}
🔍 DEBUG Unified Project Keys: ['project_name', 'project_description', 'program', 'status', 'latest_progress', 'source_of_funds', 'project_type', 'amount', 'contract_amount', 'dime_cost', 'region', 'province', 'city', 'barangay', 'latitude', 'longitude', 'project_year', 'contract_year', 'start_date', 'contract_end_date', 'actual_completion_date', 'actual_start_date', 'last_updated_cost', 'utilized_amount', 'global_id', 'project_code', 'contractor_name', 'organization_name', 'budget_amount', 'contractor_sec_number', 'contractor_status', 'contractor_role', 'is_joint_venture', 'district_engineering_office', 'congressman_name', 'dynasty_member_id', 'dynasty_relationship', 'created_at', 'updated_at', 'source_created_at', 'amount_1', 'project_name_1', 'contractor', 'location', 'source', '_source', 'project_id', 'philgeps_reference_id', 'contract_id', 'philgeps_contract_no', 'philgeps_award_title', 'work_type', 'philgeps_business_category', 'philgeps_area_of_delivery', 'award_date', 'philgeps_awardee_name', 'philgeps_award_status', 'end_date', 'department', 'municipality', 'legislative_district', 'infrawatch_contract_price', 'infrawatch_implementing_agency', 'infrawatch_fund_source', 'infrawatch_contract_status', 'description', 'contractor_id', 'contractor_name_2', 'contractor_id_2', 'contractor_name_3', 'contractor_id_3', 'contractor_name_4', 'contractor_id_4', 'implementing_office', 'cost_php', 'Contract Price', 'Contract Amount', 'effectivity_date', 'expiry_date', 'year', 'Contract Status', 'accomplishment_pct', 'source_office', 'file_source', 'row_number', 'critical_errors', 'errors', 'warnings', 'info_notes', 'meilisearch_id', 'award_title', 'award_description', 'notice_title', 'project_title', 'awardee_name', 'location_1']
🔍 DEBUG Unified Values: {'project_name': 'Rehabilitation of Drainage System, Barangay Claro, Quezon City', 'project_description': 'Rehabilitation of Drainage System, Barangay Claro, Quezon City', 'program': None, 'status': None, 'latest_progress': None, 'source_of_funds': None, 'project_type': None, 'amount': 2.429565053751886e+21, 'contract_amount': 2.429565053751886e+21, 'dime_cost': None, 'region': None, 'province': 'QUEZON CITY', 'city': None, 'barangay': None, 'latitude': None, 'longitude': None, 'project_year': None, 'contract_year': None, 'start_date': None, 'contract_end_date': None, 'actual_completion_date': None, 'actual_start_date': None, 'last_updated_cost': None, 'utilized_amount': None, 'global_id': '35e474b4-0147-4a60-b099-3796470d3690', 'project_code': None, 'contractor_name': 'ZALI CONSTRUCTION, INC.', 'organization_name': None, 'budget_amount': None, 'contractor_sec_number': None, 'contractor_status': None, 'contractor_role': 'main', 'is_joint_venture': False, 'district_engineering_office': None, 'congressman_name': None, 'dynasty_member_id': 0, 'dynasty_relationship': None, 'created_at': '2025-12-13 01:55:26.405619+01', 'updated_at': '2025-12-13 01:55:26.405619+01', 'source_created_at': None, 'amount_1': 2.429565053751886e+21, 'project_name_1': 'Rehabilitation of Drainage System, Barangay Claro, Quezon City', 'contractor': 'ZALI CONSTRUCTION, INC.', 'location': 'QUEZON CITY', 'source': 'SSP', '_source': 'SSP', 'project_id': '35e474b4-0147-4a60-b099-3796470d3690', 'philgeps_reference_id': None, 'contract_id': None, 'philgeps_contract_no': None, 'philgeps_award_title': None, 'work_type': None, 'philgeps_business_category': None, 'philgeps_area_of_delivery': None, 'award_date': None, 'philgeps_awardee_name': None, 'philgeps_award_status': None, 'end_date': None, 'department': 'DPWH', 'municipality': 'QUEZON CITY (METROPOLITAN MANILA)', 'legislative_district': None, 'infrawatch_contract_price': None, 'infrawatch_implementing_agency': None, 'infrawatch_fund_source': None, 'infrawatch_contract_status': None, 'description': None, 'contractor_id': None, 'contractor_name_2': None, 'contractor_id_2': None, 'contractor_name_3': None, 'contractor_id_3': None, 'contractor_name_4': None, 'contractor_id_4': None, 'implementing_office': None, 'cost_php': None, 'Contract Price': None, 'Contract Amount': None, 'effectivity_date': None, 'expiry_date': None, 'year': None, 'Contract Status': None, 'accomplishment_pct': None, 'source_office': None, 'file_source': None, 'row_number': None, 'critical_errors': None, 'errors': None, 'warnings': None, 'info_notes': None, 'meilisearch_id': None, 'award_title': None, 'award_description': None, 'notice_title': None, 'project_title': None, 'awardee_name': None, 'location_1': None}
Traceback (most recent call last):
File "/home/joebert/open-data-visualization/scripts/generate_dynasty_projects_cache_duckdb.py", line 8860, in generat
e_cache
name_variations = normalized_to_variations.get(normalized_name, [congressman_name])
_duckdb.InvalidInputException: Invalid Input Error: Failed to cast value: Casting value "1990598000.00" to type DECIMAL
(11,2) failed: value is out of range!
🚀 Submitted 72 tasks
Completed chunk: 7273 projects (2550 loc, 82 cont)
Completed chunk: 7273 projects (2760 loc, 98 cont)
Completed chunk: 7273 projects (2697 loc, 125 cont)
Completed chunk: 7273 projects (2933 loc, 84 cont)
Completed chunk: 7273 projects (2905 loc, 202 cont)
Completed chunk: 7273 projects (3051 loc, 81 cont)
Completed chunk: 7273 projects (3062 loc, 125 cont)
Completed chunk: 7273 projects (3308 loc, 253 cont)
Completed chunk: 7273 projects (3783 loc, 139 cont)
Completed chunk: 7273 projects (3884 loc, 441 cont)
Completed chunk: 7273 projects (4467 loc, 279 cont)
Completed chunk: 7273 projects (4304 loc, 389 cont)
Completed chunk: 7273 projects (4547 loc, 291 cont)
Completed chunk: 7273 projects (4578 loc, 383 cont)
Completed chunk: 7273 projects (4916 loc, 344 cont)
Completed chunk: 7273 projects (4978 loc, 308 cont)
Completed chunk: 7273 projects (4909 loc, 313 cont)
Completed chunk: 7273 projects (4915 loc, 353 cont)
Completed chunk: 7273 projects (4988 loc, 431 cont)
Completed chunk: 7273 projects (4946 loc, 454 cont)
Completed chunk: 7273 projects (5209 loc, 364 cont)
Completed chunk: 7273 projects (2670 loc, 81 cont)
Completed chunk: 7273 projects (2517 loc, 93 cont)
Completed chunk: 7273 projects (5681 loc, 30 cont)
Completed chunk: 7273 projects (5637 loc, 350 cont)
Completed chunk: 7273 projects (2709 loc, 140 cont)
Completed chunk: 7273 projects (2904 loc, 101 cont)
Completed chunk: 7273 projects (2783 loc, 46 cont)
Completed chunk: 7273 projects (2764 loc, 123 cont)
Completed chunk: 7273 projects (2905 loc, 64 cont)
Completed chunk: 7273 projects (3156 loc, 60 cont)
Completed chunk: 7273 projects (3281 loc, 65 cont)
Completed chunk: 7273 projects (7205 loc, 19 cont)
Completed chunk: 7273 projects (1347 loc, 27 cont)
Completed chunk: 7273 projects (3104 loc, 64 cont)
Completed chunk: 7273 projects (1795 loc, 6 cont)
Completed chunk: 7273 projects (3046 loc, 75 cont)
Completed chunk: 7273 projects (3031 loc, 75 cont)
Completed chunk: 7273 projects (2711 loc, 246 cont)
Completed chunk: 7273 projects (2551 loc, 13 cont)
Completed chunk: 7273 projects (2752 loc, 189 cont)
Completed chunk: 7273 projects (2187 loc, 1 cont)
Completed chunk: 7273 projects (2938 loc, 163 cont)
Completed chunk: 7273 projects (3313 loc, 102 cont)
Completed chunk: 7273 projects (2870 loc, 131 cont)
Completed chunk: 7273 projects (1826 loc, 9 cont)
Completed chunk: 7273 projects (2766 loc, 9 cont)
Completed chunk: 7273 projects (3071 loc, 9 cont)
Completed chunk: 7273 projects (2702 loc, 43 cont)
Completed chunk: 7273 projects (3634 loc, 179 cont)
Completed chunk: 7273 projects (3707 loc, 63 cont)
Completed chunk: 7273 projects (4054 loc, 11 cont)
Completed chunk: 7273 projects (3027 loc, 15 cont)
Completed chunk: 7273 projects (2445 loc, 11 cont)
Completed chunk: 7273 projects (2236 loc, 9 cont)
Completed chunk: 7273 projects (3032 loc, 14 cont)
Completed chunk: 7273 projects (1663 loc, 10 cont)
Completed chunk: 7273 projects (2275 loc, 7 cont)
Completed chunk: 7273 projects (4627 loc, 20 cont)
Completed chunk: 7273 projects (3921 loc, 13 cont)
Completed chunk: 7273 projects (2206 loc, 33 cont)
Completed chunk: 7273 projects (3307 loc, 10 cont)
Completed chunk: 7273 projects (3032 loc, 8 cont)
Completed chunk: 7273 projects (2385 loc, 12 cont)
Completed chunk: 7273 projects (2941 loc, 8 cont)
Completed chunk: 7273 projects (3670 loc, 18 cont)
Completed chunk: 7273 projects (4165 loc, 9 cont)
Completed chunk: 7273 projects (3944 loc, 11 cont)
Completed chunk: 7273 projects (4122 loc, 19 cont)
Completed chunk: 7273 projects (4344 loc, 20 cont)
Completed chunk: 7273 projects (4880 loc, 21 cont)
Completed chunk: 7272 projects (7226 loc, 46 cont)
📈 Unified Processing Summary:
- Total Processed: 523655
- Location Matches: 250755
- Contractor Matches: 8440
- Unmatched: 114
- Unique Congressmen Found: 336
✅ Processed 523655 projects
💾 Saving ALL projects (before deduplication) to /home/joebert/open-data-visualization/data/parquet/integrated_projects.parquet...
Amount column type: float64
Max amount: 8.148700575773491e+22
💾 Saving using Pandas to /home/joebert/open-data-visualization/data/parquet/integrated_projects.parquet...
✅ Saved 523655 total projects to /home/joebert/open-data-visualization/data/parquet/integrated_projects.parquet
📊 Final Processing Summary:
Total projects processed: 523655
✅ Districts matched: 250755
- City districts: 0
- Province districts: 0
📍 Location matches:
- Municipalities: 0
- Barangays: 0
👷 Contractors matched: 8440
👤 Unique congressmen: 336
❌ Unmatched: 114
💾 Saving deduplicated classified projects to /home/joebert/open-data-visualization/data/parquet/integrated_projects_classified.parquet...
Preparing 243904 unique projects for saving...
Created DataFrame with 243904 rows and 112 columns
Classified Amount column type: float64
Max amount: 7.241098305643839e+22
Writing to parquet file...
✅ All critical columns present
Projects with contract ID pattern in project_name: 2987
Of those, 2987 have philgeps_award_title available
Writing to parquet file...
⚠️ Failed to save classified projects to Parquet: Invalid Input Error: Failed to cast value: Casting value "1990598000.00" to type DECIMAL(11,2) failed: value is out of range!
ℹ️ Combined cache file generation skipped (file too large and unused)
📁 Creating individual cache files for each congressman...
ℹ️ Skipping cache directory clearing (use --force to clear existing caches)
🔧 Building name normalization map...
✅ Abdullah Dimaporo: 10 projects, ₱164,790,063.52
✅ Abdulmunir Mundoc Arbison: 0 projects (empty cache created)
✅ Abraham Tolentino: 204 projects, ₱12,790,809,501.39
✅ Alan Dujali: 821 projects, ₱22,217,517,856.80
✅ Alan Ecleo: 679 projects, ₱10,555,936,931.94
✅ Albert Garcia: 573 projects, ₱15,333,372,652.69
✅ Alden Almario: 12 projects, ₱204,893,776.30
✅ Aleta Suarez: 1057 projects, ₱32,304,743,344.54
✅ Alex L. Advincula: 61 projects, ₱2,080,534,950.21
✅ Alexandria Gonzales: 559 projects, ₱11,821,570,251.01
✅ Alfel Bascug: 572 projects, ₱23,424,994,571.85
✅ Alfonso V. Umali Jr.: 876 projects, ₱30,478,651,178.34
✅ Alfredo Marañon III: 410 projects, ₱4,658,737,920.07
✅ Allen Jesse Mangaoang: 430 projects, ₱5,190,644,667.39
✅ Amanda Christina Bagatsing: 0 projects (empty cache created)
✅ Ambrosio Cruz Jr.: 577 projects, ₱37,334,211,959.91
✅ Aminah Dimaporo: 1015 projects, ₱18,181,337,061.82
✅ Angelica Amante-Matba: 9 projects, ₱636,903,940.85
✅ Angelina Tan: 8 projects, ₱49,994,565.23
✅ Anna York Bondoc: 15 projects, ₱1,692,387,887.19
✅ Ansaruddin Alonto Adiong: 0 projects (empty cache created)
✅ Antolin Oreta III: 591 projects, ₱94,479,874,362,797,958,627,328.00
✅ Antonino Calixto: 193 projects, ₱5,568,194,124.63
✅ Antonio A. Ferrer: 119 projects, ₱3,914,546,606.09
✅ Antonio T. Albano: 0 projects (empty cache created)
✅ Apolonio Pancho: 0 projects (empty cache created)
✅ Ara Kho: 432 projects, ₱9,576,799,279.58
✅ Arjo Atayde: 2396 projects, ₱66,132,168,494.05
✅ Arnie Teves: 446 projects, ₱8,436,633,814.08
✅ Arnulf Bryan Fuentebella: 680 projects, ₱28,412,079,220,562,186,993,664.00
✅ Arnulfo Teves: 0 projects (empty cache created)
✅ Arthur C. Yap: 1394 projects, ₱15,802,162,745,364,426,260,480.00
✅ Arthur F. Celeste: 1356 projects, ₱24,099,835,047.73
✅ Augusto Sy-Alvarado: 1484 projects, ₱30,186,953,265.91
✅ Aurelio Dueñas Gonzales Jr.: 1011 projects, ₱72,410,983,056,469,334,687,744.00
✅ Aurelio Gonzales Jr.: 0 projects (empty cache created)
✅ Baby Aline Vargas-Alfonso: 17 projects, ₱692,947,324.93
✅ Bai Rihan Sakaluran: 0 projects (empty cache created)
✅ Bai Sandra Sema: 2081 projects, ₱11,278,741,804,980,073,660,416.00
✅ Bel Zamora: 554 projects, ₱35,437,136,617,934,132,609,024.00
✅ Benhur L. Salimbangon: 1073 projects, ₱16,255,972,829.87
✅ Benjamin Agarao Jr.: 25 projects, ₱2,421,880,845.65
✅ Benny Abante: 0 projects (empty cache created)
✅ Bernadette Herrera: 941 projects, ₱25,288,860,925,197,218,217,984.00
✅ Bernadette S. Barbers: 746 projects, ₱22,559,354,989.45
✅ Bienvenido Abante: 0 projects (empty cache created)
✅ Bienvenido Abante Jr.: 0 projects (empty cache created)
✅ Bojie Dy: 29 projects, ₱2,459,501,716.77
✅ Bong Rivera: 90 projects, ₱5,877,524,673.32
✅ Braeden Joseph Biron: 0 projects (empty cache created)
✅ Brian Yamsuan: 26 projects, ₱5,516,851,258,506,099,032,064.00
✅ Bryan Revilla: 52 projects, ₱3,207,847,038.23
✅ Camille Villar: 0 projects (empty cache created)
✅ Carl Nicolas Cari: 922 projects, ₱26,170,675,644.98
✅ Carlito Marquez: 590 projects, ₱10,219,940,111.09
✅ Carlos Charlie Cojuangco: 14 projects, ₱1,256,319,748.55
✅ Carlos Loria: 1194 projects, ₱42,541,870,416.16
✅ Carmelo Lazatin II: 1894 projects, ₱28,930,130,756.36
✅ Caroline Agyao: 1451 projects, ₱47,161,416,961,330,251,825,152.00
✅ Cesar Jimenez Jr.: 0 projects (empty cache created)
✅ Cheeno Almario: 752 projects, ₱5,515,197,877,331,138,969,600.00
✅ Cherry Deloso-Montalla: 2 projects, ₱6,424,920.04
✅ Ching Bernos: 1365 projects, ₱302,800,433,361,522,211,684,352.00
✅ Christian Unabia: 912 projects, ₱22,755,710,890.12
✅ Christian Yap: 664 projects, ₱16,919,100,524.07
✅ Christopherson Yap: 363 projects, ₱8,788,969,776.05
✅ Ciriaco Gato Jr.: 24 projects, ₱183,874,786.29
✅ Claude Bautista: 459 projects, ₱20,953,083,196.49
✅ Conrado Estrella III: 1061 projects, ₱180,898,769,736,270,178,418,688.00
✅ Corazon Malanyaon: 1 projects, ₱34,719,508.32
✅ Cyrille Abueg: 34 projects, ₱2,962,977,781.18
✅ Dahlia Loyola: 0 projects (empty cache created)
✅ Dale Corvera: 98 projects, ₱4,204,629,470.28
✅ Dale Gonzalo Malapitan: 0 projects (empty cache created)
✅ Dan Fernandez: 655 projects, ₱15,995,591,185.79
✅ Dania A. Loyola: 154 projects, ₱4,253,044,703.90
✅ Danilo Domingo: 2273 projects, ₱65,797,700,079.10
✅ Dante S. Garcia: 916 projects, ₱27,824,078,424.57
✅ Daphne Lagon: 1 projects, ₱115,799,830.60
✅ Datu Roonie Sinsuat Sr.: 0 projects (empty cache created)
✅ David Catarina Suarez: 879 projects, ₱20,053,920,825.59
✅ David Suarez: 0 projects (empty cache created)
✅ De Carlo Uy: 492 projects, ₱16,069,103,000.71
✅ Dean Asistio: 0 projects (empty cache created)
✅ Deogracias Victor Savellano: 615 projects, ₱9,360,296,004.27
✅ Dibu Tuan: 436 projects, ₱14,179,315,524.04
✅ Diego Ty: 2 projects, ₱4,370,327.76
✅ Dimszar Sali: 116 projects, ₱7,601,000,561.15
✅ Dino Tanjuatco: 776 projects, ₱17,336,741,655.81
✅ Ditas Ramos: 11 projects, ₱1,066,457,885.79
✅ Divina Grace Yu: 1153 projects, ₱32,509,597,453.33
✅ Doris E. Maniquiz: 618 projects, ₱18,734,664,177.08
✅ Duke Frasco: 976 projects, ₱16,823,751,647.12
✅ Dulce Ann Hofer: 0 projects (empty cache created)
✅ Ed Christopher S. Go: 717 projects, ₱9,446,752,807.47
✅ Edcel Lagman: 519 projects, ₱30,536,189,784.48
✅ Eddie Villanueva: 788 projects, ₱25,776,908,408,511,271,010,304.00
✅ Eddiebong Plaza: 725 projects, ₱29,657,613,242.70
✅ Edgar Chatto: 3 projects, ₱11,426,675.13
✅ Edgar Erice: 597 projects, ₱44,526,728,538,241,099,628,544.00
✅ Edgar Mary Sarmiento: 0 projects (empty cache created)
✅ Edsel Galeos: 4 projects, ₱123,106,185.13
✅ Eduardo R. Gullas: 3 projects, ₱188,545,225.06
✅ Eduardo Rama Jr.: 0 projects (empty cache created)
✅ Edward M. Maceda: 0 projects (empty cache created)
✅ Edwin Olivarez: 0 projects (empty cache created)
✅ Eileen Ermita-Buhain: 1260 projects, ₱27,162,335,252,599,283,908,608.00
✅ Eleandro Jesus Madrona: 1612 projects, ₱326,560,009,547,959,284,793,344.00
✅ Eleanor Begtang: 747 projects, ₱86,269,842,115,039,646,973,952.00
✅ Elias Bulut Jr.: 65 projects, ₱1,067,311,953.79
✅ Elisa Olga Kho: 1 projects, ₱139,925,000.00
✅ Elizaldy Salcedo Co: 3405 projects, ₱5,515,327,333,464,461,541,376.00
✅ Elpidio F. Barzaga Jr.: 40 projects, ₱2,042,839,363.96
✅ Emeng Pascual: 151 projects, ₱15,551,790,898.55
✅ Emilio Bernardino Yulo III: 1144 projects, ₱27,157,160,188,785,618,583,552.00
✅ Emmanuel Billones: 622 projects, ₱13,235,250,833.60
✅ Emmanuel Iway: 506 projects, ₱6,888,474,868.35
✅ Emmanuel Madrona: 106 projects, ₱4,056,821,525.99
✅ Emmarie Ouano-Dizon: 779 projects, ₱15,083,616,204.69
✅ Eric Martinez: 0 projects (empty cache created)
✅ Eric Olivarez: 178 projects, ₱6,629,672,792.37
✅ Eric Singson: 927 projects, ₱25,223,208,810.20
✅ Eric Yap: 2243 projects, ₱202,913,507,736,858,832,928,768.00
✅ Erico Aristotle Aumentado: 1157 projects, ₱22,762,685,780,909,237,469,184.00
✅ Ernesto M. Dionisio Jr.: 0 projects (empty cache created)
✅ Ernix Dionisio: 8888 projects, ₱210,990,964,192,733,579,706,368.00
✅ Esmael Mangudadatu: 0 projects (empty cache created)
✅ Estrelita Suansing: 0 projects (empty cache created)
✅ Eugenio Angelo Barba: 1078 projects, ₱29,464,060,131.43
✅ Eulogio Rodriguez: 879 projects, ₱20,003,272,146.21
✅ Evelina Escudero: 755 projects, ₱40,017,517,075.16
✅ Farouk Macarambon: 0 projects (empty cache created)
✅ Faustino A. Dy V: 1010 projects, ₱16,637,264,823.78
✅ Faustino Dy III: 28 projects, ₱155,987,100.33
✅ Ferdinand Hernandez: 1426 projects, ₱22,918,437,342.52
✅ Ferdinand Martin Gomez Romualdez: 731 projects, ₱29,021,509,705.77
✅ Ferjenel Biron: 1532 projects, ₱25,132,870,878.72
✅ Fernando Cabredo: 809 projects, ₱22,800,716,951.01
✅ Fidel Nograles: 0 projects (empty cache created)
✅ Francis Gerald A. Abaya: 802 projects, ₱28,653,009,971.32
✅ Francisco Jose Matugas II: 710 projects, ₱20,153,082,773.72
✅ Franz Josef George E. Alvarez: 38 projects, ₱3,169,599,124.25
✅ Franz Pumaren: 0 projects (empty cache created)
✅ Fredenil Castro: 660 projects, ₱16,125,881,404.26
✅ Frederick Abueg: 1018 projects, ₱35,386,190,937.90
✅ Gabriel Bordado Jr.: 609 projects, ₱11,874,424,605.76
✅ Genaro Alvarez: 0 projects (empty cache created)
✅ Gerald Anthony V. Gullas Jr.: 872 projects, ₱15,657,622,365.04
✅ Gerald Galang: 293 projects, ₱8,516,257,200.83
✅ Geraldine Joan Reyes Rosales: 354 projects, ₱5,571,043,105.08
✅ Geraldine Roman: 826 projects, ₱17,615,858,829.36
✅ Gerardo J. Espina Jr.: 1273 projects, ₱2,705,111,308,980,694,548,480.00
✅ Gerardo Valmayor: 35 projects, ₱456,599,194.10
✅ Gil Acosta: 27 projects, ₱3,115,772,227.29
✅ Gil Acosta Jr.: 844 projects, ₱49,565,327,429.83
✅ Gina de Venecia: 802 projects, ₱15,575,970,503.58
✅ Glona Labadlabad: 0 projects (empty cache created)
✅ Gloria Irene Labadlabad: 628 projects, ₱15,780,820,940.66
✅ Gloria Macapagal Arroyo: 1089 projects, ₱24,196,768,324.04
✅ Gustavo Tambunting: 0 projects (empty cache created)
✅ Gwendolyn Garcia: 826 projects, ₱21,543,421,423.99
✅ Harris Ongchuan: 563 projects, ₱16,001,659,564.99
✅ Hector Sanchez: 238 projects, ₱2,914,738,245.24
✅ Henry Oaminal: 890 projects, ₱29,326,782,103.55
✅ Henry Villarica: 0 projects (empty cache created)
✅ Horacio Suansing Jr.: 894 projects, ₱18,241,621,828.67
✅ Ian Amatong: 764 projects, ₱27,825,972,907.70
✅ Ian Dy: 0 projects (empty cache created)
✅ Isagani Amatong: 0 projects (empty cache created)
✅ Isidro Lumayag: 66 projects, ₱4,125,075,704.58
✅ Isidro Ungab: 7 projects, ₱195,070,613.93
✅ Jack Duavit: 845 projects, ₱14,622,674,472.58
✅ Jaime Cojuangco: 1942 projects, ₱67,050,825,340.76
✅ Jaime Fresnedi: 496 projects, ₱12,022,711,392,396,229,214,208.00
✅ Janette Garin: 1363 projects, ₱23,668,711,513.09
✅ Janice Zamora Salimbangon: 9 projects, ₱466,423,722.78
✅ Jason P. Almonte: 893 projects, ₱27,364,231,129.85
✅ Javier Miguel L. Benitez: 527 projects, ₱10,701,776,173.46
✅ Jay Khonghun: 1143 projects, ₱39,230,305,760.18
✅ Jec-Jec Villa II: 110 projects, ₱1,230,531,744.65
✅ Jeffrey Khonghun: 0 projects (empty cache created)
✅ Jeffrey P. Ferrer: 523 projects, ₱8,605,964,858.78
✅ Jernie Jett Nisay: 74 projects, ₱4,535,051,196.93
✅ Jerry Perez: 146 projects, ₱5,411,286,063.84
✅ Jesus Crispin Remulla: 17 projects, ₱134,091,687.80
✅ Jeyzel Victoria Yu: 746 projects, ₱17,791,892,351.64
✅ Jocelyn Limkaichong: 77 projects, ₱864,653,552.83
✅ Joel Almario: 3 projects, ₱6,750,040.76
✅ Joel R. Chua: 0 projects (empty cache created)
✅ Joel Sacdalan: 0 projects (empty cache created)
✅ Joet Garcia: 0 projects (empty cache created)
✅ Joey Salceda: 5 projects, ₱298,967,234.17
✅ John Flores: 1 projects, ₱1,998,094.97
✅ John Marvin Nieto: 0 projects (empty cache created)
✅ John Rey Tiangco: 0 projects (empty cache created)
✅ John Tracy Cagas: 4 projects, ₱109,097,162.83
✅ Johnny Pimentel: 595 projects, ₱20,536,309,035.52
✅ Jojo Lara: 1 projects, ₱323,556,222.74
✅ Jonas Cortes: 1 projects, ₱9,701,740.00
✅ Jonathan Keith Flores: 1352 projects, ₱42,254,262,826.31
✅ Josal Fortuno: 7 projects, ₱212,360,175.65
✅ Jose Alvarez: 0 projects (empty cache created)
✅ Jose Antonio Sy-Alvarado: 2 projects, ₱188,786,177.09
✅ Jose Arturo Garcia Jr.: 10 projects, ₱293,286,513.16
✅ Jose Francisco Benitez: 56 projects, ₱1,090,347,687.18
✅ Jose Manuel Alba: 1201 projects, ₱55,215,893,956.56
✅ Jose Maria Zubiri Jr.: 0 projects (empty cache created)
✅ Jose Ong Jr.: 0 projects (empty cache created)
✅ Jose Tejada: 0 projects (empty cache created)
✅ Josefina Tallado: 599 projects, ₱14,953,955,637.70
✅ Joselito Sacdalan: 828 projects, ₱12,787,746,916.13
✅ Joseph Bernos: 96 projects, ₱3,528,652,369.03
✅ Joseph Gilbert Violago: 1066 projects, ₱19,005,440,307.99
✅ Joseph Lara: 0 projects (empty cache created)
✅ Joseph S. Tan: 1222 projects, ₱21,560,286,092.09
✅ Josephine Lacson-Noel: 0 projects (empty cache created)
✅ Josephine Y. Ramirez-Sato: 187 projects, ₱2,731,172,745.83
✅ Joy Tambuting: 0 projects (empty cache created)
✅ Juan Pablo Bondoc: 115 projects, ₱10,513,127,368.72
✅ Julienne Baronda: 8 projects, ₱285,041,429.99
✅ Juliet Marie Ferrer: 64 projects, ₱941,074,638.81
✅ Juliette Uy: 0 projects (empty cache created)
✅ Jun Babasa: 7 projects, ₱495,001,702.39
✅ Jun Gato: 499 projects, ₱2,744,247,443,355,799,126,016.00
✅ Junie Cua: 1 projects, ₱1,744,728.92
✅ Jurdin Jesus Romualdo: 558 projects, ₱13,537,448,888.07
✅ Katrina Reiko Chua-Tai: 1824 projects, ₱56,686,423,603.75
✅ Keith Micah Tan: 1491 projects, ₱40,844,911,180,445,466,492,928.00
✅ Kenneth Gatchalian: 361 projects, ₱26,473,515,879,217,871,454,208.00
✅ Khymer Adan Olaso: 0 projects (empty cache created)
✅ Kid Peña: 0 projects (empty cache created)
✅ Kristine Alexie Besas-Tutor: 41 projects, ₱1,981,915,029.90
✅ Kristine Singson: 4 projects, ₱40,329,723.14
✅ Kristine Singson-Meehan: 14 projects, ₱510,389,641.05
✅ Laarni Roque: 628 projects, ₱29,392,041,185.31
✅ Lani Mercado-Revilla: 20 projects, ₱1,585,172,353.05
✅ Lawrence Lemuel Fortun: 926 projects, ₱46,645,826,295.82
✅ Len Alonte: 0 projects (empty cache created)
✅ Leo Rafael Cueva: 48 projects, ₱470,473,928.43
✅ Leonel Domo-ong Ceniza: 514 projects, ₱8,482,872,985.34
✅ Lianda Bolilia: 2571 projects, ₱43,725,511,200.05
✅ Linabelle Villarica: 8 projects, ₱337,034,503.43
✅ Lito Atienza: 0 projects (empty cache created)
✅ Lolita Javier: 1018 projects, ₱28,644,565,107.18
✅ Lord Allan Jay Velasco: 1128 projects, ₱27,161,146,839,937,847,394,304.00
✅ Lordan Suan: 205 projects, ₱7,137,526,840.63
✅ Loren Legarda: 1249 projects, ₱79,319,226,539,880,690,483,200.00
✅ Lorenz Defensor: 1167 projects, ₱20,525,782,438.23
✅ Loreto S. Amante: 847 projects, ₱22,497,720,629.52
✅ Lorna Bautista-Bandigan: 91 projects, ₱1,948,646,812.66
✅ Lorna Silverio: 374 projects, ₱22,664,095,768.81
✅ Lucille Nava: 723 projects, ₱12,537,630,582.59
✅ Lucy Torres-Gomez: 4 projects, ₱198,688,519.90
✅ Luis A. Ferrer IV: 0 projects (empty cache created)
✅ Luis Campos: 0 projects (empty cache created)
✅ Luis Raymund Villafuerte: 595 projects, ₱23,315,498,935.35
✅ Luis Raymund Villafuerte Jr.: 2 projects, ₱61,967,633.85
✅ Luisa Lloren Cuaresma: 1544 projects, ₱50,334,957,911.92
✅ Luz Mercado: 432 projects, ₱9,930,437,178,363,845,017,600.00
✅ Ma. Isabel L. Sagarbarria: 998 projects, ₱23,589,486,260.25
✅ Ma. Lourdes P. Aggabao: 265 projects, ₱7,062,335,419.34
✅ Ma. Lucille Nava: 29 projects, ₱1,011,296,526.52
✅ Ma. Theresa Collantes: 1611 projects, ₱25,269,317,594.86
✅ Maan Teodoro: 0 projects (empty cache created)
✅ Malou Acosta: 0 projects (empty cache created)
✅ Manny Lopez: 0 projects (empty cache created)
✅ Manuel Jose Mendoza Dalipe: 0 projects (empty cache created)
✅ Manuel Sagarbarria: 129 projects, ₱1,679,709,253.68
✅ Manuel Wowo Fortes Jr.: 711 projects, ₱29,563,021,414.71
✅ Manuel Zubiri: 995 projects, ₱38,527,034,219.44
✅ Marcy Teodoro: 0 projects (empty cache created)
✅ Maria Alana Samantha Santos: 0 projects (empty cache created)
✅ Maria Angela Garcia: 204 projects, ₱9,201,227,283.10
✅ Maria Carmen Zamora: 1552 projects, ₱43,803,446,884.09
✅ Maria Fe Abunda: 1438 projects, ₱38,581,335,834.33
✅ Maria Lourdes Arroyo: 158 projects, ₱2,021,983,004.92
✅ Maria Theresa Collantes: 1 projects, ₱1,940,614.01
✅ Maria Victoria Aumentado: 1648 projects, ₱49,931,996,762.04
✅ Maricel Natividad: 4 projects, ₱192,426,576.74
✅ Marie Bernadette Escudero: 2 projects, ₱616,368,742.67
✅ Mario Vittorio Mariño: 21 projects, ₱2,462,644,057.02
✅ Marisol Aragones-Sampelo: 3 projects, ₱226,020,653.11
✅ Marisol Panotes: 101 projects, ₱2,335,566,619.09
✅ Marissa Andaya: 3 projects, ₱185,540,878.54
✅ Mark Anthony Santos: 478 projects, ₱9,771,310,324.71
✅ Mark Cojuangco: 1317 projects, ₱19,856,307,247.61
✅ Marlo Bancoro: 672 projects, ₱16,708,569,275.86
✅ Marlyn Hofer-Hasim: 686 projects, ₱14,376,221,222.71
✅ Marlyn Primicias-Agabas: 137 projects, ₱7,849,143,156.89
✅ Marvey Mariño: 0 projects (empty cache created)
✅ Marvin Rillo: 0 projects (empty cache created)
✅ Maximo Dalog Jr.: 1195 projects, ₱86,548,798,208,775,313,948,672.00
✅ Mercedes Alvarez: 700 projects, ₱18,402,074,356.87
✅ Michael Goricetta: 0 projects (empty cache created)
✅ Michael John Duavit: 0 projects (empty cache created)
✅ Midy Cua: 826 projects, ₱9,653,274,809,249,063,501,824.00
✅ Miguel Luis Villafuerte: 2 projects, ₱185,499,743.10
✅ Mika Suansing: 1785 projects, ₱28,682,114,277.49
✅ Mikee Romero: 0 projects (empty cache created)
✅ Mikey Arroyo: 0 projects (empty cache created)
✅ Mikki Violago: 1 projects, ₱493,368.05
✅ Miro Quimbo: 1103 projects, ₱78,698,226,079,535,133,097,984.00
✅ Mitzi Cajayon: 0 projects (empty cache created)
✅ Mohamad Khalid Quibranza-Dimaporo: 1853 projects, ₱46,950,682,710.69
✅ Mohamad Paglas: 0 projects (empty cache created)
✅ Monique Lagdameo: 46 projects, ₱27,781,580,201,343,047,434,240.00
🚀 Generating congressman-ranking.json cache...
📁 Found 421 congressman caches
📈 Top 10 Congressmen by Project Count (preview):
1. Ernix Dionisio: 8888 projects, ₱210,990,964,192,733,579,706,368.00 (🌊 3981 flood projects)
2. Elizaldy Salcedo Co: 3405 projects, ₱5,515,327,333,464,461,541,376.00 (🌊 1635 flood projects)
3. Lianda Bolilia: 2571 projects, ₱43,725,511,200.05 (🌊 94 flood projects)
4. Sandro Marcos: 2409 projects, ₱44,898,532,904.68 (🌊 193 flood projects)
5. Arjo Atayde: 2396 projects, ₱66,132,168,494.05 (🌊 674 flood projects)
6. Danilo Domingo: 2273 projects, ₱65,797,700,079.10 (🌊 431 flood projects)
7. Eric Yap: 2243 projects, ₱202,913,507,736,858,832,928,768.00 (🌊 487 flood projects)
8. Bai Sandra Sema: 2081 projects, ₱11,278,741,804,980,073,660,416.00 (🌊 500 flood projects)
9. Odie Tarriela: 1974 projects, ₱30,132,133,059,050,063,527,936.00 (🌊 819 flood projects)
10. Jaime Cojuangco: 1942 projects, ₱67,050,825,340.76 (🌊 448 flood projects)