-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcandidator_example_data_big.yaml
6075 lines (6075 loc) · 195 KB
/
candidator_example_data_big.yaml
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
- fields:
date_joined: 2013-09-26 11:54:38.163519
email: [email protected]
first_name: ''
groups: []
is_active: true
is_staff: true
is_superuser: true
last_login: 2013-09-30 12:17:25.823441
last_name: ''
password: sha1$a56bb$394817a2092dd034ed0c52a3500607280e5db144
user_permissions: []
username: admin
model: auth.user
pk: 1
- fields: {created: !!timestamp '2013-09-26 11:54:38.333573', key: a, user: 1}
model: tastypie.apikey
pk: 1
- fields: {created_at: !!timestamp '2013-09-30 19:04:24.251753', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "2\xAA Circunscripci\xF3n Antofagasta", owner: 1, published: true, should_display_empty_personal_data: true,
slug: 2a-circunscripcion-antofagasta, updated_at: !!timestamp '2013-10-01 09:22:07.778381',
use_default_media_naranja_option: true}
model: elections.election
pk: 1
- fields: {created_at: !!timestamp '2013-09-30 19:04:41.233137', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "4\xAA Circunscripci\xF3n Coquimbo", owner: 1, published: true, should_display_empty_personal_data: true,
slug: 4a-circunscripcion-coquimbo, updated_at: !!timestamp '2013-10-01 09:22:08.189567',
use_default_media_naranja_option: true}
model: elections.election
pk: 2
- fields: {created_at: !!timestamp '2013-09-30 19:04:55.807254', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "7\xAA Circunscripci\xF3n Santiago Poniente", owner: 1, published: true,
should_display_empty_personal_data: true, slug: 7a-circunscripcion-santiago-poniente,
updated_at: !!timestamp '2013-10-01 09:22:08.466767', use_default_media_naranja_option: true}
model: elections.election
pk: 3
- fields: {created_at: !!timestamp '2013-09-30 19:05:13.570999', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "8\xAA Circunscripci\xF3n Santiago Oriente", owner: 1, published: true,
should_display_empty_personal_data: true, slug: 8a-circunscripcion-santiago-oriente,
updated_at: !!timestamp '2013-10-01 09:22:08.654753', use_default_media_naranja_option: true}
model: elections.election
pk: 4
- fields: {created_at: !!timestamp '2013-09-30 19:05:37.957817', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "9\xAA Circunscripci\xF3n O'Higgins", owner: 1, published: true, should_display_empty_personal_data: true,
slug: 9a-circunscripcion-ohiggins, updated_at: !!timestamp '2013-10-01 09:22:08.854344',
use_default_media_naranja_option: true}
model: elections.election
pk: 5
- fields: {created_at: !!timestamp '2013-09-30 19:05:52.467387', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "12\xAA Circunscripci\xF3n Biob\xEDo Costa", owner: 1, published: true,
should_display_empty_personal_data: true, slug: 12a-circunscripcion-biobio-costa,
updated_at: !!timestamp '2013-10-01 09:22:09.066918', use_default_media_naranja_option: true}
model: elections.election
pk: 6
- fields: {created_at: !!timestamp '2013-09-30 19:06:12.393436', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "13\xAA Circunscripci\xF3n Biob\xEDo Cordillera", owner: 1, published: true,
should_display_empty_personal_data: true, slug: 13a-circunscripcion-biobio-cordillera,
updated_at: !!timestamp '2013-10-01 09:22:09.299828', use_default_media_naranja_option: true}
model: elections.election
pk: 7
- fields: {created_at: !!timestamp '2013-09-30 19:06:26.531421', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "16\xAA Circunscripci\xF3n Los R\xEDos", owner: 1, published: true, should_display_empty_personal_data: true,
slug: 16a-circunscripcion-los-rios, updated_at: !!timestamp '2013-10-01 09:22:09.455482',
use_default_media_naranja_option: true}
model: elections.election
pk: 8
- fields: {created_at: !!timestamp '2013-09-30 19:06:44.334274', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "17\xAA Circunscripci\xF3n Los Lagos", owner: 1, published: true, should_display_empty_personal_data: true,
slug: 17a-circunscripcion-los-lagos, updated_at: !!timestamp '2013-10-01 09:22:09.621702',
use_default_media_naranja_option: true}
model: elections.election
pk: 9
- fields: {created_at: !!timestamp '2013-09-30 19:06:56.904327', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "19\xAA Circunscripci\xF3n Magallanes", owner: 1, published: true, should_display_empty_personal_data: true,
slug: 19a-circunscripcion-magallanes, updated_at: !!timestamp '2013-10-01 09:22:09.777336',
use_default_media_naranja_option: true}
model: elections.election
pk: 10
- fields: {created_at: !!timestamp '2013-09-30 19:07:43.712127', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xB0 1", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-n-1, updated_at: !!timestamp '2013-10-01 09:22:09.932947', use_default_media_naranja_option: true}
model: elections.election
pk: 11
- fields: {created_at: !!timestamp '2013-09-30 19:08:01.294072', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xB0 2", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-n-2, updated_at: !!timestamp '2013-10-01 09:22:10.088123', use_default_media_naranja_option: true}
model: elections.election
pk: 12
- fields: {created_at: !!timestamp '2013-09-30 19:08:19.340636', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 3", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-3, updated_at: !!timestamp '2013-10-01 09:22:10.243515', use_default_media_naranja_option: true}
model: elections.election
pk: 13
- fields: {created_at: !!timestamp '2013-09-30 19:08:36.158114', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 4", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-4, updated_at: !!timestamp '2013-10-01 09:22:10.387763', use_default_media_naranja_option: true}
model: elections.election
pk: 14
- fields: {created_at: !!timestamp '2013-09-30 19:08:55.562085', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 5", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-5, updated_at: !!timestamp '2013-10-01 09:22:10.532203', use_default_media_naranja_option: true}
model: elections.election
pk: 15
- fields: {created_at: !!timestamp '2013-09-30 19:09:11.320343', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 6", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-6, updated_at: !!timestamp '2013-10-01 09:22:10.709614', use_default_media_naranja_option: true}
model: elections.election
pk: 16
- fields: {created_at: !!timestamp '2013-09-30 19:09:25.129610', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 7", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-7, updated_at: !!timestamp '2013-10-01 09:22:10.898160', use_default_media_naranja_option: true}
model: elections.election
pk: 17
- fields: {created_at: !!timestamp '2013-09-30 19:09:40.493937', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 8", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-8, updated_at: !!timestamp '2013-10-01 09:22:11.053620', use_default_media_naranja_option: true}
model: elections.election
pk: 18
- fields: {created_at: !!timestamp '2013-09-30 19:09:58.026440', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 9", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-9, updated_at: !!timestamp '2013-10-01 09:22:11.242205', use_default_media_naranja_option: true}
model: elections.election
pk: 19
- fields: {created_at: !!timestamp '2013-09-30 19:10:12.518638', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 10", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-10, updated_at: !!timestamp '2013-10-01 09:22:11.410622', use_default_media_naranja_option: true}
model: elections.election
pk: 20
- fields: {created_at: !!timestamp '2013-09-30 19:10:28.851028', custom_style: '',
date: '', description: '', highlighted: false, information_source: '', logo: '',
name: "Distrito N\xBA 11", owner: 1, published: true, should_display_empty_personal_data: true,
slug: distrito-no-11, updated_at: !!timestamp '2013-10-01 09:22:11.577386', use_default_media_naranja_option: true}
model: elections.election
pk: 21
- fields:
answers: []
created_at: 2013-09-30 19:04:31.365215
election: 1
has_answered: true
name: Manuel Rojas
photo: ''
slug: manuel-rojas
updated_at: 2013-09-30 19:04:31.365264
model: elections.candidate
pk: 1
- fields:
answers: []
created_at: 2013-09-30 19:04:32.588556
election: 1
has_answered: true
name: Alejandro Guillier
photo: ''
slug: alejandro-guillier
updated_at: 2013-09-30 19:04:32.588606
model: elections.candidate
pk: 2
- fields:
answers: []
created_at: 2013-09-30 19:04:33.930777
election: 1
has_answered: true
name: Pedro Araya
photo: ''
slug: pedro-araya
updated_at: 2013-09-30 19:04:33.930822
model: elections.candidate
pk: 3
- fields:
answers: []
created_at: 2013-09-30 19:04:35.639173
election: 1
has_answered: true
name: Gisela Contreras
photo: ''
slug: gisela-contreras
updated_at: 2013-09-30 19:04:35.639214
model: elections.candidate
pk: 4
- fields:
answers: []
created_at: 2013-09-30 19:04:37.015317
election: 1
has_answered: true
name: Carlos Cantero
photo: ''
slug: carlos-cantero
updated_at: 2013-09-30 19:04:37.015358
model: elections.candidate
pk: 5
- fields:
answers: []
created_at: 2013-09-30 19:04:38.338857
election: 1
has_answered: true
name: Daniel Guevara
photo: ''
slug: daniel-guevara
updated_at: 2013-09-30 19:04:38.338898
model: elections.candidate
pk: 6
- fields:
answers: []
created_at: 2013-09-30 19:04:39.701832
election: 1
has_answered: true
name: Jimena Orrego
photo: ''
slug: jimena-orrego
updated_at: 2013-09-30 19:04:39.701879
model: elections.candidate
pk: 7
- fields:
answers: []
created_at: 2013-09-30 19:04:49.586085
election: 2
has_answered: true
name: Gonzalo Uriarte
photo: ''
slug: gonzalo-uriarte
updated_at: 2013-09-30 19:04:49.586126
model: elections.candidate
pk: 8
- fields:
answers: []
created_at: 2013-09-30 19:04:50.819226
election: 2
has_answered: true
name: Mario Bertolino
photo: ''
slug: mario-bertolino
updated_at: 2013-09-30 19:04:50.819265
model: elections.candidate
pk: 9
- fields:
answers: []
created_at: 2013-09-30 19:04:52.163591
election: 2
has_answered: true
name: Jorge Pizarro
photo: ''
slug: jorge-pizarro
updated_at: 2013-09-30 19:04:52.163639
model: elections.candidate
pk: 10
- fields:
answers: []
created_at: 2013-09-30 19:04:53.397184
election: 2
has_answered: true
name: "Adriana Mu\xF1oz"
photo: ''
slug: adriana-munoz
updated_at: 2013-09-30 19:04:53.397224
model: elections.candidate
pk: 11
- fields:
answers: []
created_at: 2013-09-30 19:04:54.662401
election: 2
has_answered: true
name: Luis Vega
photo: ''
slug: luis-vega
updated_at: 2013-09-30 19:04:54.662466
model: elections.candidate
pk: 12
- fields:
answers: []
created_at: 2013-09-30 19:05:02.735129
election: 3
has_answered: true
name: Pablo Zalaquett
photo: ''
slug: pablo-zalaquett
updated_at: 2013-09-30 19:05:02.735169
model: elections.candidate
pk: 13
- fields:
answers: []
created_at: 2013-09-30 19:05:03.858538
election: 3
has_answered: true
name: "Andr\xE9s Allamand"
photo: ''
slug: andres-allamand
updated_at: 2013-09-30 19:05:03.858579
model: elections.candidate
pk: 14
- fields:
answers: []
created_at: 2013-09-30 19:05:05.324951
election: 3
has_answered: true
name: Alberto Undurraga
photo: ''
slug: alberto-undurraga
updated_at: 2013-09-30 19:05:05.324996
model: elections.candidate
pk: 15
- fields:
answers: []
created_at: 2013-09-30 19:05:06.644953
election: 3
has_answered: true
name: Guido Girardi
photo: ''
slug: guido-girardi
updated_at: 2013-09-30 19:05:06.644995
model: elections.candidate
pk: 16
- fields:
answers: []
created_at: 2013-09-30 19:05:08.078096
election: 3
has_answered: true
name: Wilfredo Alfsen
photo: ''
slug: wilfredo-alfsen
updated_at: 2013-09-30 19:05:08.078136
model: elections.candidate
pk: 17
- fields:
answers: []
created_at: 2013-09-30 19:05:09.441373
election: 3
has_answered: true
name: "Carlos Mu\xF1oz"
photo: ''
slug: carlos-munoz
updated_at: 2013-09-30 19:05:09.441422
model: elections.candidate
pk: 18
- fields:
answers: []
created_at: 2013-09-30 19:05:10.719784
election: 3
has_answered: true
name: "Eduardo Guti\xE9rrez"
photo: ''
slug: eduardo-gutierrez
updated_at: 2013-09-30 19:05:10.719832
model: elections.candidate
pk: 19
- fields:
answers: []
created_at: 2013-09-30 19:05:12.403121
election: 3
has_answered: true
name: Sergio Flores
photo: ''
slug: sergio-flores
updated_at: 2013-09-30 19:05:12.403162
model: elections.candidate
pk: 20
- fields:
answers: []
created_at: 2013-09-30 19:05:22.293157
election: 4
has_answered: true
name: Laurence Golborne
photo: ''
slug: laurence-golborne
updated_at: 2013-09-30 19:05:22.293207
model: elections.candidate
pk: 21
- fields:
answers: []
created_at: 2013-09-30 19:05:24.330386
election: 4
has_answered: true
name: "Manuel Jos\xE9 Ossand\xF3n"
photo: ''
slug: manuel-jose-ossandon
updated_at: 2013-09-30 19:05:24.330437
model: elections.candidate
pk: 22
- fields:
answers: []
created_at: 2013-09-30 19:05:25.777266
election: 4
has_answered: true
name: Soledad Alvear
photo: ''
slug: soledad-alvear
updated_at: 2013-09-30 19:05:25.777311
model: elections.candidate
pk: 23
- fields:
answers: []
created_at: 2013-09-30 19:05:28.187371
election: 4
has_answered: true
name: Carlos Montes
photo: ''
slug: carlos-montes
updated_at: 2013-09-30 19:05:28.187418
model: elections.candidate
pk: 24
- fields:
answers: []
created_at: 2013-09-30 19:05:29.835479
election: 4
has_answered: true
name: Esteban Silva
photo: ''
slug: esteban-silva
updated_at: 2013-09-30 19:05:29.835529
model: elections.candidate
pk: 25
- fields:
answers: []
created_at: 2013-09-30 19:05:31.858722
election: 4
has_answered: true
name: "Jos\xE9 Antonio Carre\xF1o"
photo: ''
slug: jose-antonio-carreno
updated_at: 2013-09-30 19:05:31.858774
model: elections.candidate
pk: 26
- fields:
answers: []
created_at: 2013-09-30 19:05:33.324179
election: 4
has_answered: true
name: Juan Guillermo Ossa
photo: ''
slug: juan-guillermo-ossa
updated_at: 2013-09-30 19:05:33.324222
model: elections.candidate
pk: 27
- fields:
answers: []
created_at: 2013-09-30 19:05:34.522074
election: 4
has_answered: true
name: "Patricio Guzm\xE1n"
photo: ''
slug: patricio-guzman
updated_at: 2013-09-30 19:05:34.522113
model: elections.candidate
pk: 28
- fields:
answers: []
created_at: 2013-09-30 19:05:35.678132
election: 4
has_answered: true
name: "Iv\xE1n Carrasco"
photo: ''
slug: ivan-carrasco
updated_at: 2013-09-30 19:05:35.678172
model: elections.candidate
pk: 29
- fields:
answers: []
created_at: 2013-09-30 19:05:36.843480
election: 4
has_answered: true
name: "Luis Mariano Rend\xF3n"
photo: ''
slug: luis-mariano-rendon
updated_at: 2013-09-30 19:05:36.843519
model: elections.candidate
pk: 30
- fields:
answers: []
created_at: 2013-09-30 19:05:46.577650
election: 5
has_answered: true
name: "Alejandro Garc\xEDa-Huidobro"
photo: ''
slug: alejandro-garcia-huidobro
updated_at: 2013-09-30 19:05:46.577708
model: elections.candidate
pk: 31
- fields:
answers: []
created_at: 2013-09-30 19:05:47.734159
election: 5
has_answered: true
name: Alberto Cardemil
photo: ''
slug: alberto-cardemil
updated_at: 2013-09-30 19:05:47.734199
model: elections.candidate
pk: 32
- fields:
answers: []
created_at: 2013-09-30 19:05:49.054843
election: 5
has_answered: true
name: Juan Carlos Latorre
photo: ''
slug: juan-carlos-latorre
updated_at: 2013-09-30 19:05:49.054882
model: elections.candidate
pk: 33
- fields:
answers: []
created_at: 2013-09-30 19:05:50.210845
election: 5
has_answered: true
name: Juan Pablo Letelier
photo: ''
slug: juan-pablo-letelier
updated_at: 2013-09-30 19:05:50.210886
model: elections.candidate
pk: 34
- fields:
answers: []
created_at: 2013-09-30 19:05:51.364922
election: 5
has_answered: true
name: "Luis Felipe Garc\xEDa"
photo: ''
slug: luis-felipe-garcia
updated_at: 2013-09-30 19:05:51.364968
model: elections.candidate
pk: 35
- fields:
answers: []
created_at: 2013-09-30 19:06:00.466741
election: 6
has_answered: true
name: Jacqueline van Rysselberghe
photo: ''
slug: jacqueline-van-rysselberghe
updated_at: 2013-09-30 19:06:00.466781
model: elections.candidate
pk: 36
- fields:
answers: []
created_at: 2013-09-30 19:06:01.932888
election: 6
has_answered: true
name: Daniel Contesse
photo: ''
slug: daniel-contesse
updated_at: 2013-09-30 19:06:01.932928
model: elections.candidate
pk: 37
- fields:
answers: []
created_at: 2013-09-30 19:06:03.355023
election: 6
has_answered: true
name: Alejandro Navarro
photo: ''
slug: alejandro-navarro
updated_at: 2013-09-30 19:06:03.355076
model: elections.candidate
pk: 38
- fields:
answers: []
created_at: 2013-09-30 19:06:04.941174
election: 6
has_answered: true
name: Camilo Escalona
photo: ''
slug: camilo-escalona
updated_at: 2013-09-30 19:06:04.941213
model: elections.candidate
pk: 39
- fields:
answers: []
created_at: 2013-09-30 19:06:06.340054
election: 6
has_answered: true
name: Rafael Garay
photo: ''
slug: rafael-garay
updated_at: 2013-09-30 19:06:06.340122
model: elections.candidate
pk: 40
- fields:
answers: []
created_at: 2013-09-30 19:06:07.739046
election: 6
has_answered: true
name: "Osm\xE1n V\xE1squez"
photo: ''
slug: osman-vasquez
updated_at: 2013-09-30 19:06:07.739093
model: elections.candidate
pk: 41
- fields:
answers: []
created_at: 2013-09-30 19:06:08.903244
election: 6
has_answered: true
name: "Loreto\_Mu\xF1oz"
photo: ''
slug: loreto-munoz
updated_at: 2013-09-30 19:06:08.903284
model: elections.candidate
pk: 42
- fields:
answers: []
created_at: 2013-09-30 19:06:10.115982
election: 6
has_answered: true
name: Javier Sandoval
photo: ''
slug: javier-sandoval
updated_at: 2013-09-30 19:06:10.116031
model: elections.candidate
pk: 43
- fields:
answers: []
created_at: 2013-09-30 19:06:11.269333
election: 6
has_answered: true
name: "Graciela Gonz\xE1lez"
photo: ''
slug: graciela-gonzalez
updated_at: 2013-09-30 19:06:11.269373
model: elections.candidate
pk: 44
- fields:
answers: []
created_at: 2013-09-30 19:06:19.353774
election: 7
has_answered: true
name: "V\xEDctor P\xE9rez"
photo: ''
slug: victor-perez
updated_at: 2013-09-30 19:06:19.353826
model: elections.candidate
pk: 45
- fields:
answers: []
created_at: 2013-09-30 19:06:20.533053
election: 7
has_answered: true
name: Rosa Oyarce
photo: ''
slug: rosa-oyarce
updated_at: 2013-09-30 19:06:20.533105
model: elections.candidate
pk: 46
- fields:
answers: []
created_at: 2013-09-30 19:06:21.876570
election: 7
has_answered: true
name: "Hosa\xEDn Sabag"
photo: ''
slug: hosain-sabag
updated_at: 2013-09-30 19:06:21.876628
model: elections.candidate
pk: 47
- fields:
answers: []
created_at: 2013-09-30 19:06:23.030632
election: 7
has_answered: true
name: Felipe Harboe
photo: ''
slug: felipe-harboe
updated_at: 2013-09-30 19:06:23.030672
model: elections.candidate
pk: 48
- fields:
answers: []
created_at: 2013-09-30 19:06:24.197683
election: 7
has_answered: true
name: "H\xE9ctor Seguel"
photo: ''
slug: hector-seguel
updated_at: 2013-09-30 19:06:24.197724
model: elections.candidate
pk: 49
- fields:
answers: []
created_at: 2013-09-30 19:06:25.375420
election: 7
has_answered: true
name: Juanita Carrasco
photo: ''
slug: juanita-carrasco
updated_at: 2013-09-30 19:06:25.375466
model: elections.candidate
pk: 50
- fields:
answers: []
created_at: 2013-09-30 19:06:34.574613
election: 8
has_answered: true
name: Ena von Baer
photo: ''
slug: ena-von-baer
updated_at: 2013-09-30 19:06:34.574655
model: elections.candidate
pk: 51
- fields:
answers: []
created_at: 2013-09-30 19:06:35.974096
election: 8
has_answered: true
name: Fernando Schultz
photo: ''
slug: fernando-schultz
updated_at: 2013-09-30 19:06:35.974136
model: elections.candidate
pk: 52
- fields:
answers: []
created_at: 2013-09-30 19:06:37.374711
election: 8
has_answered: true
name: Alfonso de Urresti
photo: ''
slug: alfonso-de-urresti
updated_at: 2013-09-30 19:06:37.374756
model: elections.candidate
pk: 53
- fields:
answers: []
created_at: 2013-09-30 19:06:38.737587
election: 8
has_answered: true
name: Abernego Mardones
photo: ''
slug: abernego-mardones
updated_at: 2013-09-30 19:06:38.737628
model: elections.candidate
pk: 54
- fields:
answers: []
created_at: 2013-09-30 19:06:40.116534
election: 8
has_answered: true
name: "Rodrigo Mu\xF1oz"
photo: ''
slug: rodrigo-munoz
updated_at: 2013-09-30 19:06:40.116573
model: elections.candidate
pk: 55
- fields:
answers: []
created_at: 2013-09-30 19:06:41.468176
election: 8
has_answered: true
name: Dulcelina Yolanda Candia
photo: ''
slug: dulcelina-yolanda-candia
updated_at: 2013-09-30 19:06:41.468226
model: elections.candidate
pk: 56
- fields:
answers: []
created_at: 2013-09-30 19:06:42.845079
election: 8
has_answered: true
name: Alejandro Aravena
photo: ''
slug: alejandro-aravena
updated_at: 2013-09-30 19:06:42.845119
model: elections.candidate
pk: 57
- fields:
answers: []
created_at: 2013-09-30 19:06:51.350329
election: 9
has_answered: true
name: "Iv\xE1n Moreira"
photo: ''
slug: ivan-moreira
updated_at: 2013-09-30 19:06:51.350380
model: elections.candidate
pk: 58
- fields:
answers: []
created_at: 2013-09-30 19:06:53.136297
election: 9
has_answered: true
name: Carlos Kuschel
photo: ''
slug: carlos-kuschel
updated_at: 2013-09-30 19:06:53.136345
model: elections.candidate
pk: 59
- fields:
answers: []
created_at: 2013-09-30 19:06:54.348803
election: 9
has_answered: true
name: Gabriel Ascencio
photo: ''
slug: gabriel-ascencio
updated_at: 2013-09-30 19:06:54.348863
model: elections.candidate
pk: 60
- fields:
answers: []
created_at: 2013-09-30 19:06:55.591893
election: 9
has_answered: true
name: Rabindranath Quinteros
photo: ''
slug: rabindranath-quinteros
updated_at: 2013-09-30 19:06:55.591937
model: elections.candidate
pk: 61
- fields:
answers: []
created_at: 2013-09-30 19:07:04.096951
election: 10
has_answered: true
name: Miodrag Marinovic
photo: ''
slug: miodrag-marinovic
updated_at: 2013-09-30 19:07:04.096990
model: elections.candidate
pk: 62
- fields:
answers: []
created_at: 2013-09-30 19:07:05.253006
election: 10
has_answered: true
name: Francisco Berger
photo: ''
slug: francisco-berger
updated_at: 2013-09-30 19:07:05.253047
model: elections.candidate
pk: 63
- fields:
answers: []
created_at: 2013-09-30 19:07:06.409673
election: 10
has_answered: true
name: Carolina Goic
photo: ''
slug: carolina-goic
updated_at: 2013-09-30 19:07:06.409716
model: elections.candidate
pk: 64
- fields:
answers: []
created_at: 2013-09-30 19:07:07.688374
election: 10
has_answered: true
name: "Pedro Mu\xF1oz"
photo: ''
slug: pedro-munoz
updated_at: 2013-09-30 19:07:07.688414
model: elections.candidate
pk: 65
- fields:
answers: []
created_at: 2013-09-30 19:07:09.096879
election: 10
has_answered: true
name: Carlos Bianchi
photo: ''
slug: carlos-bianchi
updated_at: 2013-09-30 19:07:09.096920
model: elections.candidate
pk: 66
- fields:
answers: []
created_at: 2013-09-30 19:07:10.352509
election: 10
has_answered: true
name: Sergio Tapia
photo: ''
slug: sergio-tapia
updated_at: 2013-09-30 19:07:10.352548
model: elections.candidate
pk: 67
- fields:
answers: []
created_at: 2013-09-30 19:07:51.485724
election: 11
has_answered: true
name: "Nino Baltol\xFA"
photo: ''
slug: nino-baltolu
updated_at: 2013-09-30 19:07:51.485767
model: elections.candidate
pk: 68
- fields:
answers: []
created_at: 2013-09-30 19:07:52.685855
election: 11
has_answered: true
name: Ximena Valcarce
photo: ''
slug: ximena-valcarce
updated_at: 2013-09-30 19:07:52.685904
model: elections.candidate
pk: 69
- fields:
answers: []
created_at: 2013-09-30 19:07:53.874884
election: 11
has_answered: true
name: Orlando Vargas
photo: ''
slug: orlando-vargas
updated_at: 2013-09-30 19:07:53.874926
model: elections.candidate
pk: 70
- fields:
answers: []
created_at: 2013-09-30 19:07:55.041518
election: 11
has_answered: true
name: Luis Rocafull
photo: ''
slug: luis-rocafull
updated_at: 2013-09-30 19:07:55.041565
model: elections.candidate
pk: 71
- fields:
answers: []
created_at: 2013-09-30 19:07:56.240384
election: 11
has_answered: true
name: "Eduardo Pi\xF1ones"
photo: ''
slug: eduardo-pinones
updated_at: 2013-09-30 19:07:56.240437
model: elections.candidate
pk: 72
- fields:
answers: []
created_at: 2013-09-30 19:07:57.428925
election: 11
has_answered: true
name: Vlado Mirosevic
photo: ''
slug: vlado-mirosevic
updated_at: 2013-09-30 19:07:57.428990
model: elections.candidate
pk: 73
- fields:
answers: []
created_at: 2013-09-30 19:07:59.038139
election: 11
has_answered: true
name: "An\xEDbal D\xEDaz"
photo: ''
slug: anibal-diaz
updated_at: 2013-09-30 19:07:59.038180
model: elections.candidate
pk: 74
- fields:
answers: []
created_at: 2013-09-30 19:08:00.193378
election: 11
has_answered: true
name: Enrique Lee
photo: ''
slug: enrique-lee
updated_at: 2013-09-30 19:08:00.193437
model: elections.candidate
pk: 75
- fields:
answers: []
created_at: 2013-09-30 19:08:07.966918
election: 12
has_answered: true
name: Renzo Trisotti
photo: ''
slug: renzo-trisotti
updated_at: 2013-09-30 19:08:07.966958
model: elections.candidate
pk: 76
- fields:
answers: []
created_at: 2013-09-30 19:08:09.145352
election: 12
has_answered: true
name: "Nestor Jofr\xE9"
photo: ''
slug: nestor-jofre
updated_at: 2013-09-30 19:08:09.145393
model: elections.candidate