-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbexport.dump
3625 lines (3283 loc) · 352 KB
/
dbexport.dump
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
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: active_admin_comments; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE active_admin_comments (
id integer NOT NULL,
namespace character varying,
body text,
resource_id character varying NOT NULL,
resource_type character varying NOT NULL,
author_id integer,
author_type character varying,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
ALTER TABLE public.active_admin_comments OWNER TO deploy;
--
-- Name: active_admin_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE active_admin_comments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.active_admin_comments_id_seq OWNER TO deploy;
--
-- Name: active_admin_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE active_admin_comments_id_seq OWNED BY active_admin_comments.id;
--
-- Name: aditional_services; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE aditional_services (
id integer NOT NULL,
energia boolean DEFAULT false,
energia_cantidad integer,
estacionamiento boolean DEFAULT false,
estacionamiento_cantidad integer,
nylon boolean DEFAULT false,
cuotas_sociales boolean DEFAULT false,
catalogo_extra_cantidad integer,
catalogo_extra boolean DEFAULT false,
coutas_sociales_cantidad integer,
expositor_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
completed boolean DEFAULT false
);
ALTER TABLE public.aditional_services OWNER TO deploy;
--
-- Name: aditional_services_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE aditional_services_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.aditional_services_id_seq OWNER TO deploy;
--
-- Name: aditional_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE aditional_services_id_seq OWNED BY aditional_services.id;
--
-- Name: blueprint_files; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE blueprint_files (
id integer NOT NULL,
state integer,
attachment_file_name character varying,
attachment_content_type character varying,
attachment_file_size integer,
attachment_updated_at timestamp without time zone,
infrastructure_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
comment text
);
ALTER TABLE public.blueprint_files OWNER TO deploy;
--
-- Name: blueprint_files_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE blueprint_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.blueprint_files_id_seq OWNER TO deploy;
--
-- Name: blueprint_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE blueprint_files_id_seq OWNED BY blueprint_files.id;
--
-- Name: catalog_images; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE catalog_images (
id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
attachment_file_name character varying,
attachment_content_type character varying,
attachment_file_size integer,
attachment_updated_at timestamp without time zone,
priority character varying,
catalog_id integer,
valid_image boolean
);
ALTER TABLE public.catalog_images OWNER TO deploy;
--
-- Name: catalog_images_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE catalog_images_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.catalog_images_id_seq OWNER TO deploy;
--
-- Name: catalog_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE catalog_images_id_seq OWNED BY catalog_images.id;
--
-- Name: catalogs; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE catalogs (
id integer NOT NULL,
stand_number character varying,
twitter character varying,
facebook character varying,
type character varying,
expositor_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
completed boolean DEFAULT false,
description text,
phone_number character varying,
aditional_phone_number character varying,
email character varying,
aditional_email character varying,
website character varying,
address character varying,
city character varying,
province character varying,
zip_code character varying,
comment text,
state integer DEFAULT 3
);
ALTER TABLE public.catalogs OWNER TO deploy;
--
-- Name: catalogs_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE catalogs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.catalogs_id_seq OWNER TO deploy;
--
-- Name: catalogs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE catalogs_id_seq OWNED BY catalogs.id;
--
-- Name: credentials; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE credentials (
id integer NOT NULL,
name character varying,
armador boolean DEFAULT false,
personal_stand boolean DEFAULT false,
foto_video boolean DEFAULT false,
expositor_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
art boolean DEFAULT false,
es_expositor boolean DEFAULT false,
fecha_alta date
);
ALTER TABLE public.credentials OWNER TO deploy;
--
-- Name: credentials_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE credentials_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.credentials_id_seq OWNER TO deploy;
--
-- Name: credentials_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE credentials_id_seq OWNED BY credentials.id;
--
-- Name: delayed_jobs; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE delayed_jobs (
id integer NOT NULL,
priority integer DEFAULT 0 NOT NULL,
attempts integer DEFAULT 0 NOT NULL,
handler text NOT NULL,
last_error text,
run_at timestamp without time zone,
locked_at timestamp without time zone,
failed_at timestamp without time zone,
locked_by character varying,
queue character varying,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
ALTER TABLE public.delayed_jobs OWNER TO deploy;
--
-- Name: delayed_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE delayed_jobs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.delayed_jobs_id_seq OWNER TO deploy;
--
-- Name: delayed_jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE delayed_jobs_id_seq OWNED BY delayed_jobs.id;
--
-- Name: exposition_expositors; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE exposition_expositors (
id integer NOT NULL,
exposition_id integer,
expositor_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.exposition_expositors OWNER TO deploy;
--
-- Name: exposition_expositors_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE exposition_expositors_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.exposition_expositors_id_seq OWNER TO deploy;
--
-- Name: exposition_expositors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE exposition_expositors_id_seq OWNED BY exposition_expositors.id;
--
-- Name: exposition_files; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE exposition_files (
id integer NOT NULL,
file_type character varying,
attachment_file_name character varying,
attachment_content_type character varying,
attachment_file_size integer,
attachment_updated_at timestamp without time zone,
exposition_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.exposition_files OWNER TO deploy;
--
-- Name: exposition_files_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE exposition_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.exposition_files_id_seq OWNER TO deploy;
--
-- Name: exposition_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE exposition_files_id_seq OWNED BY exposition_files.id;
--
-- Name: expositions; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE expositions (
id integer NOT NULL,
name character varying,
active boolean DEFAULT false,
initialized_at date,
ends_at date,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
deadline_catalogs date,
deadline_credentials date,
deadline_aditional_services date,
deadline_infrastructures date
);
ALTER TABLE public.expositions OWNER TO deploy;
--
-- Name: expositions_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE expositions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.expositions_id_seq OWNER TO deploy;
--
-- Name: expositions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE expositions_id_seq OWNED BY expositions.id;
--
-- Name: infrastructures; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE infrastructures (
id integer NOT NULL,
tarima boolean DEFAULT false,
paneles boolean DEFAULT false,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
expositor_id integer,
completed boolean DEFAULT false,
alfombra_tipo character varying,
alfombra boolean DEFAULT false
);
ALTER TABLE public.infrastructures OWNER TO deploy;
--
-- Name: infrastructures_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE infrastructures_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.infrastructures_id_seq OWNER TO deploy;
--
-- Name: infrastructures_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE infrastructures_id_seq OWNED BY infrastructures.id;
--
-- Name: massive_mails; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE massive_mails (
id integer NOT NULL,
subject character varying,
body text,
attachment_file_name character varying,
attachment_content_type character varying,
attachment_file_size integer,
attachment_updated_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
campaign character varying,
sent boolean DEFAULT false
);
ALTER TABLE public.massive_mails OWNER TO deploy;
--
-- Name: massive_mails_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE massive_mails_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.massive_mails_id_seq OWNER TO deploy;
--
-- Name: massive_mails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE massive_mails_id_seq OWNED BY massive_mails.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE schema_migrations (
version character varying NOT NULL
);
ALTER TABLE public.schema_migrations OWNER TO deploy;
--
-- Name: users; Type: TABLE; Schema: public; Owner: deploy; Tablespace:
--
CREATE TABLE users (
id integer NOT NULL,
type character varying,
name character varying,
cuit character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet
);
ALTER TABLE public.users OWNER TO deploy;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: deploy
--
CREATE SEQUENCE users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO deploy;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: deploy
--
ALTER SEQUENCE users_id_seq OWNED BY users.id;
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY active_admin_comments ALTER COLUMN id SET DEFAULT nextval('active_admin_comments_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY aditional_services ALTER COLUMN id SET DEFAULT nextval('aditional_services_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY blueprint_files ALTER COLUMN id SET DEFAULT nextval('blueprint_files_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY catalog_images ALTER COLUMN id SET DEFAULT nextval('catalog_images_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY catalogs ALTER COLUMN id SET DEFAULT nextval('catalogs_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY credentials ALTER COLUMN id SET DEFAULT nextval('credentials_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY delayed_jobs ALTER COLUMN id SET DEFAULT nextval('delayed_jobs_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY exposition_expositors ALTER COLUMN id SET DEFAULT nextval('exposition_expositors_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY exposition_files ALTER COLUMN id SET DEFAULT nextval('exposition_files_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY expositions ALTER COLUMN id SET DEFAULT nextval('expositions_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY infrastructures ALTER COLUMN id SET DEFAULT nextval('infrastructures_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY massive_mails ALTER COLUMN id SET DEFAULT nextval('massive_mails_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: deploy
--
ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
--
-- Data for Name: active_admin_comments; Type: TABLE DATA; Schema: public; Owner: deploy
--
COPY active_admin_comments (id, namespace, body, resource_id, resource_type, author_id, author_type, created_at, updated_at) FROM stdin;
\.
--
-- Name: active_admin_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: deploy
--
SELECT pg_catalog.setval('active_admin_comments_id_seq', 1, false);
--
-- Data for Name: aditional_services; Type: TABLE DATA; Schema: public; Owner: deploy
--
COPY aditional_services (id, energia, energia_cantidad, estacionamiento, estacionamiento_cantidad, nylon, cuotas_sociales, catalogo_extra_cantidad, catalogo_extra, coutas_sociales_cantidad, expositor_id, created_at, updated_at, completed) FROM stdin;
10 f \N f \N f f \N f \N 11 2016-01-05 19:33:08.638974 2016-01-05 19:33:08.638974 f
15 f \N f \N f f \N f \N 16 2016-01-05 19:36:05.437914 2016-01-05 19:36:05.437914 f
23 f \N f \N f f \N f \N 24 2016-01-05 19:40:52.34007 2016-01-05 19:40:52.34007 f
24 f \N f \N f f \N f \N 25 2016-01-05 19:41:21.149982 2016-01-05 19:41:21.149982 f
26 f \N f \N f f \N f \N 27 2016-01-05 19:43:02.778983 2016-01-05 19:43:02.778983 f
27 f \N f \N f f \N f \N 28 2016-01-05 19:43:34.86109 2016-01-05 19:43:34.86109 f
29 f \N f \N f f \N f \N 30 2016-01-05 19:44:53.074451 2016-01-05 19:44:53.074451 f
35 f \N f \N f f \N f \N 36 2016-01-05 19:49:22.633275 2016-01-05 19:49:22.633275 f
37 f \N f \N f f \N f \N 38 2016-01-05 19:50:16.010772 2016-01-05 19:50:16.010772 f
38 f \N f \N f f \N f \N 39 2016-01-05 19:50:47.405893 2016-01-05 19:50:47.405893 f
40 f \N f \N f f \N f \N 41 2016-01-05 19:51:12.125803 2016-01-05 19:51:12.125803 f
43 f \N f \N f f \N f \N 44 2016-01-05 19:52:17.118129 2016-01-05 19:52:17.118129 f
45 f \N f \N f f \N f \N 46 2016-01-05 19:53:12.955334 2016-01-05 19:53:12.955334 f
51 f \N f \N f f \N f \N 52 2016-01-05 19:55:35.203333 2016-01-05 19:55:35.203333 f
52 f \N f \N f f \N f \N 53 2016-01-05 19:56:23.993822 2016-01-05 19:56:23.993822 f
56 f \N f \N f f \N f \N 57 2016-01-05 19:58:00.390285 2016-01-05 19:58:00.390285 f
60 f \N f \N f f \N f \N 61 2016-01-05 19:58:51.348159 2016-01-05 19:58:51.348159 f
61 f \N f \N f f \N f \N 62 2016-01-05 19:59:18.084131 2016-01-05 19:59:18.084131 f
62 f \N f \N f f \N f \N 63 2016-01-05 19:59:25.994485 2016-01-05 19:59:25.994485 f
63 f \N f \N f f \N f \N 64 2016-01-05 19:59:42.170301 2016-01-05 19:59:42.170301 f
64 f \N f \N f f \N f \N 65 2016-01-05 20:00:03.864949 2016-01-05 20:00:03.864949 f
65 f \N f \N f f \N f \N 66 2016-01-05 20:00:09.72771 2016-01-05 20:00:09.72771 f
68 f \N f \N f f \N f \N 69 2016-01-05 20:01:05.592157 2016-01-05 20:01:05.592157 f
75 f \N f \N f f \N f \N 76 2016-01-05 20:04:09.286643 2016-01-05 20:04:09.286643 f
78 f \N f \N f f \N f \N 79 2016-01-05 20:05:02.444636 2016-01-05 20:05:02.444636 f
79 f \N f \N f f \N f \N 80 2016-01-05 20:05:57.343503 2016-01-05 20:05:57.343503 f
80 f \N f \N f f \N f \N 81 2016-01-05 20:06:28.764453 2016-01-05 20:06:28.764453 f
81 f \N f \N f f \N f \N 82 2016-01-05 20:06:45.238145 2016-01-05 20:06:45.238145 f
82 f \N f \N f f \N f \N 83 2016-01-05 20:07:07.232039 2016-01-05 20:07:07.232039 f
84 f \N f \N f f \N f \N 85 2016-01-05 20:07:39.22179 2016-01-05 20:07:39.22179 f
85 f \N f \N f f \N f \N 86 2016-01-05 20:08:05.328788 2016-01-05 20:08:05.328788 f
90 f \N f \N f f \N f \N 91 2016-01-05 20:09:29.050958 2016-01-05 20:09:29.050958 f
94 f \N f \N f f \N f \N 95 2016-01-05 20:11:11.31733 2016-01-05 20:11:11.31733 f
97 f \N f \N f f \N f \N 98 2016-01-05 20:11:59.575009 2016-01-05 20:11:59.575009 f
100 f \N f \N f f \N f \N 101 2016-01-05 20:13:03.14015 2016-01-05 20:13:03.14015 f
105 f \N f \N f f \N f \N 106 2016-01-05 20:14:23.698102 2016-01-05 20:14:23.698102 f
106 f \N f \N f f \N f \N 107 2016-01-05 20:14:44.351352 2016-01-05 20:14:44.351352 f
109 f \N f \N f f \N f \N 110 2016-01-05 20:15:20.345697 2016-01-05 20:15:20.345697 f
111 f \N f \N f f \N f \N 112 2016-01-05 20:16:01.665372 2016-01-05 20:16:01.665372 f
114 f \N f \N f f \N f \N 115 2016-01-05 20:16:41.862237 2016-01-05 20:16:41.862237 f
115 f \N f \N f f \N f \N 116 2016-01-05 20:16:49.535067 2016-01-05 20:16:49.535067 f
69 f \N t 1 f f \N f \N 70 2016-01-05 20:01:41.252623 2016-01-19 19:31:24.384637 t
20 f \N f \N f f 1 t \N 21 2016-01-05 19:39:06.58744 2016-01-12 20:35:36.184659 t
19 f \N f \N t f \N f \N 20 2016-01-05 19:38:36.709894 2016-01-19 20:37:45.096368 t
71 f \N t 1 f f \N f \N 72 2016-01-05 20:02:08.263406 2016-01-19 21:09:09.269374 t
59 f \N t 1 f f \N f \N 60 2016-01-05 19:58:40.203929 2016-01-23 23:20:52.134056 t
72 f 0 t 1 f f \N f \N 73 2016-01-05 20:02:31.095425 2016-01-21 13:52:15.637357 t
87 f \N t 2 f f \N f \N 88 2016-01-05 20:08:29.962247 2016-03-09 17:53:06.121584 t
93 f \N f \N f f \N f \N 94 2016-01-05 20:10:34.494278 2016-01-05 20:10:34.494278 t
58 f \N t 1 t f \N f \N 59 2016-01-05 19:58:26.781275 2016-01-26 13:34:35.651822 t
33 f \N t 1 f f \N f \N 34 2016-01-05 19:48:24.926033 2016-01-26 18:48:11.748989 t
49 f \N t 2 f f \N f \N 50 2016-01-05 19:54:43.881412 2016-02-28 22:16:09.071849 t
108 f 0 t 1 f f \N f \N 109 2016-01-05 20:15:11.046199 2016-01-28 12:24:17.813446 t
103 f \N f \N t f \N f \N 104 2016-01-05 20:13:53.885312 2016-01-29 15:16:07.027687 t
73 f \N t \N f f \N f \N 74 2016-01-05 20:03:00.04406 2016-01-30 19:09:14.180965 f
112 t 600 t 1 f f \N f \N 113 2016-01-05 20:16:04.70202 2016-01-29 23:39:06.015629 t
70 f \N t 4 f f \N f \N 71 2016-01-05 20:02:07.721439 2016-02-05 19:06:52.643043 t
98 f \N t 2 t f \N t \N 99 2016-01-05 20:12:06.538569 2016-02-01 13:54:00.328423 t
92 f \N t 1 f f \N f \N 93 2016-01-05 20:10:01.671774 2016-02-01 14:10:30.255175 t
9 f \N t 2 t f \N t \N 10 2016-01-05 19:33:05.596848 2016-02-01 20:00:28.039324 t
57 f \N t 1 f f \N f \N 58 2016-01-05 19:58:00.39985 2016-02-16 13:55:14.426917 t
104 f \N f \N f f \N f \N 105 2016-01-05 20:13:58.896445 2016-02-01 18:35:21.678998 t
34 f \N f \N f f \N f \N 35 2016-01-05 19:48:56.338725 2016-01-05 19:48:56.338725 t
54 f \N t 2 f f \N f \N 55 2016-01-05 19:57:00.214902 2016-02-01 23:17:54.81362 t
96 f \N f \N f f \N f \N 97 2016-01-05 20:11:43.743179 2016-01-05 20:11:43.743179 t
113 f 0 f 0 f f \N f \N 114 2016-01-05 20:16:27.435864 2016-02-29 15:59:35.37902 t
16 f \N t 1 f f \N f \N 17 2016-01-05 19:36:34.516161 2016-02-02 13:32:30.63826 t
22 t 0 t 1 f f \N f \N 23 2016-01-05 19:40:41.702839 2016-02-02 16:57:10.396501 t
50 f \N t 1 f f \N f \N 51 2016-01-05 19:54:56.66946 2016-02-08 12:09:35.061604 t
42 f 0 t 1 t f \N t \N 43 2016-01-05 19:51:49.896925 2016-02-10 13:38:49.290202 t
110 f \N t 2 f f \N f \N 111 2016-01-05 20:15:40.562737 2016-02-10 14:44:22.704819 t
41 f 0 t 2 f f \N f \N 42 2016-01-05 19:51:37.450459 2016-02-11 15:26:42.747746 t
36 f 0 f 0 f f \N f \N 37 2016-01-05 19:50:05.068654 2016-02-11 19:08:51.890755 t
46 f \N f \N f f \N f \N 47 2016-01-05 19:53:27.796294 2016-01-05 19:53:27.796294 t
21 f \N t 2 f f \N f \N 22 2016-01-05 19:39:43.766695 2016-02-11 19:17:12.00406 t
67 f \N t 4 f f \N f \N 68 2016-01-05 20:00:51.535802 2016-02-12 13:52:27.136126 t
102 t 4000 t 1 f f \N f \N 103 2016-01-05 20:13:31.370678 2016-03-02 18:47:41.191264 t
47 t \N t 1 f f \N f \N 48 2016-01-05 19:53:57.869273 2016-02-14 22:06:17.716661 f
12 f \N f \N f f \N f \N 13 2016-01-05 19:34:19.732333 2016-01-05 19:34:19.732333 t
39 f \N f \N f f \N f \N 40 2016-01-05 19:50:50.790589 2016-01-05 19:50:50.790589 t
101 f \N f \N f f \N f \N 102 2016-01-05 20:13:08.015892 2016-01-05 20:13:08.015892 t
77 f \N f \N f f \N f \N 78 2016-01-05 20:04:53.797942 2016-01-05 20:04:53.797942 t
107 f \N t 1 f f \N f \N 108 2016-01-05 20:14:48.746553 2016-02-13 17:22:47.321366 t
28 f \N t 1 f f \N f \N 29 2016-01-05 19:44:02.430854 2016-02-13 19:16:56.663981 t
13 f \N f \N f f \N f \N 14 2016-01-05 19:35:32.948651 2016-01-05 19:35:32.948651 t
48 t 2100 t 1 f f \N f \N 49 2016-01-05 19:54:02.761733 2016-02-14 11:46:10.71496 t
99 t 0 t 1 f f \N f \N 100 2016-01-05 20:12:35.358956 2016-02-14 20:57:52.062202 t
11 f \N t 1 f f \N f \N 12 2016-01-05 19:34:04.194171 2016-02-15 14:26:33.427804 t
44 f \N t 4 f f \N f \N 45 2016-01-05 19:53:01.417121 2016-02-15 14:39:51.561764 t
25 f \N f \N f f \N f \N 26 2016-01-05 19:42:32.317943 2016-01-05 19:42:32.317943 t
76 f \N f \N f f \N f \N 77 2016-01-05 20:04:24.854311 2016-01-05 20:04:24.854311 t
89 t \N t 2 f f \N f \N 90 2016-01-05 20:08:54.43269 2016-03-07 15:49:37.931337 f
32 t \N t 1 f f \N f \N 33 2016-01-05 19:47:14.932421 2016-02-18 21:22:10.075433 f
53 f \N t \N f f \N f \N 54 2016-01-05 19:56:59.250651 2016-02-25 13:50:57.329152 f
88 f \N f \N f f \N f \N 89 2016-01-05 20:08:47.258893 2016-01-05 20:08:47.258893 t
95 f \N t 1 f f \N f \N 96 2016-01-05 20:11:12.26529 2016-02-26 13:07:59.024224 t
18 t 1 t \N t f \N f \N 19 2016-01-05 19:37:52.284799 2016-03-02 17:40:42.80599 f
119 f \N f \N f f \N f \N 120 2016-01-05 20:18:12.360398 2016-01-05 20:18:12.360398 f
121 f \N f \N f f \N f \N 122 2016-01-05 20:18:58.988718 2016-01-05 20:18:58.988718 f
122 f \N f \N f f \N f \N 123 2016-01-05 20:19:02.448989 2016-01-05 20:19:02.448989 f
126 f \N f \N f f \N f \N 127 2016-01-05 20:22:26.083258 2016-01-05 20:22:26.083258 f
128 f \N f \N f f \N f \N 129 2016-01-05 20:23:59.493446 2016-01-05 20:23:59.493446 f
130 f \N f \N f f \N f \N 131 2016-01-05 20:25:42.074229 2016-01-05 20:25:42.074229 f
132 f \N f \N f f \N f \N 133 2016-01-05 20:27:35.624304 2016-01-05 20:27:35.624304 f
135 f \N f \N f f \N f \N 136 2016-01-05 20:29:48.560918 2016-01-05 20:29:48.560918 f
138 f \N f \N f f \N f \N 139 2016-01-05 20:39:08.259438 2016-01-05 20:39:08.259438 f
86 f \N t 2 f f \N f \N 87 2016-01-05 20:08:09.519502 2016-01-05 22:04:08.684511 t
116 f 0 f 0 f f 0 f \N 117 2016-01-05 20:17:18.545646 2016-01-13 15:56:01.555853 t
133 f \N t 2 f f \N f \N 134 2016-01-05 20:28:25.262148 2016-01-14 16:23:24.673796 t
131 f \N t 3 t f \N f \N 132 2016-01-05 20:26:28.563192 2016-01-14 18:45:33.024458 t
124 f \N t 2 f f \N f \N 125 2016-01-05 20:20:02.824299 2016-01-21 01:14:01.574555 t
117 f \N t 2 t f \N f \N 118 2016-01-05 20:17:24.040649 2016-01-21 18:14:46.205926 t
123 f \N t 2 f f \N f \N 124 2016-01-05 20:19:19.039106 2016-01-28 19:19:47.695349 t
127 f \N t 2 f f \N f \N 128 2016-01-05 20:23:17.320038 2016-01-29 22:55:09.278549 t
30 f \N t 2 f f \N f \N 31 2016-01-05 19:46:01.312124 2016-01-29 23:34:23.065781 t
137 f \N f \N f f \N f \N 138 2016-01-05 20:31:14.617081 2016-01-05 20:31:14.617081 t
55 f \N t 1 t f \N f \N 56 2016-01-05 19:57:34.719962 2016-02-01 18:25:38.621955 t
129 f \N t 1 f f \N f \N 130 2016-01-05 20:24:47.693843 2016-02-02 17:07:54.477166 t
66 f \N t 2 f f \N f \N 67 2016-01-05 20:00:35.627662 2016-02-02 19:53:52.801121 t
31 t 0 t 1 f f \N f \N 32 2016-01-05 19:46:28.953308 2016-02-12 13:48:39.478706 t
136 f \N f \N f f \N f \N 137 2016-01-05 20:30:35.737193 2016-01-05 20:30:35.737193 t
120 t 6 t 2 f f \N f \N 121 2016-01-05 20:18:35.25935 2016-02-12 20:52:59.177451 t
74 f 0 t 0 f f \N f \N 75 2016-01-05 20:03:45.913231 2016-02-13 14:52:28.763561 t
125 f \N t 1 f f \N f \N 126 2016-01-05 20:21:10.671836 2016-02-13 15:25:00.334677 t
91 f \N f \N f f \N f \N 92 2016-01-05 20:09:44.456851 2016-02-15 14:51:36.906667 t
118 f \N t 2 f f \N f \N 119 2016-01-05 20:17:50.747462 2016-02-16 11:43:00.299739 t
17 t 1 t 2 f f \N f \N 18 2016-01-05 19:37:03.470715 2016-02-24 16:27:58.727768 t
83 f \N f 1 f f \N f \N 84 2016-01-05 20:07:31.666836 2016-02-26 14:22:08.127032 t
134 f \N f \N f f \N f \N 135 2016-01-05 20:29:06.08672 2016-02-29 17:07:28.045527 t
\.
--
-- Name: aditional_services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: deploy
--
SELECT pg_catalog.setval('aditional_services_id_seq', 142, true);
--
-- Data for Name: blueprint_files; Type: TABLE DATA; Schema: public; Owner: deploy
--
COPY blueprint_files (id, state, attachment_file_name, attachment_content_type, attachment_file_size, attachment_updated_at, infrastructure_id, created_at, updated_at, comment) FROM stdin;
19 1 a_v_c.pdf application/pdf 20815 2016-02-12 16:38:05.618699 10 2016-01-05 19:33:08.668998 2016-02-16 14:02:14.792363 \N
151 1 plano_Junko_MARZO_2016.pdf application/pdf 96311 2016-01-26 18:21:09.547634 76 2016-01-05 20:04:24.896477 2016-01-28 14:35:38.915779 \N
113 1 vista_stand.jpg image/jpeg 415490 2016-01-05 21:37:06.328775 57 2016-01-05 19:58:00.46065 2016-01-28 14:37:55.029029 \N
91 1 PLANO_STAND_MARZO_2016.jpg image/jpeg 1663193 2016-01-25 17:21:16.100058 46 2016-01-05 19:53:27.823373 2016-01-28 14:41:04.017319 \N
192 1 PLANO_RUBEN.jpg image/jpeg 1053688 2016-01-31 17:24:18.782414 96 2016-01-05 20:11:43.773267 2016-02-01 22:13:05.043193 \N
196 1 iluminacion_rumah_marzo_2016.pdf application/pdf 121509 2016-02-02 13:26:23.688408 98 2016-01-05 20:12:06.581375 2016-02-03 23:41:33.525883 \N
18 1 cafira_plano_306.png image/png 631588 2016-02-02 19:04:31.909707 9 2016-01-05 19:33:05.63127 2016-02-03 23:48:37.12197 \N
17 1 CAFIRA_Plano_estand_305.jpg image/jpeg 98663 2016-02-02 19:04:31.897739 9 2016-01-05 19:33:05.628381 2016-02-03 23:48:43.485699 \N
20 1 VISTAS_stand_a_v_c.pdf application/pdf 289800 2016-02-16 18:11:45.687716 10 2016-01-05 19:33:08.672476 2016-02-16 18:11:45.709573 \N
198 1 PLANO_CAFIRA_MARZO_2016.pdf application/pdf 185867 2016-02-14 19:54:23.177952 99 2016-01-05 20:12:35.393355 2016-02-18 14:26:59.047547 \N
275 1 planta-manfroni.pdf application/pdf 485700 2016-02-04 14:49:14.400093 138 2016-01-05 20:39:08.30427 2016-02-11 13:44:24.587083 \N
121 1 planta_stand_DOÑA.pdf application/pdf 1508844 2016-02-04 14:25:15.416249 61 2016-01-05 19:59:18.119637 2016-02-11 14:02:47.482654 \N
99 1 plano.pdf application/pdf 389726 2016-02-08 12:10:43.659911 50 2016-01-05 19:54:56.697825 2016-02-11 14:06:14.453773 \N
190 1 CAFIRA_2016_STAND_(3)_Op.2.pdf application/pdf 51054 2016-02-15 00:04:44.353626 95 2016-01-05 20:11:12.331908 2016-02-16 13:21:20.363929 \N
94 1 20160127_180523.jpg image/jpeg 4074700 2016-02-14 22:05:09.422085 47 2016-01-05 19:53:57.901949 2016-02-16 13:45:47.943201 \N
21 1 plano_cafiraimg002.jpg image/jpeg 417207 2016-02-15 14:30:23.622385 11 2016-01-05 19:34:04.225677 2016-02-16 14:01:58.397726 \N
120 1 CAFIRA__STAND_135__VISTA_CON_MEDIDAS_redimensionar.jpg image/jpeg 294614 2016-02-18 22:54:23.578845 60 2016-01-05 19:58:51.384897 2016-02-22 12:26:38.019272 \N
119 1 CAFIRA__STAND_135__PLANTA_CON_MEDIDAS_redimensionar.jpg image/jpeg 50997 2016-02-18 22:54:23.564668 60 2016-01-05 19:58:51.381659 2016-02-22 12:26:41.800232 \N
63 1 montaje-sin-tiras_(1).jpg image/jpeg 369824 2016-02-27 01:50:11.019665 32 2016-01-05 19:47:14.961608 2016-02-29 13:06:44.07855 \N
112 1 WP_20160216_001.jpg image/jpeg 408813 2016-02-16 14:31:48.874516 56 2016-01-05 19:58:00.454789 2016-03-08 17:12:46.973354 \N
111 1 WP_20160212_002.jpg image/jpeg 431568 2016-02-12 15:25:14.621276 56 2016-01-05 19:58:00.448681 2016-03-08 17:14:18.418045 \N
47 1 Stand_Agosto_2014.pdf application/pdf 23032 2016-01-12 20:13:01.238821 24 2016-01-05 19:41:21.179876 2016-01-25 15:44:35.123302 \N
37 1 APA_LA_PAPA.pdf application/pdf 109996 2016-01-19 20:38:44.603793 19 2016-01-05 19:38:36.739489 2016-01-25 15:45:28.113086 \N
34 1 PLANO_STAND_Electricidad.jpg image/jpeg 161988 2016-01-20 18:18:50.716291 17 2016-01-05 19:37:03.501407 2016-01-25 15:46:01.086557 \N
33 1 Plano_CAFIRA_escala_1-50.jpg image/jpeg 164625 2016-01-20 18:18:50.70709 17 2016-01-05 19:37:03.498306 2016-01-25 15:46:08.504983 \N
114 1 planta_stand.jpg image/jpeg 264390 2016-01-05 21:37:06.340585 57 2016-01-05 19:58:00.466669 2016-01-25 15:38:11.211547 \N
125 1 vista_2.jpg image/jpeg 101487 2016-02-22 12:44:02.331829 63 2016-01-05 19:59:42.205429 2016-02-22 13:08:56.620304 \N
168 1 Stand_Poltron_Vista_Frontal.pdf application/pdf 20253 2016-01-27 14:34:50.551463 84 2016-01-05 20:07:39.25368 2016-01-28 14:34:42.236062 \N
115 1 Plano_STAND_CAFIRA_marzo2016.JPG image/jpeg 25642 2016-01-27 14:22:05.904965 58 2016-01-05 19:58:26.849841 2016-01-28 14:39:56.624249 \N
145 1 CAFIRA_1.pdf application/pdf 570375 2016-01-27 00:16:53.614568 73 2016-01-05 20:03:00.095414 2016-01-29 13:03:33.338452 \N
178 1 Plano_Cafira.jpg image/jpeg 474836 2016-02-29 19:22:50.832199 89 2016-01-05 20:08:54.463695 2016-03-01 14:53:48.350026 \N
144 1 PLANO_CAFIRA_AGOSTO_2015.pdf application/pdf 109989 2016-02-02 15:23:23.748349 72 2016-01-05 20:02:31.138102 2016-02-03 23:44:03.39025 \N
143 1 PLANO_CAFIRA_AGOSTO_2015.pdf application/pdf 109989 2016-02-02 15:22:56.986684 72 2016-01-05 20:02:31.135063 2016-02-03 23:44:21.024787 \N
153 1 Plano_stand_Piezas_de_descanso.jpg image/jpeg 3679475 2016-02-15 13:08:51.803344 77 2016-01-05 20:04:53.825328 2016-03-08 13:45:53.074352 \N
140 1 STAND_INTERMOBILI_MAR_16.pdf application/pdf 384039 2016-02-10 18:17:02.507487 70 2016-01-05 20:02:07.754611 2016-02-11 14:01:33.128837 \N
139 1 STAND_INTERMOBILI_MAR_16.pdf application/pdf 384039 2016-02-10 18:17:02.497304 70 2016-01-05 20:02:07.75146 2016-02-11 14:01:42.478125 \N
109 1 Desde_Asia_plano_estructura.jpg image/jpeg 257243 2016-02-04 15:30:00.390103 55 2016-01-05 19:57:34.824948 2016-02-11 14:04:21.189546 \N
84 1 PLANO_CAFIRA_MARZO_2016.jpg image/jpeg 233166 2016-02-10 13:47:42.789807 42 2016-01-05 19:51:49.928206 2016-02-11 14:07:27.939484 \N
108 1 plano_mobiliario_de_guruyon_001.jpg image/jpeg 327769 2016-02-10 16:16:35.721467 54 2016-01-05 19:57:00.276859 2016-03-08 17:20:27.980463 \N
203 1 PLANO_STAND_115_2016.jpg image/jpeg 2089566 2016-02-22 18:49:49.198134 102 2016-01-05 20:13:31.400127 2016-03-08 18:43:47.102408 \N
176 1 Plano_2.pdf application/pdf 3832757 2016-02-16 13:54:48.087934 88 2016-01-05 20:08:47.305021 2016-02-16 14:03:49.567253 \N
88 1 PLANO_STAND_COMPONENT.jpg image/jpeg 437131 2016-02-15 13:19:18.598662 44 2016-01-05 19:53:01.457951 2016-02-16 14:05:46.470991 \N
82 1 PLANO_STAND_marzo_2014-3.jpg image/jpeg 238842 2016-02-11 15:29:43.001523 41 2016-01-05 19:51:37.479722 2016-02-18 14:52:47.893192 \N
126 1 Planta_1.jpg image/jpeg 263032 2016-02-22 12:44:02.319938 63 2016-01-05 19:59:42.208171 2016-02-22 13:08:25.914819 \N
255 1 STAND_203.pdf application/pdf 1891687 2016-01-15 16:13:56.96715 128 2016-01-05 20:23:59.529542 2016-01-25 15:13:31.154813 \N
248 1 plano_cafira_m_16.jpg image/jpeg 161491 2016-01-21 01:21:10.423677 124 2016-01-05 20:20:02.868593 2016-01-25 15:14:06.617706 \N
156 1 plano_cafira_2013.jpg image/jpeg 51457 2016-01-20 13:25:52.682746 78 2016-01-05 20:05:02.493059 2016-01-25 15:21:40.610564 \N
137 1 render_1.jpg image/jpeg 48095 2016-01-19 19:35:48.851948 69 2016-01-05 20:01:41.298119 2016-01-25 15:26:19.645831 \N
155 1 plano_cafira_2013.jpg image/jpeg 51457 2016-01-20 13:25:26.774061 78 2016-01-05 20:05:02.488529 2016-01-25 15:22:08.047033 \N
243 1 MeMo-Stand_453-01.pdf application/pdf 225904 2016-01-19 20:39:46.296749 122 2016-01-05 20:19:02.476975 2016-01-25 15:16:26.611314 \N
273 1 plano_cafira_2016_PIANO_NOBILE.pdf application/pdf 48392 2016-02-03 22:52:51.824969 137 2016-01-05 20:31:14.652626 2016-02-03 23:36:24.287018 \N
41 1 arkePlano_Stand_1.pdf application/pdf 5499 2016-02-11 19:18:14.355436 21 2016-01-05 19:39:43.795385 2016-02-16 13:55:01.682533 \N
92 1 PLANO_STAND_MARZO_2016.jpg image/jpeg 1663193 2016-01-25 17:21:16.14089 46 2016-01-05 19:53:27.826286 2016-01-28 14:40:42.481881 \N
50 1 \N \N \N \N 25 2016-01-05 19:42:32.350681 2016-01-28 14:41:56.337466 \N
247 1 Publicación1.jpg image/jpeg 161491 2016-01-21 01:20:28.338945 124 2016-01-05 20:20:02.86485 2016-01-25 15:14:22.577737 \N
244 1 MeMo-Stand_453-02.pdf application/pdf 120009 2016-01-19 20:39:46.304332 122 2016-01-05 20:19:02.47981 2016-01-25 15:16:12.883819 \N
234 1 Stand_maxi-Model_copy.jpg image/jpeg 2127524 2016-01-21 18:18:10.334385 117 2016-01-05 20:17:24.083032 2016-01-25 15:17:12.304503 \N
233 1 Stand_maxi.jpg image/jpeg 306772 2016-01-21 18:18:10.314959 117 2016-01-05 20:17:24.080166 2016-01-25 15:17:24.616967 \N
230 1 TodoFlor_Plano_2014.jpg image/jpeg 367454 2016-01-08 13:19:08.062506 115 2016-01-05 20:16:49.577513 2016-01-25 15:17:55.297665 \N
229 1 TodoFlor_Plano_2014.jpg image/jpeg 367454 2016-01-11 14:16:44.579171 115 2016-01-05 20:16:49.574361 2016-01-25 15:18:00.962164 \N
232 1 StandFMarzo_2016-5.jpg image/jpeg 151466 2016-01-05 20:54:18.709277 116 2016-01-05 20:17:18.579962 2016-01-25 15:19:44.144834 \N
231 1 Stand_M2016-Model.pdf application/pdf 34369 2016-01-05 21:01:12.640005 116 2016-01-05 20:17:18.57668 2016-01-25 15:19:48.978919 \N
266 1 Stand_Oil_Painting_4.pdf application/pdf 130655 2016-01-25 19:14:36.215242 133 2016-01-05 20:28:25.296615 2016-01-25 20:18:49.710386 \N
138 1 render_2.jpg image/jpeg 50133 2016-01-19 19:35:48.871139 69 2016-01-05 20:01:41.303189 2016-01-25 15:26:08.580616 \N
265 1 Stand_Oil_Painting_5.pdf application/pdf 314293 2016-01-25 19:14:36.227557 133 2016-01-05 20:28:25.293123 2016-01-25 20:18:55.008901 \N
49 1 Plano_stand_AG_(_para_cargar_)_.pdf application/pdf 25163 2016-01-26 18:41:16.124112 25 2016-01-05 19:42:32.347559 2016-01-28 14:42:19.062374 \N
56 1 Cafira_2016_Planta_2.jpg image/jpeg 833979 2016-02-18 19:18:46.399338 28 2016-01-05 19:44:02.470615 2016-02-18 20:20:44.929438 \N
160 1 Planar-planocafira16.pdf application/pdf 519386 2016-01-28 16:34:59.845687 80 2016-01-05 20:06:28.806508 2016-01-29 12:59:10.696824 \N
141 1 PLANO_PLANTA.jpg image/jpeg 107730 2016-01-19 21:08:13.856411 71 2016-01-05 20:02:08.321885 2016-02-03 23:45:16.757116 \N
142 1 PLANO_PLANTA.jpg image/jpeg 287100 2016-01-25 18:06:34.392193 71 2016-01-05 20:02:08.331981 2016-02-03 23:45:09.731113 \N
274 1 plano_cafira_2016_PIANO_NOBILE.pdf application/pdf 48392 2016-02-03 22:55:35.754324 137 2016-01-05 20:31:14.657129 2016-02-03 23:36:15.590469 \N
167 1 Stand_Poltron_Plano_Planta.pdf application/pdf 9010 2016-01-27 14:34:50.540272 84 2016-01-05 20:07:39.250098 2016-01-28 14:35:08.959611 \N
66 1 PLANOS_STAND_altura_260.jpg image/jpeg 1364040 2016-01-26 18:49:27.984552 33 2016-01-05 19:48:24.959004 2016-01-28 14:37:21.735668 \N
65 1 PLANOS_STAND_altura_260.jpg image/jpeg 1364040 2016-01-26 18:48:53.51355 33 2016-01-05 19:48:24.956045 2016-01-28 14:37:35.572977 \N
44 1 VISTA_STAND_108_MARZO_2016.jpg image/jpeg 52210 2016-02-01 18:02:31.600886 22 2016-01-05 19:40:41.74924 2016-02-01 22:29:05.997957 \N
64 1 montaje_(1).jpg image/jpeg 303353 2016-02-26 00:48:06.208071 32 2016-01-05 19:47:14.964652 2016-02-26 12:41:57.512037 \N
162 1 Plano_LFrame_para_Cafira.pdf application/pdf 249014 2016-02-18 15:28:24.544594 81 2016-01-05 20:06:45.286516 2016-02-22 12:38:30.728464 \N
71 1 Plano_que_sirve_1.JPG image/jpeg 213510 2016-01-29 15:42:26.388865 36 2016-01-05 19:50:05.095468 2016-02-01 22:27:50.109354 \N
59 3 image.jpeg image/jpeg 88664 2016-03-08 14:24:48.015675 30 2016-01-05 19:46:01.340379 2016-03-08 14:24:48.053665 \N
31 1 Plano_STAND_CAFIRA.jpg image/jpeg 146633 2016-01-29 16:45:17.003341 16 2016-01-05 19:36:34.553394 2016-02-01 22:29:39.771839 \N
43 1 PLANTA_STAND_108_MARZO_2016.jpg image/jpeg 52803 2016-02-01 18:02:31.590603 22 2016-01-05 19:40:41.746141 2016-02-01 22:29:12.650709 \N
72 1 Plano_que_sirve_2.jpg image/jpeg 63048 2016-01-29 15:42:26.398598 36 2016-01-05 19:50:05.098667 2016-02-01 22:27:43.832655 \N
276 1 planta-manfroni.pdf application/pdf 485700 2016-02-04 14:49:14.41552 138 2016-01-05 20:39:08.313226 2016-02-11 13:44:22.230366 \N
48 1 \N \N \N \N 24 2016-01-05 19:41:21.182835 2016-02-11 14:08:06.263038 \N
38 1 \N \N \N \N 19 2016-01-05 19:38:36.743166 2016-02-11 14:08:15.853084 \N
32 1 \N \N \N \N 16 2016-01-05 19:36:34.561249 2016-02-11 14:08:41.281382 \N
29 1 plano_cafira_stand_107alcuza.jpg image/jpeg 666986 2016-02-15 16:47:41.307671 15 2016-01-05 19:36:05.477997 2016-02-16 13:55:30.73616 \N
57 1 Stand_447.jpg image/jpeg 21363 2016-02-12 17:49:43.178401 29 2016-01-05 19:44:53.10281 2016-02-16 17:43:52.729738 \N
35 1 2016_cafira_1.jpg image/jpeg 2378394 2016-02-18 19:44:03.46703 18 2016-01-05 19:37:52.333866 2016-02-18 20:24:32.202864 \N
22 1 plano_cafiraimg002.jpg image/jpeg 417207 2016-02-15 14:33:57.77141 11 2016-01-05 19:34:04.228612 2016-02-16 14:01:55.251511 \N
30 1 plano_cafira_stand_107alcuza.jpg image/jpeg 666986 2016-02-15 16:50:16.483864 15 2016-01-05 19:36:05.480968 2016-02-16 13:55:25.33711 \N
42 1 arke_Plano_Stand_2.pdf application/pdf 1372920 2016-02-11 19:18:14.376004 21 2016-01-05 19:39:43.798162 2016-02-16 13:54:57.921373 \N
24 1 STAND_FIUMINE_CAFIRA_OTOÑO_2016.pdf application/pdf 1949271 2016-02-25 18:53:47.034495 12 2016-01-05 19:34:19.765098 2016-02-29 13:07:26.352364 \N
54 1 \N \N \N \N 27 2016-01-05 19:43:34.893818 2016-03-10 14:08:42.59258 \N
58 1 Stand_447.jpg image/jpeg 21363 2016-02-12 17:50:04.701164 29 2016-01-05 19:44:53.105924 2016-02-16 17:43:48.39711 \N
25 1 escaneo_(1).jpg image/jpeg 3228933 2016-02-14 23:46:52.48308 13 2016-01-05 19:35:32.980361 2016-03-08 13:42:35.674376 \N
68 1 PLANTA_STAND_marzo2016.pdf application/pdf 310217 2016-02-12 18:58:43.44131 34 2016-01-05 19:48:56.369353 2016-02-16 13:49:16.65661 \N
67 1 VISTA_A__marzo_2016.pdf application/pdf 402790 2016-02-12 18:58:43.429053 34 2016-01-05 19:48:56.365806 2016-02-16 13:49:32.872033 \N
55 1 Cafira_2016_frente_3.jpg image/jpeg 1281548 2016-02-18 19:18:46.420862 28 2016-01-05 19:44:02.467157 2016-02-18 20:20:48.685034 \N
39 1 plano_arak_stand_2016.pdf application/pdf 180713 2016-02-18 18:44:37.895038 20 2016-01-05 19:39:06.629893 2016-02-18 20:22:27.900444 \N
36 1 2016_cafira_1.jpg image/jpeg 2378394 2016-02-18 19:44:49.707767 18 2016-01-05 19:37:52.338561 2016-02-18 20:24:16.570637 \N
40 1 plano_arak_stand_2016_completo_cafira.pdf application/pdf 246203 2016-02-18 18:44:37.883187 20 2016-01-05 19:39:06.633296 2016-02-18 20:22:24.209785 \N
61 1 Expo_Cafira_2016_final_2.pdf application/pdf 23027 2016-02-19 14:24:42.319081 31 2016-01-05 19:46:28.987735 2016-02-22 12:37:08.915298 \N
52 1 \N \N \N \N 26 2016-01-05 19:43:02.812819 2016-03-01 15:01:27.096414 \N
51 1 PLANO_AZ.jpg image/jpeg 160316 2016-02-29 20:20:06.948362 26 2016-01-05 19:43:02.809399 2016-03-01 14:58:40.411857 \N
46 1 \N \N \N \N 23 2016-01-05 19:40:52.374553 2016-03-07 19:27:12.688069 \N
45 1 planta_stand_001.jpg image/jpeg 296897 2016-03-03 18:22:57.55109 23 2016-01-05 19:40:52.370993 2016-03-07 19:27:03.917356 \N
103 1 STAND_CAFIRA_MARZO_2016.jpg image/jpeg 519891 2016-02-16 19:21:41.78775 52 2016-01-05 19:56:24.045041 2016-03-08 13:42:12.116692 \N
26 1 escaneo_(2).jpg image/jpeg 3228933 2016-02-14 23:46:52.538474 13 2016-01-05 19:35:32.983415 2016-03-08 13:42:23.905854 \N
70 1 \N \N \N \N 35 2016-01-05 19:49:22.665526 2016-03-08 18:28:31.525371 \N
60 2 image.jpeg image/jpeg 88664 2016-03-08 14:24:48.027937 30 2016-01-05 19:46:01.343297 2016-03-08 18:13:49.944619 Por favor informar con que cubriran la paneleria de fondo, la misma tiene 2.40m de altura.\r\nDel lado que hay un hidrante es decir mirando de frente el stand a mano izquierda el lateral es abierto, no se puede colocar elementos que no puedan ser removidos con facilidad.\r\n
69 1 \N \N \N \N 35 2016-01-05 19:49:22.662506 2016-03-08 18:31:49.940357 \N
23 1 Stand_Cafira.jpg image/jpeg 70166 2016-02-12 19:44:03.719837 12 2016-01-05 19:34:19.762129 2016-03-09 21:12:13.239455 \N
53 1 plano_stand_bello_export.jpg image/jpeg 1309717 2016-03-10 13:22:27.721025 27 2016-01-05 19:43:34.890878 2016-03-10 14:08:34.134305 \N
76 3 \N \N \N \N 38 2016-01-05 19:50:47.436827 2016-01-05 19:50:47.436827 \N
79 3 \N \N \N \N 40 2016-01-05 19:51:12.166973 2016-01-05 19:51:12.166973 \N
80 3 \N \N \N \N 40 2016-01-05 19:51:12.169751 2016-01-05 19:51:12.169751 \N
105 3 \N \N \N \N 53 2016-01-05 19:56:59.310318 2016-01-05 19:56:59.310318 \N
106 3 \N \N \N \N 53 2016-01-05 19:56:59.315737 2016-01-05 19:56:59.315737 \N
127 3 \N \N \N \N 64 2016-01-05 20:00:03.891834 2016-01-05 20:00:03.891834 \N
128 3 \N \N \N \N 64 2016-01-05 20:00:03.895032 2016-01-05 20:00:03.895032 \N
130 3 \N \N \N \N 65 2016-01-05 20:00:09.760925 2016-01-05 20:00:09.760925 \N
133 3 \N \N \N \N 67 2016-01-05 20:00:51.564324 2016-01-05 20:00:51.564324 \N
134 3 \N \N \N \N 67 2016-01-05 20:00:51.568025 2016-01-05 20:00:51.568025 \N
136 3 \N \N \N \N 68 2016-01-05 20:01:05.626706 2016-01-05 20:01:05.626706 \N
199 3 \N \N \N \N 100 2016-01-05 20:13:03.16994 2016-01-05 20:13:03.16994 \N
200 3 \N \N \N \N 100 2016-01-05 20:13:03.172846 2016-01-05 20:13:03.172846 \N
191 1 PLANO_RUBEN.jpg image/jpeg 1053688 2016-01-31 17:22:37.924991 96 2016-01-05 20:11:43.770251 2016-02-01 22:14:43.651728 \N
147 1 cafira-mar2016-stand119-estela-estampa.pdf application/pdf 356252 2016-01-28 12:49:58.865365 74 2016-01-05 20:03:45.942907 2016-01-28 14:36:39.533139 \N
159 1 Planar-planocafira16.jpeg image/jpeg 514986 2016-01-28 16:21:56.073499 80 2016-01-05 20:06:28.803646 2016-01-29 12:59:21.614935 \N
146 1 CAFIRA_2.pdf application/pdf 284422 2016-01-27 00:16:53.623949 73 2016-01-05 20:03:00.100625 2016-01-29 13:02:09.547113 \N
193 1 stand_cafira_.jpg image/jpeg 127090 2016-01-28 15:01:08.243334 97 2016-01-05 20:11:59.601947 2016-01-29 12:58:16.055419 \N
183 1 PLANO_1.JPG image/jpeg 416638 2016-02-01 14:12:20.450429 92 2016-01-05 20:10:01.70147 2016-02-01 22:24:47.554368 \N
205 1 plano_stand.jpg image/jpeg 308154 2016-01-29 15:15:37.124439 103 2016-01-05 20:13:53.912929 2016-02-01 22:14:08.549973 \N
157 1 Stand_129-_katmandu-planta.pdf application/pdf 93505 2016-02-01 15:23:44.652993 79 2016-01-05 20:05:57.37092 2016-02-01 22:26:21.159982 \N
87 1 PLANO_STAND_COMPONENT.jpg image/jpeg 437131 2016-02-01 17:47:34.326496 44 2016-01-05 19:53:01.454919 2016-02-01 22:27:06.47705 \N
122 1 \N \N \N \N 61 2016-01-05 19:59:18.123237 2016-02-11 14:02:56.221108 \N
195 1 iluminacion_rumah_marzo_2016.pdf application/pdf 121509 2016-02-02 13:26:05.715413 98 2016-01-05 20:12:06.578566 2016-02-03 23:41:49.575956 \N
171 1 plano_cafira_.jpg image/jpeg 213076 2016-02-04 11:54:42.616879 86 2016-01-05 20:08:09.547674 2016-02-11 13:55:27.547257 \N
110 1 \N \N \N \N 55 2016-01-05 19:57:34.829336 2016-02-11 14:04:31.848186 \N
175 1 Plano_1.pdf application/pdf 286801 2016-02-12 17:51:36.506811 88 2016-01-05 20:08:47.301043 2016-02-16 14:03:53.771645 \N
154 1 \N \N \N \N 77 2016-01-05 20:04:53.828681 2016-03-08 13:45:38.710351 \N
161 1 Plano_LFrame_para_Cafira.pdf application/pdf 249014 2016-02-18 15:25:07.540006 81 2016-01-05 20:06:45.283673 2016-02-22 12:38:36.021453 \N
194 1 \N \N \N \N 97 2016-01-05 20:11:59.604795 2016-02-11 13:54:36.174884 \N
172 1 plano_cafira_.jpg image/jpeg 213076 2016-02-04 11:55:16.332736 86 2016-01-05 20:08:09.550977 2016-02-11 13:55:22.021029 \N
100 1 \N \N \N \N 50 2016-01-05 19:54:56.700654 2016-02-11 14:06:59.441369 \N
102 1 Planta.pdf application/pdf 295896 2016-03-08 17:51:09.178558 51 2016-01-05 19:55:35.233919 2016-03-08 18:25:52.432374 \N
83 1 PLANO_CAFIRA_MARZO_2016.jpg image/jpeg 233166 2016-02-10 13:47:42.781326 42 2016-01-05 19:51:49.924569 2016-02-11 14:07:33.281418 \N
81 1 PLANO_STAND_marzo_2014-3.jpg image/jpeg 238842 2016-02-11 15:29:14.005703 41 2016-01-05 19:51:37.476894 2016-02-16 13:47:37.567965 \N
152 1 \N \N \N \N 76 2016-01-05 20:04:24.902504 2016-02-16 14:04:28.631713 \N
197 1 PLANO_CAFIRA_MARZO_2016.pdf application/pdf 185867 2016-02-14 19:54:02.831344 99 2016-01-05 20:12:35.389255 2016-02-18 14:27:21.971075 \N
89 1 PLANO_CAFIRA.pdf application/pdf 167175 2016-02-24 21:21:54.65391 45 2016-01-05 19:53:12.985302 2016-03-08 13:54:51.706102 \N