· 8 years ago · May 02, 2018, 08:56 AM
1--
2-- PostgreSQL database dump
3--
4
5SET statement_timeout = 0;
6SET lock_timeout = 0;
7SET client_encoding = 'UTF8';
8SET standard_conforming_strings = on;
9SET check_function_bodies = false;
10SET client_min_messages = warning;
11
12--
13-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
14--
15
16CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
17
18
19--
20-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
21--
22
23COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
24
25
26SET search_path = public, pg_catalog;
27
28--
29-- Name: branchtype; Type: TYPE; Schema: public; Owner: critic
30--
31
32CREATE TYPE branchtype AS ENUM (
33 'normal',
34 'review'
35);
36
37
38ALTER TYPE public.branchtype OWNER TO critic;
39
40--
41-- Name: changesettype; Type: TYPE; Schema: public; Owner: critic
42--
43
44CREATE TYPE changesettype AS ENUM (
45 'direct',
46 'custom',
47 'merge',
48 'conflicts'
49);
50
51
52ALTER TYPE public.changesettype OWNER TO critic;
53
54--
55-- Name: commentchainchangestate; Type: TYPE; Schema: public; Owner: critic
56--
57
58CREATE TYPE commentchainchangestate AS ENUM (
59 'draft',
60 'performed',
61 'rejected'
62);
63
64
65ALTER TYPE public.commentchainchangestate OWNER TO critic;
66
67--
68-- Name: commentchainlinesstate; Type: TYPE; Schema: public; Owner: critic
69--
70
71CREATE TYPE commentchainlinesstate AS ENUM (
72 'draft',
73 'current'
74);
75
76
77ALTER TYPE public.commentchainlinesstate OWNER TO critic;
78
79--
80-- Name: commentchainorigin; Type: TYPE; Schema: public; Owner: critic
81--
82
83CREATE TYPE commentchainorigin AS ENUM (
84 'old',
85 'new'
86);
87
88
89ALTER TYPE public.commentchainorigin OWNER TO critic;
90
91--
92-- Name: commentchainstate; Type: TYPE; Schema: public; Owner: critic
93--
94
95CREATE TYPE commentchainstate AS ENUM (
96 'draft',
97 'open',
98 'addressed',
99 'closed',
100 'empty'
101);
102
103
104ALTER TYPE public.commentchainstate OWNER TO critic;
105
106--
107-- Name: commentchaintype; Type: TYPE; Schema: public; Owner: critic
108--
109
110CREATE TYPE commentchaintype AS ENUM (
111 'issue',
112 'note'
113);
114
115
116ALTER TYPE public.commentchaintype OWNER TO critic;
117
118--
119-- Name: commentstate; Type: TYPE; Schema: public; Owner: critic
120--
121
122CREATE TYPE commentstate AS ENUM (
123 'draft',
124 'current',
125 'edited',
126 'deleted'
127);
128
129
130ALTER TYPE public.commentstate OWNER TO critic;
131
132--
133-- Name: filtertype; Type: TYPE; Schema: public; Owner: critic
134--
135
136CREATE TYPE filtertype AS ENUM (
137 'reviewer',
138 'watcher',
139 'ignored'
140);
141
142
143ALTER TYPE public.filtertype OWNER TO critic;
144
145--
146-- Name: preferencetype; Type: TYPE; Schema: public; Owner: critic
147--
148
149CREATE TYPE preferencetype AS ENUM (
150 'boolean',
151 'integer',
152 'string'
153);
154
155
156ALTER TYPE public.preferencetype OWNER TO critic;
157
158--
159-- Name: reviewfilechangestate; Type: TYPE; Schema: public; Owner: critic
160--
161
162CREATE TYPE reviewfilechangestate AS ENUM (
163 'draft',
164 'performed',
165 'rejected'
166);
167
168
169ALTER TYPE public.reviewfilechangestate OWNER TO critic;
170
171--
172-- Name: reviewfilestate; Type: TYPE; Schema: public; Owner: critic
173--
174
175CREATE TYPE reviewfilestate AS ENUM (
176 'pending',
177 'reviewed'
178);
179
180
181ALTER TYPE public.reviewfilestate OWNER TO critic;
182
183--
184-- Name: reviewstate; Type: TYPE; Schema: public; Owner: critic
185--
186
187CREATE TYPE reviewstate AS ENUM (
188 'draft',
189 'open',
190 'closed',
191 'dropped'
192);
193
194
195ALTER TYPE public.reviewstate OWNER TO critic;
196
197--
198-- Name: reviewtype; Type: TYPE; Schema: public; Owner: critic
199--
200
201CREATE TYPE reviewtype AS ENUM (
202 'official',
203 'rfc',
204 'ad-hoc'
205);
206
207
208ALTER TYPE public.reviewtype OWNER TO critic;
209
210--
211-- Name: reviewusertype; Type: TYPE; Schema: public; Owner: critic
212--
213
214CREATE TYPE reviewusertype AS ENUM (
215 'automatic',
216 'manual'
217);
218
219
220ALTER TYPE public.reviewusertype OWNER TO critic;
221
222--
223-- Name: userstatus; Type: TYPE; Schema: public; Owner: critic
224--
225
226CREATE TYPE userstatus AS ENUM (
227 'unknown',
228 'current',
229 'absent',
230 'retired'
231);
232
233
234ALTER TYPE public.userstatus OWNER TO critic;
235
236--
237-- Name: chaincomments(integer); Type: FUNCTION; Schema: public; Owner: critic
238--
239
240CREATE FUNCTION chaincomments(chain_id integer) RETURNS integer
241 LANGUAGE plpgsql
242 AS $$
243DECLARE
244 result INTEGER;
245BEGIN
246 SELECT COUNT(*) INTO STRICT result FROM comments WHERE chain=chain_id AND state='current';
247 RETURN result;
248END;
249$$;
250
251
252ALTER FUNCTION public.chaincomments(chain_id integer) OWNER TO critic;
253
254--
255-- Name: chainunread(integer, integer); Type: FUNCTION; Schema: public; Owner: critic
256--
257
258CREATE FUNCTION chainunread(chain_id integer, user_id integer) RETURNS integer
259 LANGUAGE plpgsql
260 AS $$
261DECLARE
262 result INTEGER;
263BEGIN
264 SELECT COUNT(*) INTO STRICT result FROM commentstoread JOIN comments ON (comments.id=commentstoread.comment) WHERE comments.chain=chain_id AND comments.state='current' AND commentstoread.uid=user_id;
265 RETURN result;
266END;
267$$;
268
269
270ALTER FUNCTION public.chainunread(chain_id integer, user_id integer) OWNER TO critic;
271
272SET default_tablespace = '';
273
274SET default_with_oids = false;
275
276--
277-- Name: batches; Type: TABLE; Schema: public; Owner: critic; Tablespace:
278--
279
280CREATE TABLE batches (
281 id integer NOT NULL,
282 review integer NOT NULL,
283 uid integer NOT NULL,
284 comment integer,
285 "time" timestamp without time zone DEFAULT now() NOT NULL
286);
287
288
289ALTER TABLE public.batches OWNER TO critic;
290
291--
292-- Name: batches_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
293--
294
295CREATE SEQUENCE batches_id_seq
296 START WITH 1
297 INCREMENT BY 1
298 NO MINVALUE
299 NO MAXVALUE
300 CACHE 1;
301
302
303ALTER TABLE public.batches_id_seq OWNER TO critic;
304
305--
306-- Name: batches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
307--
308
309ALTER SEQUENCE batches_id_seq OWNED BY batches.id;
310
311
312--
313-- Name: branches; Type: TABLE; Schema: public; Owner: critic; Tablespace:
314--
315
316CREATE TABLE branches (
317 id integer NOT NULL,
318 name character varying(256) NOT NULL,
319 repository integer NOT NULL,
320 head integer NOT NULL,
321 base integer,
322 tail integer,
323 type branchtype DEFAULT 'normal'::branchtype NOT NULL,
324 archived boolean DEFAULT false NOT NULL
325);
326
327
328ALTER TABLE public.branches OWNER TO critic;
329
330--
331-- Name: branches_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
332--
333
334CREATE SEQUENCE branches_id_seq
335 START WITH 1
336 INCREMENT BY 1
337 NO MINVALUE
338 NO MAXVALUE
339 CACHE 1;
340
341
342ALTER TABLE public.branches_id_seq OWNER TO critic;
343
344--
345-- Name: branches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
346--
347
348ALTER SEQUENCE branches_id_seq OWNED BY branches.id;
349
350
351--
352-- Name: changesets; Type: TABLE; Schema: public; Owner: critic; Tablespace:
353--
354
355CREATE TABLE changesets (
356 id integer NOT NULL,
357 parent integer,
358 child integer NOT NULL,
359 type changesettype NOT NULL
360);
361
362
363ALTER TABLE public.changesets OWNER TO critic;
364
365--
366-- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
367--
368
369CREATE SEQUENCE changesets_id_seq
370 START WITH 1
371 INCREMENT BY 1
372 NO MINVALUE
373 NO MAXVALUE
374 CACHE 1;
375
376
377ALTER TABLE public.changesets_id_seq OWNER TO critic;
378
379--
380-- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
381--
382
383ALTER SEQUENCE changesets_id_seq OWNED BY changesets.id;
384
385
386--
387-- Name: checkbranchnotes; Type: TABLE; Schema: public; Owner: critic; Tablespace:
388--
389
390CREATE TABLE checkbranchnotes (
391 repository integer NOT NULL,
392 branch character varying(256) NOT NULL,
393 upstream character varying(256) NOT NULL,
394 sha1 character(40) NOT NULL,
395 uid integer NOT NULL,
396 review integer,
397 text text
398);
399
400
401ALTER TABLE public.checkbranchnotes OWNER TO critic;
402
403--
404-- Name: chunks; Type: TABLE; Schema: public; Owner: critic; Tablespace:
405--
406
407CREATE TABLE chunks (
408 id integer NOT NULL,
409 changeset integer NOT NULL,
410 file integer NOT NULL,
411 deleteoffset integer NOT NULL,
412 deletecount integer NOT NULL,
413 insertoffset integer NOT NULL,
414 insertcount integer NOT NULL,
415 analysis text,
416 whitespace integer NOT NULL
417);
418
419
420ALTER TABLE public.chunks OWNER TO critic;
421
422--
423-- Name: chunks_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
424--
425
426CREATE SEQUENCE chunks_id_seq
427 START WITH 1
428 INCREMENT BY 1
429 NO MINVALUE
430 NO MAXVALUE
431 CACHE 1;
432
433
434ALTER TABLE public.chunks_id_seq OWNER TO critic;
435
436--
437-- Name: chunks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
438--
439
440ALTER SEQUENCE chunks_id_seq OWNED BY chunks.id;
441
442
443--
444-- Name: codecontexts; Type: TABLE; Schema: public; Owner: critic; Tablespace:
445--
446
447CREATE TABLE codecontexts (
448 sha1 character(40),
449 context character varying(256) NOT NULL,
450 first_line integer NOT NULL,
451 last_line integer NOT NULL
452);
453
454
455ALTER TABLE public.codecontexts OWNER TO critic;
456
457--
458-- Name: commentchainchanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
459--
460
461CREATE TABLE commentchainchanges (
462 batch integer,
463 uid integer NOT NULL,
464 chain integer NOT NULL,
465 "time" timestamp without time zone DEFAULT now() NOT NULL,
466 state commentchainchangestate DEFAULT 'draft'::commentchainchangestate NOT NULL,
467 from_type commentchaintype,
468 to_type commentchaintype,
469 from_state commentchainstate,
470 to_state commentchainstate,
471 from_last_commit integer,
472 to_last_commit integer,
473 from_addressed_by integer,
474 to_addressed_by integer
475);
476
477
478ALTER TABLE public.commentchainchanges OWNER TO critic;
479
480--
481-- Name: commentchainlines; Type: TABLE; Schema: public; Owner: critic; Tablespace:
482--
483
484CREATE TABLE commentchainlines (
485 chain integer NOT NULL,
486 uid integer,
487 "time" timestamp without time zone DEFAULT now() NOT NULL,
488 state commentchainlinesstate DEFAULT 'draft'::commentchainlinesstate NOT NULL,
489 sha1 character(40) NOT NULL,
490 first_line integer NOT NULL,
491 last_line integer NOT NULL
492);
493
494
495ALTER TABLE public.commentchainlines OWNER TO critic;
496
497--
498-- Name: commentchains; Type: TABLE; Schema: public; Owner: critic; Tablespace:
499--
500
501CREATE TABLE commentchains (
502 id integer NOT NULL,
503 review integer NOT NULL,
504 batch integer,
505 uid integer NOT NULL,
506 "time" timestamp without time zone DEFAULT now() NOT NULL,
507 type commentchaintype DEFAULT 'issue'::commentchaintype NOT NULL,
508 state commentchainstate DEFAULT 'draft'::commentchainstate NOT NULL,
509 origin commentchainorigin,
510 file integer,
511 first_commit integer,
512 last_commit integer,
513 closed_by integer,
514 addressed_by integer,
515 first_comment integer
516);
517
518
519ALTER TABLE public.commentchains OWNER TO critic;
520
521--
522-- Name: commentchains_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
523--
524
525CREATE SEQUENCE commentchains_id_seq
526 START WITH 1
527 INCREMENT BY 1
528 NO MINVALUE
529 NO MAXVALUE
530 CACHE 1;
531
532
533ALTER TABLE public.commentchains_id_seq OWNER TO critic;
534
535--
536-- Name: commentchains_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
537--
538
539ALTER SEQUENCE commentchains_id_seq OWNED BY commentchains.id;
540
541
542--
543-- Name: commentchainusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
544--
545
546CREATE TABLE commentchainusers (
547 chain integer NOT NULL,
548 uid integer NOT NULL
549);
550
551
552ALTER TABLE public.commentchainusers OWNER TO critic;
553
554--
555-- Name: commentmessageids; Type: TABLE; Schema: public; Owner: critic; Tablespace:
556--
557
558CREATE TABLE commentmessageids (
559 uid integer NOT NULL,
560 comment integer NOT NULL,
561 messageid character(24) NOT NULL
562);
563
564
565ALTER TABLE public.commentmessageids OWNER TO critic;
566
567--
568-- Name: comments; Type: TABLE; Schema: public; Owner: critic; Tablespace:
569--
570
571CREATE TABLE comments (
572 id integer NOT NULL,
573 chain integer NOT NULL,
574 batch integer,
575 uid integer NOT NULL,
576 "time" timestamp without time zone NOT NULL,
577 state commentstate NOT NULL,
578 comment text,
579 code text
580);
581
582
583ALTER TABLE public.comments OWNER TO critic;
584
585--
586-- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
587--
588
589CREATE SEQUENCE comments_id_seq
590 START WITH 1
591 INCREMENT BY 1
592 NO MINVALUE
593 NO MAXVALUE
594 CACHE 1;
595
596
597ALTER TABLE public.comments_id_seq OWNER TO critic;
598
599--
600-- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
601--
602
603ALTER SEQUENCE comments_id_seq OWNED BY comments.id;
604
605
606--
607-- Name: commentstoread; Type: TABLE; Schema: public; Owner: critic; Tablespace:
608--
609
610CREATE TABLE commentstoread (
611 uid integer NOT NULL,
612 comment integer NOT NULL
613);
614
615
616ALTER TABLE public.commentstoread OWNER TO critic;
617
618--
619-- Name: commits; Type: TABLE; Schema: public; Owner: critic; Tablespace:
620--
621
622CREATE TABLE commits (
623 id integer NOT NULL,
624 sha1 character(40) NOT NULL,
625 author_gituser integer NOT NULL,
626 commit_gituser integer NOT NULL,
627 author_time timestamp without time zone NOT NULL,
628 commit_time timestamp without time zone NOT NULL
629);
630
631
632ALTER TABLE public.commits OWNER TO critic;
633
634--
635-- Name: commits_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
636--
637
638CREATE SEQUENCE commits_id_seq
639 START WITH 1
640 INCREMENT BY 1
641 NO MINVALUE
642 NO MAXVALUE
643 CACHE 1;
644
645
646ALTER TABLE public.commits_id_seq OWNER TO critic;
647
648--
649-- Name: commits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
650--
651
652ALTER SEQUENCE commits_id_seq OWNED BY commits.id;
653
654
655--
656-- Name: customchangesets; Type: TABLE; Schema: public; Owner: critic; Tablespace:
657--
658
659CREATE TABLE customchangesets (
660 changeset integer NOT NULL,
661 "time" timestamp without time zone
662);
663
664
665ALTER TABLE public.customchangesets OWNER TO critic;
666
667--
668-- Name: edges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
669--
670
671CREATE TABLE edges (
672 parent integer NOT NULL,
673 child integer NOT NULL
674);
675
676
677ALTER TABLE public.edges OWNER TO critic;
678
679--
680-- Name: extensionfilterhookcommits; Type: TABLE; Schema: public; Owner: critic; Tablespace:
681--
682
683CREATE TABLE extensionfilterhookcommits (
684 event integer NOT NULL,
685 commit integer NOT NULL
686);
687
688
689ALTER TABLE public.extensionfilterhookcommits OWNER TO critic;
690
691--
692-- Name: extensionfilterhookevents; Type: TABLE; Schema: public; Owner: critic; Tablespace:
693--
694
695CREATE TABLE extensionfilterhookevents (
696 id integer NOT NULL,
697 filter integer NOT NULL,
698 review integer NOT NULL,
699 uid integer NOT NULL,
700 data text
701);
702
703
704ALTER TABLE public.extensionfilterhookevents OWNER TO critic;
705
706--
707-- Name: extensionfilterhookevents_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
708--
709
710CREATE SEQUENCE extensionfilterhookevents_id_seq
711 START WITH 1
712 INCREMENT BY 1
713 NO MINVALUE
714 NO MAXVALUE
715 CACHE 1;
716
717
718ALTER TABLE public.extensionfilterhookevents_id_seq OWNER TO critic;
719
720--
721-- Name: extensionfilterhookevents_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
722--
723
724ALTER SEQUENCE extensionfilterhookevents_id_seq OWNED BY extensionfilterhookevents.id;
725
726
727--
728-- Name: extensionfilterhookfiles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
729--
730
731CREATE TABLE extensionfilterhookfiles (
732 event integer NOT NULL,
733 file integer NOT NULL
734);
735
736
737ALTER TABLE public.extensionfilterhookfiles OWNER TO critic;
738
739--
740-- Name: extensionfilterhookroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
741--
742
743CREATE TABLE extensionfilterhookroles (
744 role integer NOT NULL,
745 name character varying(64) NOT NULL,
746 title character varying(64) NOT NULL,
747 role_description text,
748 data_description text
749);
750
751
752ALTER TABLE public.extensionfilterhookroles OWNER TO critic;
753
754--
755-- Name: extensionhookfilters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
756--
757
758CREATE TABLE extensionhookfilters (
759 id integer NOT NULL,
760 uid integer NOT NULL,
761 extension integer NOT NULL,
762 repository integer NOT NULL,
763 name character varying(64) NOT NULL,
764 path text NOT NULL,
765 data text
766);
767
768
769ALTER TABLE public.extensionhookfilters OWNER TO critic;
770
771--
772-- Name: extensionhookfilters_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
773--
774
775CREATE SEQUENCE extensionhookfilters_id_seq
776 START WITH 1
777 INCREMENT BY 1
778 NO MINVALUE
779 NO MAXVALUE
780 CACHE 1;
781
782
783ALTER TABLE public.extensionhookfilters_id_seq OWNER TO critic;
784
785--
786-- Name: extensionhookfilters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
787--
788
789ALTER SEQUENCE extensionhookfilters_id_seq OWNED BY extensionhookfilters.id;
790
791
792--
793-- Name: extensioninjectroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
794--
795
796CREATE TABLE extensioninjectroles (
797 role integer NOT NULL,
798 path character varying(64) NOT NULL
799);
800
801
802ALTER TABLE public.extensioninjectroles OWNER TO critic;
803
804--
805-- Name: extensioninstalls; Type: TABLE; Schema: public; Owner: critic; Tablespace:
806--
807
808CREATE TABLE extensioninstalls (
809 id integer NOT NULL,
810 uid integer,
811 extension integer NOT NULL,
812 version integer
813);
814
815
816ALTER TABLE public.extensioninstalls OWNER TO critic;
817
818--
819-- Name: extensioninstalls_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
820--
821
822CREATE SEQUENCE extensioninstalls_id_seq
823 START WITH 1
824 INCREMENT BY 1
825 NO MINVALUE
826 NO MAXVALUE
827 CACHE 1;
828
829
830ALTER TABLE public.extensioninstalls_id_seq OWNER TO critic;
831
832--
833-- Name: extensioninstalls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
834--
835
836ALTER SEQUENCE extensioninstalls_id_seq OWNED BY extensioninstalls.id;
837
838
839--
840-- Name: extensionlog; Type: TABLE; Schema: public; Owner: critic; Tablespace:
841--
842
843CREATE TABLE extensionlog (
844 extension integer NOT NULL,
845 uid integer NOT NULL,
846 category character varying(64) DEFAULT 'default'::character varying NOT NULL,
847 "time" timestamp without time zone DEFAULT now() NOT NULL,
848 text text NOT NULL
849);
850
851
852ALTER TABLE public.extensionlog OWNER TO critic;
853
854--
855-- Name: extensionpageroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
856--
857
858CREATE TABLE extensionpageroles (
859 role integer NOT NULL,
860 path character varying(64) NOT NULL
861);
862
863
864ALTER TABLE public.extensionpageroles OWNER TO critic;
865
866--
867-- Name: extensionprocesscommitsroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
868--
869
870CREATE TABLE extensionprocesscommitsroles (
871 role integer NOT NULL
872);
873
874
875ALTER TABLE public.extensionprocesscommitsroles OWNER TO critic;
876
877--
878-- Name: extensionroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
879--
880
881CREATE TABLE extensionroles (
882 id integer NOT NULL,
883 version integer NOT NULL,
884 script character varying(64) NOT NULL,
885 function character varying(64) NOT NULL
886);
887
888
889ALTER TABLE public.extensionroles OWNER TO critic;
890
891--
892-- Name: extensionroles_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
893--
894
895CREATE SEQUENCE extensionroles_id_seq
896 START WITH 1
897 INCREMENT BY 1
898 NO MINVALUE
899 NO MAXVALUE
900 CACHE 1;
901
902
903ALTER TABLE public.extensionroles_id_seq OWNER TO critic;
904
905--
906-- Name: extensionroles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
907--
908
909ALTER SEQUENCE extensionroles_id_seq OWNED BY extensionroles.id;
910
911
912--
913-- Name: extensionroles_inject; Type: VIEW; Schema: public; Owner: critic
914--
915
916CREATE VIEW extensionroles_inject AS
917 SELECT extensionroles.version,
918 extensioninjectroles.path,
919 extensionroles.script,
920 extensionroles.function
921 FROM (extensionroles
922 JOIN extensioninjectroles ON ((extensioninjectroles.role = extensionroles.id)));
923
924
925ALTER TABLE public.extensionroles_inject OWNER TO critic;
926
927--
928-- Name: extensionroles_page; Type: VIEW; Schema: public; Owner: critic
929--
930
931CREATE VIEW extensionroles_page AS
932 SELECT extensionroles.version,
933 extensionpageroles.path,
934 extensionroles.script,
935 extensionroles.function
936 FROM (extensionroles
937 JOIN extensionpageroles ON ((extensionpageroles.role = extensionroles.id)));
938
939
940ALTER TABLE public.extensionroles_page OWNER TO critic;
941
942--
943-- Name: extensions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
944--
945
946CREATE TABLE extensions (
947 id integer NOT NULL,
948 author integer,
949 name character varying(64) NOT NULL
950);
951
952
953ALTER TABLE public.extensions OWNER TO critic;
954
955--
956-- Name: extensions_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
957--
958
959CREATE SEQUENCE extensions_id_seq
960 START WITH 1
961 INCREMENT BY 1
962 NO MINVALUE
963 NO MAXVALUE
964 CACHE 1;
965
966
967ALTER TABLE public.extensions_id_seq OWNER TO critic;
968
969--
970-- Name: extensions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
971--
972
973ALTER SEQUENCE extensions_id_seq OWNED BY extensions.id;
974
975
976--
977-- Name: extensionstorage; Type: TABLE; Schema: public; Owner: critic; Tablespace:
978--
979
980CREATE TABLE extensionstorage (
981 extension integer NOT NULL,
982 uid integer NOT NULL,
983 key character varying(64) NOT NULL,
984 text text NOT NULL
985);
986
987
988ALTER TABLE public.extensionstorage OWNER TO critic;
989
990--
991-- Name: extensionversions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
992--
993
994CREATE TABLE extensionversions (
995 id integer NOT NULL,
996 extension integer NOT NULL,
997 name character varying(256) NOT NULL,
998 sha1 character(40) NOT NULL
999);
1000
1001
1002ALTER TABLE public.extensionversions OWNER TO critic;
1003
1004--
1005-- Name: extensionversions_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1006--
1007
1008CREATE SEQUENCE extensionversions_id_seq
1009 START WITH 1
1010 INCREMENT BY 1
1011 NO MINVALUE
1012 NO MAXVALUE
1013 CACHE 1;
1014
1015
1016ALTER TABLE public.extensionversions_id_seq OWNER TO critic;
1017
1018--
1019-- Name: extensionversions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1020--
1021
1022ALTER SEQUENCE extensionversions_id_seq OWNED BY extensionversions.id;
1023
1024
1025--
1026-- Name: externalusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1027--
1028
1029CREATE TABLE externalusers (
1030 id integer NOT NULL,
1031 uid integer,
1032 provider character varying(16) NOT NULL,
1033 account character varying(256) NOT NULL,
1034 email character varying(256),
1035 token character varying(256)
1036);
1037
1038
1039ALTER TABLE public.externalusers OWNER TO critic;
1040
1041--
1042-- Name: externalusers_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1043--
1044
1045CREATE SEQUENCE externalusers_id_seq
1046 START WITH 1
1047 INCREMENT BY 1
1048 NO MINVALUE
1049 NO MAXVALUE
1050 CACHE 1;
1051
1052
1053ALTER TABLE public.externalusers_id_seq OWNER TO critic;
1054
1055--
1056-- Name: externalusers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1057--
1058
1059ALTER SEQUENCE externalusers_id_seq OWNED BY externalusers.id;
1060
1061
1062--
1063-- Name: files; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1064--
1065
1066CREATE TABLE files (
1067 id integer NOT NULL,
1068 path text NOT NULL
1069);
1070
1071
1072ALTER TABLE public.files OWNER TO critic;
1073
1074--
1075-- Name: files_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1076--
1077
1078CREATE SEQUENCE files_id_seq
1079 START WITH 1
1080 INCREMENT BY 1
1081 NO MINVALUE
1082 NO MAXVALUE
1083 CACHE 1;
1084
1085
1086ALTER TABLE public.files_id_seq OWNER TO critic;
1087
1088--
1089-- Name: files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1090--
1091
1092ALTER SEQUENCE files_id_seq OWNED BY files.id;
1093
1094
1095--
1096-- Name: fileversions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1097--
1098
1099CREATE TABLE fileversions (
1100 changeset integer NOT NULL,
1101 file integer NOT NULL,
1102 old_sha1 character(40),
1103 new_sha1 character(40),
1104 old_mode character(6),
1105 new_mode character(6)
1106);
1107
1108
1109ALTER TABLE public.fileversions OWNER TO critic;
1110
1111--
1112-- Name: filters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1113--
1114
1115CREATE TABLE filters (
1116 id integer NOT NULL,
1117 uid integer NOT NULL,
1118 repository integer NOT NULL,
1119 path text NOT NULL,
1120 type filtertype NOT NULL,
1121 delegate text
1122);
1123
1124
1125ALTER TABLE public.filters OWNER TO critic;
1126
1127--
1128-- Name: filters_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1129--
1130
1131CREATE SEQUENCE filters_id_seq
1132 START WITH 1
1133 INCREMENT BY 1
1134 NO MINVALUE
1135 NO MAXVALUE
1136 CACHE 1;
1137
1138
1139ALTER TABLE public.filters_id_seq OWNER TO critic;
1140
1141--
1142-- Name: filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1143--
1144
1145ALTER SEQUENCE filters_id_seq OWNED BY filters.id;
1146
1147
1148--
1149-- Name: reviewfiles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1150--
1151
1152CREATE TABLE reviewfiles (
1153 id integer NOT NULL,
1154 review integer NOT NULL,
1155 changeset integer NOT NULL,
1156 file integer NOT NULL,
1157 deleted integer NOT NULL,
1158 inserted integer NOT NULL,
1159 state reviewfilestate DEFAULT 'pending'::reviewfilestate NOT NULL,
1160 reviewer integer,
1161 "time" timestamp without time zone
1162);
1163
1164
1165ALTER TABLE public.reviewfiles OWNER TO critic;
1166
1167--
1168-- Name: reviewuserfiles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1169--
1170
1171CREATE TABLE reviewuserfiles (
1172 file integer NOT NULL,
1173 uid integer NOT NULL,
1174 "time" timestamp without time zone DEFAULT now()
1175);
1176
1177
1178ALTER TABLE public.reviewuserfiles OWNER TO critic;
1179
1180--
1181-- Name: fullreviewuserfiles; Type: VIEW; Schema: public; Owner: critic
1182--
1183
1184CREATE VIEW fullreviewuserfiles AS
1185 SELECT reviewfiles.review,
1186 reviewfiles.changeset,
1187 reviewfiles.file,
1188 reviewfiles.deleted,
1189 reviewfiles.inserted,
1190 reviewfiles.state,
1191 reviewfiles.reviewer,
1192 reviewuserfiles.uid AS assignee
1193 FROM (reviewfiles
1194 JOIN reviewuserfiles ON ((reviewuserfiles.file = reviewfiles.id)));
1195
1196
1197ALTER TABLE public.fullreviewuserfiles OWNER TO critic;
1198
1199--
1200-- Name: gitusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1201--
1202
1203CREATE TABLE gitusers (
1204 id integer NOT NULL,
1205 email character varying(256) NOT NULL,
1206 fullname character varying(256) NOT NULL
1207);
1208
1209
1210ALTER TABLE public.gitusers OWNER TO critic;
1211
1212--
1213-- Name: gitusers_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1214--
1215
1216CREATE SEQUENCE gitusers_id_seq
1217 START WITH 1
1218 INCREMENT BY 1
1219 NO MINVALUE
1220 NO MAXVALUE
1221 CACHE 1;
1222
1223
1224ALTER TABLE public.gitusers_id_seq OWNER TO critic;
1225
1226--
1227-- Name: gitusers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1228--
1229
1230ALTER SEQUENCE gitusers_id_seq OWNED BY gitusers.id;
1231
1232
1233--
1234-- Name: knownremotes; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1235--
1236
1237CREATE TABLE knownremotes (
1238 url character varying(256) NOT NULL,
1239 pushing boolean NOT NULL
1240);
1241
1242
1243ALTER TABLE public.knownremotes OWNER TO critic;
1244
1245--
1246-- Name: lockedreviews; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1247--
1248
1249CREATE TABLE lockedreviews (
1250 review integer NOT NULL
1251);
1252
1253
1254ALTER TABLE public.lockedreviews OWNER TO critic;
1255
1256--
1257-- Name: mergebases; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1258--
1259
1260CREATE TABLE mergebases (
1261 commit integer NOT NULL,
1262 mergebase character(40)
1263);
1264
1265
1266ALTER TABLE public.mergebases OWNER TO critic;
1267
1268--
1269-- Name: mergereplays; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1270--
1271
1272CREATE TABLE mergereplays (
1273 original integer NOT NULL,
1274 replay integer NOT NULL
1275);
1276
1277
1278ALTER TABLE public.mergereplays OWNER TO critic;
1279
1280--
1281-- Name: newsitems; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1282--
1283
1284CREATE TABLE newsitems (
1285 id integer NOT NULL,
1286 date date DEFAULT now(),
1287 text text NOT NULL
1288);
1289
1290
1291ALTER TABLE public.newsitems OWNER TO critic;
1292
1293--
1294-- Name: newsitems_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1295--
1296
1297CREATE SEQUENCE newsitems_id_seq
1298 START WITH 1
1299 INCREMENT BY 1
1300 NO MINVALUE
1301 NO MAXVALUE
1302 CACHE 1;
1303
1304
1305ALTER TABLE public.newsitems_id_seq OWNER TO critic;
1306
1307--
1308-- Name: newsitems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1309--
1310
1311ALTER SEQUENCE newsitems_id_seq OWNED BY newsitems.id;
1312
1313
1314--
1315-- Name: newsread; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1316--
1317
1318CREATE TABLE newsread (
1319 item integer NOT NULL,
1320 uid integer NOT NULL
1321);
1322
1323
1324ALTER TABLE public.newsread OWNER TO critic;
1325
1326--
1327-- Name: oauthstates; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1328--
1329
1330CREATE TABLE oauthstates (
1331 state character varying(64) NOT NULL,
1332 url text,
1333 "time" timestamp without time zone DEFAULT now() NOT NULL
1334);
1335
1336
1337ALTER TABLE public.oauthstates OWNER TO critic;
1338
1339--
1340-- Name: preferences; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1341--
1342
1343CREATE TABLE preferences (
1344 item character varying(64) NOT NULL,
1345 type preferencetype NOT NULL,
1346 description text NOT NULL,
1347 per_system boolean DEFAULT true NOT NULL,
1348 per_user boolean DEFAULT true NOT NULL,
1349 per_repository boolean DEFAULT false NOT NULL,
1350 per_filter boolean DEFAULT false NOT NULL
1351);
1352
1353
1354ALTER TABLE public.preferences OWNER TO critic;
1355
1356--
1357-- Name: previousreachable; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1358--
1359
1360CREATE TABLE previousreachable (
1361 rebase integer NOT NULL,
1362 commit integer NOT NULL
1363);
1364
1365
1366ALTER TABLE public.previousreachable OWNER TO critic;
1367
1368--
1369-- Name: reachable; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1370--
1371
1372CREATE TABLE reachable (
1373 branch integer NOT NULL,
1374 commit integer NOT NULL
1375);
1376
1377
1378ALTER TABLE public.reachable OWNER TO critic;
1379
1380--
1381-- Name: relevantcommits; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1382--
1383
1384CREATE TABLE relevantcommits (
1385 commit integer NOT NULL,
1386 parent smallint NOT NULL,
1387 file integer NOT NULL,
1388 relevant integer NOT NULL
1389);
1390
1391
1392ALTER TABLE public.relevantcommits OWNER TO critic;
1393
1394--
1395-- Name: repositories; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1396--
1397
1398CREATE TABLE repositories (
1399 id integer NOT NULL,
1400 parent integer,
1401 name character varying(64) NOT NULL,
1402 path character varying(256) NOT NULL
1403);
1404
1405
1406ALTER TABLE public.repositories OWNER TO critic;
1407
1408--
1409-- Name: repositories_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1410--
1411
1412CREATE SEQUENCE repositories_id_seq
1413 START WITH 1
1414 INCREMENT BY 1
1415 NO MINVALUE
1416 NO MAXVALUE
1417 CACHE 1;
1418
1419
1420ALTER TABLE public.repositories_id_seq OWNER TO critic;
1421
1422--
1423-- Name: repositories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1424--
1425
1426ALTER SEQUENCE repositories_id_seq OWNED BY repositories.id;
1427
1428
1429--
1430-- Name: reviewassignmentchanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1431--
1432
1433CREATE TABLE reviewassignmentchanges (
1434 transaction integer NOT NULL,
1435 file integer NOT NULL,
1436 uid integer NOT NULL,
1437 assigned boolean NOT NULL
1438);
1439
1440
1441ALTER TABLE public.reviewassignmentchanges OWNER TO critic;
1442
1443--
1444-- Name: reviewassignmentstransactions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1445--
1446
1447CREATE TABLE reviewassignmentstransactions (
1448 id integer NOT NULL,
1449 review integer NOT NULL,
1450 assigner integer NOT NULL,
1451 note text,
1452 "time" timestamp without time zone DEFAULT now()
1453);
1454
1455
1456ALTER TABLE public.reviewassignmentstransactions OWNER TO critic;
1457
1458--
1459-- Name: reviewassignmentstransactions_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1460--
1461
1462CREATE SEQUENCE reviewassignmentstransactions_id_seq
1463 START WITH 1
1464 INCREMENT BY 1
1465 NO MINVALUE
1466 NO MAXVALUE
1467 CACHE 1;
1468
1469
1470ALTER TABLE public.reviewassignmentstransactions_id_seq OWNER TO critic;
1471
1472--
1473-- Name: reviewassignmentstransactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1474--
1475
1476ALTER SEQUENCE reviewassignmentstransactions_id_seq OWNED BY reviewassignmentstransactions.id;
1477
1478
1479--
1480-- Name: reviewchangesets; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1481--
1482
1483CREATE TABLE reviewchangesets (
1484 review integer NOT NULL,
1485 changeset integer NOT NULL
1486);
1487
1488
1489ALTER TABLE public.reviewchangesets OWNER TO critic;
1490
1491--
1492-- Name: reviewfilechanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1493--
1494
1495CREATE TABLE reviewfilechanges (
1496 batch integer,
1497 file integer NOT NULL,
1498 uid integer NOT NULL,
1499 "time" timestamp without time zone DEFAULT now() NOT NULL,
1500 state reviewfilechangestate DEFAULT 'draft'::reviewfilechangestate NOT NULL,
1501 from_state reviewfilestate NOT NULL,
1502 to_state reviewfilestate NOT NULL
1503);
1504
1505
1506ALTER TABLE public.reviewfilechanges OWNER TO critic;
1507
1508--
1509-- Name: reviewfiles_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1510--
1511
1512CREATE SEQUENCE reviewfiles_id_seq
1513 START WITH 1
1514 INCREMENT BY 1
1515 NO MINVALUE
1516 NO MAXVALUE
1517 CACHE 1;
1518
1519
1520ALTER TABLE public.reviewfiles_id_seq OWNER TO critic;
1521
1522--
1523-- Name: reviewfiles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1524--
1525
1526ALTER SEQUENCE reviewfiles_id_seq OWNED BY reviewfiles.id;
1527
1528
1529--
1530-- Name: users; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1531--
1532
1533CREATE TABLE users (
1534 id integer NOT NULL,
1535 name character varying(64) NOT NULL,
1536 fullname character varying(256),
1537 password character varying(256),
1538 email integer,
1539 status userstatus DEFAULT 'unknown'::userstatus NOT NULL
1540);
1541
1542
1543ALTER TABLE public.users OWNER TO critic;
1544
1545--
1546-- Name: reviewfilesharing; Type: VIEW; Schema: public; Owner: critic
1547--
1548
1549CREATE VIEW reviewfilesharing AS
1550 SELECT reviewfiles.review,
1551 reviewfiles.id AS file,
1552 count(reviewuserfiles.uid) AS reviewers
1553 FROM ((reviewfiles
1554 JOIN reviewuserfiles ON ((reviewfiles.id = reviewuserfiles.file)))
1555 JOIN users ON ((users.id = reviewuserfiles.uid)))
1556 WHERE (users.status = 'current'::userstatus)
1557 GROUP BY reviewfiles.review, reviewfiles.id;
1558
1559
1560ALTER TABLE public.reviewfilesharing OWNER TO critic;
1561
1562--
1563-- Name: reviewfilterchanges; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1564--
1565
1566CREATE TABLE reviewfilterchanges (
1567 transaction integer NOT NULL,
1568 uid integer NOT NULL,
1569 path text NOT NULL,
1570 type filtertype NOT NULL,
1571 created boolean NOT NULL
1572);
1573
1574
1575ALTER TABLE public.reviewfilterchanges OWNER TO critic;
1576
1577--
1578-- Name: reviewfilters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1579--
1580
1581CREATE TABLE reviewfilters (
1582 id integer NOT NULL,
1583 review integer NOT NULL,
1584 uid integer NOT NULL,
1585 path text NOT NULL,
1586 type filtertype NOT NULL,
1587 creator integer NOT NULL
1588);
1589
1590
1591ALTER TABLE public.reviewfilters OWNER TO critic;
1592
1593--
1594-- Name: reviewfilters_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1595--
1596
1597CREATE SEQUENCE reviewfilters_id_seq
1598 START WITH 1
1599 INCREMENT BY 1
1600 NO MINVALUE
1601 NO MAXVALUE
1602 CACHE 1;
1603
1604
1605ALTER TABLE public.reviewfilters_id_seq OWNER TO critic;
1606
1607--
1608-- Name: reviewfilters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1609--
1610
1611ALTER SEQUENCE reviewfilters_id_seq OWNED BY reviewfilters.id;
1612
1613
1614--
1615-- Name: reviewmergeconfirmations; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1616--
1617
1618CREATE TABLE reviewmergeconfirmations (
1619 id integer NOT NULL,
1620 review integer NOT NULL,
1621 uid integer NOT NULL,
1622 merge integer NOT NULL,
1623 tail integer,
1624 confirmed boolean DEFAULT false NOT NULL
1625);
1626
1627
1628ALTER TABLE public.reviewmergeconfirmations OWNER TO critic;
1629
1630--
1631-- Name: reviewmergeconfirmations_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1632--
1633
1634CREATE SEQUENCE reviewmergeconfirmations_id_seq
1635 START WITH 1
1636 INCREMENT BY 1
1637 NO MINVALUE
1638 NO MAXVALUE
1639 CACHE 1;
1640
1641
1642ALTER TABLE public.reviewmergeconfirmations_id_seq OWNER TO critic;
1643
1644--
1645-- Name: reviewmergeconfirmations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1646--
1647
1648ALTER SEQUENCE reviewmergeconfirmations_id_seq OWNED BY reviewmergeconfirmations.id;
1649
1650
1651--
1652-- Name: reviewmergecontributions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1653--
1654
1655CREATE TABLE reviewmergecontributions (
1656 id integer NOT NULL,
1657 merged integer NOT NULL
1658);
1659
1660
1661ALTER TABLE public.reviewmergecontributions OWNER TO critic;
1662
1663--
1664-- Name: reviewmessageids; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1665--
1666
1667CREATE TABLE reviewmessageids (
1668 uid integer NOT NULL,
1669 review integer NOT NULL,
1670 messageid character(24) NOT NULL
1671);
1672
1673
1674ALTER TABLE public.reviewmessageids OWNER TO critic;
1675
1676--
1677-- Name: reviewrebases; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1678--
1679
1680CREATE TABLE reviewrebases (
1681 id integer NOT NULL,
1682 review integer NOT NULL,
1683 old_head integer NOT NULL,
1684 new_head integer,
1685 old_upstream integer,
1686 new_upstream integer,
1687 equivalent_merge integer,
1688 replayed_rebase integer,
1689 uid integer NOT NULL,
1690 branch character varying(256)
1691);
1692
1693
1694ALTER TABLE public.reviewrebases OWNER TO critic;
1695
1696--
1697-- Name: reviewrebases_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1698--
1699
1700CREATE SEQUENCE reviewrebases_id_seq
1701 START WITH 1
1702 INCREMENT BY 1
1703 NO MINVALUE
1704 NO MAXVALUE
1705 CACHE 1;
1706
1707
1708ALTER TABLE public.reviewrebases_id_seq OWNER TO critic;
1709
1710--
1711-- Name: reviewrebases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1712--
1713
1714ALTER SEQUENCE reviewrebases_id_seq OWNED BY reviewrebases.id;
1715
1716
1717--
1718-- Name: reviewrecipientfilters; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1719--
1720
1721CREATE TABLE reviewrecipientfilters (
1722 review integer NOT NULL,
1723 uid integer,
1724 include boolean NOT NULL
1725);
1726
1727
1728ALTER TABLE public.reviewrecipientfilters OWNER TO critic;
1729
1730--
1731-- Name: reviews; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1732--
1733
1734CREATE TABLE reviews (
1735 id integer NOT NULL,
1736 type reviewtype NOT NULL,
1737 branch integer NOT NULL,
1738 origin integer,
1739 state reviewstate NOT NULL,
1740 serial integer DEFAULT 0 NOT NULL,
1741 closed_by integer,
1742 dropped_by integer,
1743 applyfilters boolean NOT NULL,
1744 applyparentfilters boolean NOT NULL,
1745 summary text,
1746 description text
1747);
1748
1749
1750ALTER TABLE public.reviews OWNER TO critic;
1751
1752--
1753-- Name: reviews_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1754--
1755
1756CREATE SEQUENCE reviews_id_seq
1757 START WITH 1
1758 INCREMENT BY 1
1759 NO MINVALUE
1760 NO MAXVALUE
1761 CACHE 1;
1762
1763
1764ALTER TABLE public.reviews_id_seq OWNER TO critic;
1765
1766--
1767-- Name: reviews_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1768--
1769
1770ALTER SEQUENCE reviews_id_seq OWNED BY reviews.id;
1771
1772
1773--
1774-- Name: reviewusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1775--
1776
1777CREATE TABLE reviewusers (
1778 review integer NOT NULL,
1779 uid integer NOT NULL,
1780 owner boolean DEFAULT false NOT NULL,
1781 type reviewusertype DEFAULT 'automatic'::reviewusertype NOT NULL
1782);
1783
1784
1785ALTER TABLE public.reviewusers OWNER TO critic;
1786
1787--
1788-- Name: roles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1789--
1790
1791CREATE TABLE roles (
1792 name character varying(64) NOT NULL,
1793 description text
1794);
1795
1796
1797ALTER TABLE public.roles OWNER TO critic;
1798
1799--
1800-- Name: scheduledreviewbrancharchivals; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1801--
1802
1803CREATE TABLE scheduledreviewbrancharchivals (
1804 review integer NOT NULL,
1805 deadline timestamp without time zone NOT NULL
1806);
1807
1808
1809ALTER TABLE public.scheduledreviewbrancharchivals OWNER TO critic;
1810
1811--
1812-- Name: systemidentities; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1813--
1814
1815CREATE TABLE systemidentities (
1816 key character varying(32) NOT NULL,
1817 name character varying(64),
1818 anonymous_scheme character varying(5) NOT NULL,
1819 authenticated_scheme character varying(5) NOT NULL,
1820 hostname character varying(265) NOT NULL,
1821 description character varying(256) NOT NULL,
1822 installed_sha1 character(40) NOT NULL,
1823 installed_at timestamp without time zone DEFAULT now() NOT NULL
1824);
1825
1826
1827ALTER TABLE public.systemidentities OWNER TO critic;
1828
1829--
1830-- Name: tags; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1831--
1832
1833CREATE TABLE tags (
1834 id integer NOT NULL,
1835 name character varying(256) NOT NULL,
1836 repository integer NOT NULL,
1837 sha1 character(40) NOT NULL
1838);
1839
1840
1841ALTER TABLE public.tags OWNER TO critic;
1842
1843--
1844-- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1845--
1846
1847CREATE SEQUENCE tags_id_seq
1848 START WITH 1
1849 INCREMENT BY 1
1850 NO MINVALUE
1851 NO MAXVALUE
1852 CACHE 1;
1853
1854
1855ALTER TABLE public.tags_id_seq OWNER TO critic;
1856
1857--
1858-- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1859--
1860
1861ALTER SEQUENCE tags_id_seq OWNED BY tags.id;
1862
1863
1864--
1865-- Name: timezones; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1866--
1867
1868CREATE TABLE timezones (
1869 name character varying(256) NOT NULL,
1870 abbrev character varying(16) NOT NULL,
1871 utc_offset interval NOT NULL
1872);
1873
1874
1875ALTER TABLE public.timezones OWNER TO critic;
1876
1877--
1878-- Name: trackedbranches; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1879--
1880
1881CREATE TABLE trackedbranches (
1882 id integer NOT NULL,
1883 repository integer NOT NULL,
1884 local_name character varying(256) NOT NULL,
1885 remote character varying(256) NOT NULL,
1886 remote_name character varying(256) NOT NULL,
1887 forced boolean NOT NULL,
1888 disabled boolean DEFAULT false NOT NULL,
1889 updating boolean DEFAULT false NOT NULL,
1890 delay interval NOT NULL,
1891 previous timestamp without time zone,
1892 next timestamp without time zone
1893);
1894
1895
1896ALTER TABLE public.trackedbranches OWNER TO critic;
1897
1898--
1899-- Name: trackedbranches_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1900--
1901
1902CREATE SEQUENCE trackedbranches_id_seq
1903 START WITH 1
1904 INCREMENT BY 1
1905 NO MINVALUE
1906 NO MAXVALUE
1907 CACHE 1;
1908
1909
1910ALTER TABLE public.trackedbranches_id_seq OWNER TO critic;
1911
1912--
1913-- Name: trackedbranches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1914--
1915
1916ALTER SEQUENCE trackedbranches_id_seq OWNED BY trackedbranches.id;
1917
1918
1919--
1920-- Name: trackedbranchlog; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1921--
1922
1923CREATE TABLE trackedbranchlog (
1924 branch integer NOT NULL,
1925 "time" timestamp without time zone DEFAULT now() NOT NULL,
1926 from_sha1 character(40),
1927 to_sha1 character(40) NOT NULL,
1928 hook_output text NOT NULL,
1929 successful boolean NOT NULL
1930);
1931
1932
1933ALTER TABLE public.trackedbranchlog OWNER TO critic;
1934
1935--
1936-- Name: trackedbranchusers; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1937--
1938
1939CREATE TABLE trackedbranchusers (
1940 branch integer NOT NULL,
1941 uid integer NOT NULL
1942);
1943
1944
1945ALTER TABLE public.trackedbranchusers OWNER TO critic;
1946
1947--
1948-- Name: userabsence; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1949--
1950
1951CREATE TABLE userabsence (
1952 uid integer NOT NULL,
1953 until date
1954);
1955
1956
1957ALTER TABLE public.userabsence OWNER TO critic;
1958
1959--
1960-- Name: useremails; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1961--
1962
1963CREATE TABLE useremails (
1964 id integer NOT NULL,
1965 uid integer NOT NULL,
1966 email character varying(256) NOT NULL,
1967 verified boolean,
1968 verification_token character varying(256)
1969);
1970
1971
1972ALTER TABLE public.useremails OWNER TO critic;
1973
1974--
1975-- Name: useremails_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
1976--
1977
1978CREATE SEQUENCE useremails_id_seq
1979 START WITH 1
1980 INCREMENT BY 1
1981 NO MINVALUE
1982 NO MAXVALUE
1983 CACHE 1;
1984
1985
1986ALTER TABLE public.useremails_id_seq OWNER TO critic;
1987
1988--
1989-- Name: useremails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
1990--
1991
1992ALTER SEQUENCE useremails_id_seq OWNED BY useremails.id;
1993
1994
1995--
1996-- Name: usergitemails; Type: TABLE; Schema: public; Owner: critic; Tablespace:
1997--
1998
1999CREATE TABLE usergitemails (
2000 email character varying(256) NOT NULL,
2001 uid integer NOT NULL
2002);
2003
2004
2005ALTER TABLE public.usergitemails OWNER TO critic;
2006
2007--
2008-- Name: userpreferences; Type: TABLE; Schema: public; Owner: critic; Tablespace:
2009--
2010
2011CREATE TABLE userpreferences (
2012 item character varying(64) NOT NULL,
2013 uid integer,
2014 repository integer,
2015 filter integer,
2016 "integer" integer,
2017 string text,
2018 CONSTRAINT check_repository_filter CHECK (((repository IS NULL) OR (filter IS NULL))),
2019 CONSTRAINT check_uid_filter CHECK (((filter IS NULL) OR (uid IS NOT NULL)))
2020);
2021
2022
2023ALTER TABLE public.userpreferences OWNER TO critic;
2024
2025--
2026-- Name: userresources; Type: TABLE; Schema: public; Owner: critic; Tablespace:
2027--
2028
2029CREATE TABLE userresources (
2030 uid integer NOT NULL,
2031 name character varying(32) NOT NULL,
2032 revision integer DEFAULT 0 NOT NULL,
2033 source text NOT NULL
2034);
2035
2036
2037ALTER TABLE public.userresources OWNER TO critic;
2038
2039--
2040-- Name: userroles; Type: TABLE; Schema: public; Owner: critic; Tablespace:
2041--
2042
2043CREATE TABLE userroles (
2044 uid integer NOT NULL,
2045 role character varying(64) NOT NULL
2046);
2047
2048
2049ALTER TABLE public.userroles OWNER TO critic;
2050
2051--
2052-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: critic
2053--
2054
2055CREATE SEQUENCE users_id_seq
2056 START WITH 1
2057 INCREMENT BY 1
2058 NO MINVALUE
2059 NO MAXVALUE
2060 CACHE 1;
2061
2062
2063ALTER TABLE public.users_id_seq OWNER TO critic;
2064
2065--
2066-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: critic
2067--
2068
2069ALTER SEQUENCE users_id_seq OWNED BY users.id;
2070
2071
2072--
2073-- Name: usersessions; Type: TABLE; Schema: public; Owner: critic; Tablespace:
2074--
2075
2076CREATE TABLE usersessions (
2077 key character(28) NOT NULL,
2078 uid integer NOT NULL,
2079 atime timestamp without time zone DEFAULT now()
2080);
2081
2082
2083ALTER TABLE public.usersessions OWNER TO critic;
2084
2085--
2086-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2087--
2088
2089ALTER TABLE ONLY batches ALTER COLUMN id SET DEFAULT nextval('batches_id_seq'::regclass);
2090
2091
2092--
2093-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2094--
2095
2096ALTER TABLE ONLY branches ALTER COLUMN id SET DEFAULT nextval('branches_id_seq'::regclass);
2097
2098
2099--
2100-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2101--
2102
2103ALTER TABLE ONLY changesets ALTER COLUMN id SET DEFAULT nextval('changesets_id_seq'::regclass);
2104
2105
2106--
2107-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2108--
2109
2110ALTER TABLE ONLY chunks ALTER COLUMN id SET DEFAULT nextval('chunks_id_seq'::regclass);
2111
2112
2113--
2114-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2115--
2116
2117ALTER TABLE ONLY commentchains ALTER COLUMN id SET DEFAULT nextval('commentchains_id_seq'::regclass);
2118
2119
2120--
2121-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2122--
2123
2124ALTER TABLE ONLY comments ALTER COLUMN id SET DEFAULT nextval('comments_id_seq'::regclass);
2125
2126
2127--
2128-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2129--
2130
2131ALTER TABLE ONLY commits ALTER COLUMN id SET DEFAULT nextval('commits_id_seq'::regclass);
2132
2133
2134--
2135-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2136--
2137
2138ALTER TABLE ONLY extensionfilterhookevents ALTER COLUMN id SET DEFAULT nextval('extensionfilterhookevents_id_seq'::regclass);
2139
2140
2141--
2142-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2143--
2144
2145ALTER TABLE ONLY extensionhookfilters ALTER COLUMN id SET DEFAULT nextval('extensionhookfilters_id_seq'::regclass);
2146
2147
2148--
2149-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2150--
2151
2152ALTER TABLE ONLY extensioninstalls ALTER COLUMN id SET DEFAULT nextval('extensioninstalls_id_seq'::regclass);
2153
2154
2155--
2156-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2157--
2158
2159ALTER TABLE ONLY extensionroles ALTER COLUMN id SET DEFAULT nextval('extensionroles_id_seq'::regclass);
2160
2161
2162--
2163-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2164--
2165
2166ALTER TABLE ONLY extensions ALTER COLUMN id SET DEFAULT nextval('extensions_id_seq'::regclass);
2167
2168
2169--
2170-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2171--
2172
2173ALTER TABLE ONLY extensionversions ALTER COLUMN id SET DEFAULT nextval('extensionversions_id_seq'::regclass);
2174
2175
2176--
2177-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2178--
2179
2180ALTER TABLE ONLY externalusers ALTER COLUMN id SET DEFAULT nextval('externalusers_id_seq'::regclass);
2181
2182
2183--
2184-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2185--
2186
2187ALTER TABLE ONLY files ALTER COLUMN id SET DEFAULT nextval('files_id_seq'::regclass);
2188
2189
2190--
2191-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2192--
2193
2194ALTER TABLE ONLY filters ALTER COLUMN id SET DEFAULT nextval('filters_id_seq'::regclass);
2195
2196
2197--
2198-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2199--
2200
2201ALTER TABLE ONLY gitusers ALTER COLUMN id SET DEFAULT nextval('gitusers_id_seq'::regclass);
2202
2203
2204--
2205-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2206--
2207
2208ALTER TABLE ONLY newsitems ALTER COLUMN id SET DEFAULT nextval('newsitems_id_seq'::regclass);
2209
2210
2211--
2212-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2213--
2214
2215ALTER TABLE ONLY repositories ALTER COLUMN id SET DEFAULT nextval('repositories_id_seq'::regclass);
2216
2217
2218--
2219-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2220--
2221
2222ALTER TABLE ONLY reviewassignmentstransactions ALTER COLUMN id SET DEFAULT nextval('reviewassignmentstransactions_id_seq'::regclass);
2223
2224
2225--
2226-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2227--
2228
2229ALTER TABLE ONLY reviewfiles ALTER COLUMN id SET DEFAULT nextval('reviewfiles_id_seq'::regclass);
2230
2231
2232--
2233-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2234--
2235
2236ALTER TABLE ONLY reviewfilters ALTER COLUMN id SET DEFAULT nextval('reviewfilters_id_seq'::regclass);
2237
2238
2239--
2240-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2241--
2242
2243ALTER TABLE ONLY reviewmergeconfirmations ALTER COLUMN id SET DEFAULT nextval('reviewmergeconfirmations_id_seq'::regclass);
2244
2245
2246--
2247-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2248--
2249
2250ALTER TABLE ONLY reviewrebases ALTER COLUMN id SET DEFAULT nextval('reviewrebases_id_seq'::regclass);
2251
2252
2253--
2254-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2255--
2256
2257ALTER TABLE ONLY reviews ALTER COLUMN id SET DEFAULT nextval('reviews_id_seq'::regclass);
2258
2259
2260--
2261-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2262--
2263
2264ALTER TABLE ONLY tags ALTER COLUMN id SET DEFAULT nextval('tags_id_seq'::regclass);
2265
2266
2267--
2268-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2269--
2270
2271ALTER TABLE ONLY trackedbranches ALTER COLUMN id SET DEFAULT nextval('trackedbranches_id_seq'::regclass);
2272
2273
2274--
2275-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2276--
2277
2278ALTER TABLE ONLY useremails ALTER COLUMN id SET DEFAULT nextval('useremails_id_seq'::regclass);
2279
2280
2281--
2282-- Name: id; Type: DEFAULT; Schema: public; Owner: critic
2283--
2284
2285ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
2286
2287
2288--
2289-- Data for Name: batches; Type: TABLE DATA; Schema: public; Owner: critic
2290--
2291
2292COPY batches (id, review, uid, comment, "time") FROM stdin;
2293\.
2294
2295
2296--
2297-- Name: batches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
2298--
2299
2300SELECT pg_catalog.setval('batches_id_seq', 1, false);
2301
2302
2303--
2304-- Data for Name: branches; Type: TABLE DATA; Schema: public; Owner: critic
2305--
2306
2307COPY branches (id, name, repository, head, base, tail, type, archived) FROM stdin;
23081 master 1 1 \N \N normal f
23092 master 2 953 \N \N normal f
23103 master 3 957 \N \N normal f
2311\.
2312
2313
2314--
2315-- Name: branches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
2316--
2317
2318SELECT pg_catalog.setval('branches_id_seq', 3, true);
2319
2320
2321--
2322-- Data for Name: changesets; Type: TABLE DATA; Schema: public; Owner: critic
2323--
2324
2325COPY changesets (id, parent, child, type) FROM stdin;
2326\.
2327
2328
2329--
2330-- Name: changesets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
2331--
2332
2333SELECT pg_catalog.setval('changesets_id_seq', 1, false);
2334
2335
2336--
2337-- Data for Name: checkbranchnotes; Type: TABLE DATA; Schema: public; Owner: critic
2338--
2339
2340COPY checkbranchnotes (repository, branch, upstream, sha1, uid, review, text) FROM stdin;
2341\.
2342
2343
2344--
2345-- Data for Name: chunks; Type: TABLE DATA; Schema: public; Owner: critic
2346--
2347
2348COPY chunks (id, changeset, file, deleteoffset, deletecount, insertoffset, insertcount, analysis, whitespace) FROM stdin;
2349\.
2350
2351
2352--
2353-- Name: chunks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
2354--
2355
2356SELECT pg_catalog.setval('chunks_id_seq', 1, false);
2357
2358
2359--
2360-- Data for Name: codecontexts; Type: TABLE DATA; Schema: public; Owner: critic
2361--
2362
2363COPY codecontexts (sha1, context, first_line, last_line) FROM stdin;
2364\.
2365
2366
2367--
2368-- Data for Name: commentchainchanges; Type: TABLE DATA; Schema: public; Owner: critic
2369--
2370
2371COPY commentchainchanges (batch, uid, chain, "time", state, from_type, to_type, from_state, to_state, from_last_commit, to_last_commit, from_addressed_by, to_addressed_by) FROM stdin;
2372\.
2373
2374
2375--
2376-- Data for Name: commentchainlines; Type: TABLE DATA; Schema: public; Owner: critic
2377--
2378
2379COPY commentchainlines (chain, uid, "time", state, sha1, first_line, last_line) FROM stdin;
2380\.
2381
2382
2383--
2384-- Data for Name: commentchains; Type: TABLE DATA; Schema: public; Owner: critic
2385--
2386
2387COPY commentchains (id, review, batch, uid, "time", type, state, origin, file, first_commit, last_commit, closed_by, addressed_by, first_comment) FROM stdin;
2388\.
2389
2390
2391--
2392-- Name: commentchains_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
2393--
2394
2395SELECT pg_catalog.setval('commentchains_id_seq', 1, false);
2396
2397
2398--
2399-- Data for Name: commentchainusers; Type: TABLE DATA; Schema: public; Owner: critic
2400--
2401
2402COPY commentchainusers (chain, uid) FROM stdin;
2403\.
2404
2405
2406--
2407-- Data for Name: commentmessageids; Type: TABLE DATA; Schema: public; Owner: critic
2408--
2409
2410COPY commentmessageids (uid, comment, messageid) FROM stdin;
2411\.
2412
2413
2414--
2415-- Data for Name: comments; Type: TABLE DATA; Schema: public; Owner: critic
2416--
2417
2418COPY comments (id, chain, batch, uid, "time", state, comment, code) FROM stdin;
2419\.
2420
2421
2422--
2423-- Name: comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
2424--
2425
2426SELECT pg_catalog.setval('comments_id_seq', 1, false);
2427
2428
2429--
2430-- Data for Name: commentstoread; Type: TABLE DATA; Schema: public; Owner: critic
2431--
2432
2433COPY commentstoread (uid, comment) FROM stdin;
2434\.
2435
2436
2437--
2438-- Data for Name: commits; Type: TABLE DATA; Schema: public; Owner: critic
2439--
2440
2441COPY commits (id, sha1, author_gituser, commit_gituser, author_time, commit_time) FROM stdin;
24421 0a0520fc75bd1570bcb77c22db1d26df91d4d74d 1 1 2015-10-21 12:17:32 2015-10-22 06:22:02
24432 5f8e4dcc124b3651cdc6e020153d5a9f7075e95a 1 2 2015-06-29 11:05:27 2015-10-18 11:53:34
24443 e5191199449af617baeb5f7c6e04be0bb3544d54 1 2 2015-06-29 09:27:04 2015-10-18 11:53:34
24454 4aa760fcc4986b1fd69d949cff2a28e258be26c7 1 2 2015-06-29 09:14:53 2015-10-18 11:53:34
24465 5114c4368f4d1398ca2ac97556d0606ccd227325 1 2 2015-06-29 09:18:52 2015-10-18 11:53:34
24476 0600c0a6313a5536c9ed452b9d6149788d6220c2 1 2 2015-06-30 06:43:43 2015-10-18 11:53:34
24487 21fc8f2740b2b5ab134948ad2470dce55313ed29 3 2 2015-10-16 03:32:19 2015-10-16 07:41:12
24498 849e24044f0f4e66a626df7eeb040bc96b69d1b8 4 2 2015-09-03 23:53:51 2015-09-30 07:02:15
24509 8eb0611583911980e5aab4b383f0cedb7488337b 1 1 2015-07-17 12:51:00 2015-07-17 12:51:00
245110 f32a41b8c209440b2cbf208b1790320ef6ba3ecb 1 2 2015-06-23 08:15:38 2015-07-14 09:12:28
245211 2e1fc8efa09a448f65aea7528d0d0bf12cc1211d 1 2 2014-12-01 12:05:17 2015-07-14 09:12:28
245312 7571948b669b7848550ac1f0e863d634342ea919 5 5 2015-07-07 21:20:02 2015-07-07 21:20:02
245413 31a73931748db6eb7966c23cf57d2724d8cbcb24 2 2 2015-06-01 15:47:09 2015-06-02 14:36:14
245514 7610768ee0cc0cc97374711a06ff62adc022863c 1 2 2015-06-02 12:38:33 2015-06-02 14:36:14
245615 383eea10d7b0735b44fd3e8a90e4e8b7688a388d 1 1 2015-02-02 12:36:14 2015-02-02 12:36:14
245716 ba1568b2bc291193de49c7f0650842595a807889 1 2 2015-01-13 16:31:55 2015-01-19 14:21:12
245817 3932633878e2cf193e8985ac4d141ee52aa77802 1 2 2015-01-14 12:15:19 2015-01-19 14:21:12
245918 528b9200e872db5c101accb2098373bf438a6c75 1 2 2015-01-13 16:26:08 2015-01-19 14:21:12
246019 bdb3902a5a00d06c84407eba039a508b2ade9c73 1 2 2015-01-13 16:14:31 2015-01-19 14:21:12
246120 19ca048ae0f2d9bef8aedb0f3dd84b5b9d07c0df 1 2 2015-01-13 16:12:17 2015-01-19 14:21:12
246221 0b0507320fe7cfb81c2a15e3e57a85926801d4ae 6 2 2015-01-02 12:25:12 2015-01-08 15:23:03
246322 844357723bbab9200b85da1eaf018792cf3ca495 6 6 2014-12-29 11:29:12 2015-01-02 11:27:01
246423 cb2a72530ff9e4f9b67c5458b8296b09cb7c640d 6 2 2014-12-29 10:36:01 2015-01-02 11:20:50
246524 75ef2821fa2175af28955987b44701539959f519 6 2 2014-12-29 10:34:10 2015-01-02 11:20:50
246625 5364fffd9ba65959ce40347f957806f5d69ec460 2 2 2014-12-30 11:58:01 2014-12-30 12:03:10
246726 3172e2e9dc5bceaf9e8eecaaca0c825a603b6305 1 2 2014-12-19 14:33:25 2014-12-28 10:42:46
246827 b59915071d5078953f127b1a36ccdc36e1724c05 1 2 2014-12-11 11:42:43 2014-12-18 12:14:40
246928 80d30b517de955316d23109df956a6825cc6aa7e 1 2 2014-10-15 10:14:23 2014-12-10 15:51:29
247029 0103797d252e133d9b50479375dd272a38124609 1 2 2014-09-18 15:09:04 2014-12-10 14:24:34
247130 89a1e66ef5203c4e64c9e0e1fb1ecac847e3482e 1 2 2014-09-18 14:43:55 2014-12-10 14:24:34
247231 cfd11e616defa6e0c9510bc8d393a3ad712d7f0e 1 2 2014-09-15 15:47:06 2014-12-10 11:41:54
247332 bf402d6c8d3f01350bcbfbb50a166951e629d4ba 1 2 2014-09-15 15:42:05 2014-12-10 11:41:54
247433 e4486e331749a130785241cdc614fbcc2cc112ac 7 7 2014-12-08 17:59:26 2014-12-08 17:59:26
247534 da5cfeb0b00035b2b7a6e315fdadde15bf3a4446 1 1 2014-11-24 11:40:28 2014-11-24 11:40:28
247635 3ed61976e3d91f08310824075d805d32df5599e9 1 1 2014-11-24 11:40:13 2014-11-24 11:40:13
247736 3db5c3d02a51ba2cf699f18e502dd098e0664667 6 2 2014-10-21 10:11:50 2014-11-11 07:46:45
247837 366d65b841ba372130cc40ed873d19568e128a0a 1 2 2014-10-15 12:10:45 2014-11-11 07:46:45
247938 559fa244c8910a22af3a223fd27132d95d859b0e 6 2 2014-10-14 15:19:31 2014-11-11 07:46:45
248039 2c01388f0766ea6f61e179c05bcbfdb8ae05e435 1 2 2014-09-30 13:52:36 2014-11-11 07:46:45
248140 10423056f30238347246c6e3d251a04e9a6f370c 1 2 2014-09-30 13:51:31 2014-11-11 07:46:45
248241 a7a24ed80e348ef877105a590b232792905cb29b 1 2 2014-09-30 13:49:43 2014-11-11 07:46:45
248342 14b60862e76fdf064902cfd8812fb1a64a8530e2 1 2 2014-09-30 13:48:20 2014-11-11 07:46:45
248443 2840aca8b064beb6cc5ac3ef4a737ecd2d33ddaa 6 2 2014-09-06 17:50:03 2014-11-11 07:46:44
248544 a4df693d9d2f6e16e05ae46259b8ac38d84c5088 1 2 2014-09-30 13:22:56 2014-11-11 07:46:44
248645 0847f71464548423ad8aaf683ffada535e1d56ee 1 2 2014-09-04 06:56:12 2014-11-11 07:46:44
248746 928543ca3833219bd4d972f3e58425df273d349c 1 1 2014-10-22 10:40:30 2014-10-22 10:43:40
248847 bd79c50cfc5741ea2b67eca12241b1911280d968 1 1 2014-10-16 08:08:47 2014-10-16 08:08:47
248948 1a9e4bf50fe88af7f23a773d9e5523668555430b 1 2 2014-10-09 11:04:17 2014-10-10 12:09:41
249049 cb3d2a63024828fd441d6161744cf7d551713495 1 2 2014-10-07 06:44:39 2014-10-10 12:09:40
249150 88b46a93a3d2f4163633193273944c17626f0568 8 9 2014-10-04 15:57:17 2014-10-05 20:19:53
249251 8227e63a9568195007dae7041fe1a108eb1a3f38 1 2 2014-09-18 11:38:32 2014-09-20 09:04:15
249352 c5650e382826275963b36a1c06e5a1386a124b12 6 2 2014-09-17 04:30:20 2014-09-20 08:52:30
249453 22c9411d1b764b3d94a04fb02981ecfd4caeebcb 1 2 2014-09-14 09:05:44 2014-09-17 11:44:16
249554 6968fb097ac63891eec326d2cc86ea94eff0b22d 6 2 2014-03-27 17:02:59 2014-09-17 11:44:16
249655 0a155d3e1f544cd2784fcb8ba2e77b82a18a84c3 6 2 2014-04-22 11:41:06 2014-09-17 11:44:16
249756 40ca01ba1dfb4eb09b0cae5b0ebb4e4c20e415e5 6 2 2014-03-15 09:01:07 2014-09-17 11:44:16
249857 fff52839005f1b0e0f56cc07968decc5135b2c3d 6 2 2014-03-14 15:06:22 2014-09-17 11:44:16
249958 67091a0a60fb10571a1dbf1624f11760283acaf1 6 2 2013-12-09 10:56:25 2014-09-17 11:44:16
250059 265c2b2b0ec4578d3e67df854fac4c1ace687361 6 2 2013-11-18 11:23:00 2014-09-17 11:44:16
250160 9282233e30fa6ed9214451978b1aee9ea7e4686e 6 2 2013-11-18 11:11:41 2014-09-17 11:44:16
250261 5d1275eafa208469f13b82f3943b10fd32c5a378 6 2 2013-11-18 11:07:42 2014-09-17 11:44:16
250362 afe0019765d49f2dd54190dd95be5a6701708086 6 2 2013-11-18 09:45:41 2014-09-17 11:44:16
250463 fe5986586931bce803e5525e1420c67405977377 6 2 2013-11-17 17:45:31 2014-09-17 11:44:16
250564 8b1b5a6cd827850a1423cd27807bd40696ed86ab 6 2 2013-11-17 17:40:56 2014-09-17 11:44:16
250665 71ab2efbd8b851816b3573b1887718928c0f0dcd 6 2 2013-11-17 17:39:29 2014-09-17 11:44:15
250766 e38e7e88b66fb7c35df86c019589a02952c66f09 6 2 2013-11-17 17:37:18 2014-09-17 11:44:15
250867 31b5a597e5258cbd7a7367ed00ce83c7ba3df3ca 6 2 2013-11-16 15:26:41 2014-09-17 11:44:15
250968 4e6d5d6ba285a8bb2a642b1e8a724ecba7ab9ce9 6 2 2013-11-16 15:24:33 2014-09-17 11:44:15
251069 aba5c98e385b9122c280f54583759964ffa7d370 6 2 2013-11-16 15:23:06 2014-09-17 11:44:15
251170 f63b95b53ee50d0fd00ea5b28d4c26f923f6c8e7 6 2 2013-11-15 14:10:02 2014-09-17 11:44:15
251271 1eb6c38e4294308af3e41467aaf4a724b3724652 6 2 2013-11-15 14:03:18 2014-09-17 11:44:15
251372 aa02c72071169cb92b0fb836872193d2f09821f6 6 2 2013-11-15 11:00:06 2014-09-17 11:44:15
251473 3632f3d3de0e56a140bb208e5cb71108d9fb1f4f 6 2 2013-11-15 10:52:31 2014-09-17 11:44:15
251574 269c95fd702d9fb3b62d5bd99a5582db63ace558 6 2 2013-11-15 10:50:44 2014-09-17 11:44:15
251675 f435dcf40e1d03186ca9b4ec5e1c70cd92ee0eb2 6 2 2013-11-15 10:46:05 2014-09-17 11:44:15
251776 f08457c220bb30f15c921f10bd4d8d99894fc682 6 2 2014-09-04 06:23:34 2014-09-17 11:44:14
251877 1587963a1d7f4e49f34f15c87bac29d059b0c556 5 5 2014-09-16 09:15:54 2014-09-16 09:16:54
251978 5ec73b9a9d0dcf621c1a069b15b27c69010a53fe 1 2 2014-09-10 15:45:06 2014-09-12 08:51:55
252079 6123508048b9eb3ae108e256d62372b119f0f997 6 2 2014-04-03 15:22:51 2014-09-11 15:18:20
252180 6012b982df6f992f08402c8df2fcc81d861053fa 6 2 2014-04-03 12:01:04 2014-09-11 15:18:20
252281 d2e7b26c1226bd5569d9aa74d4ad0c69e8c0da5a 6 2 2014-04-03 10:36:20 2014-09-11 15:18:20
252382 371d4b99d09ca07d76fb9632fdf5f3da5defcd00 6 2 2014-04-04 06:04:35 2014-09-11 15:18:20
252483 4954e0d229f105482700fb37be4fb52d2644c457 6 2 2014-04-04 06:01:58 2014-09-11 15:18:20
252584 b28729afd5cccb0fc097747d8785e905c914f119 6 2 2014-04-03 14:59:53 2014-09-11 15:18:20
252685 3b4726095c8160c300f0b500717d359cff438cb3 6 2 2014-04-03 14:56:03 2014-09-11 15:18:20
252786 fee6b9905d36d3f7f0ef35349c10f7cd476af536 6 2 2014-04-03 14:54:44 2014-09-11 15:18:20
252887 fa5bc1c30589bfc83aed8cf49250fa5b94e7588a 6 2 2014-04-03 14:51:10 2014-09-11 15:18:20
252988 5145107f022a3fe5ec1e6667840ba8240d03084b 6 2 2014-04-03 13:49:53 2014-09-11 15:18:20
253089 76672a43d536c0fa7c9c4e74f42aa5508b31f024 6 2 2014-04-16 11:40:37 2014-09-10 11:42:07
253190 a5f76e5d321278f9dfef2f8b0d54ee985592e5de 1 2 2014-09-08 11:09:45 2014-09-10 11:42:07
253291 ca1ce0bce105c917910c2ae428ee32143689eadb 1 2 2014-08-28 15:09:03 2014-09-10 11:42:07
253392 d86733e34c5ed0eafadfe0621b7e530ddd4e937d 1 1 2014-09-10 09:24:48 2014-09-10 09:24:48
253493 2e88973c2dc614c6ab689f7ab412ce922c9c853a 1 2 2014-09-04 15:38:38 2014-09-05 09:27:27
253594 085595107c6f9e5af2bcef90a71e4eeae8a9568c 1 2 2014-09-04 15:53:07 2014-09-05 09:09:56
253695 388e4160721577e684a704974c7e2a65be168ac7 1 1 2014-09-04 14:03:19 2014-09-04 14:04:14
253796 4fd78405ff112cf2f9b4dfb66b8d3c44867b6a0a 6 2 2014-02-16 16:41:35 2014-09-02 10:00:59
253897 64c9dee88970dee9b7f4ddec0f8966b9a173a4c4 1 2 2014-08-26 08:44:19 2014-09-02 10:00:58
253998 ea02a14ecdb261bf74e208a991ff648df021d346 1 2 2014-08-29 09:55:35 2014-08-29 13:24:30
254099 f9bef4053781b487f10d2d1c1da988a48df05dd0 1 2 2014-08-29 10:48:23 2014-08-29 13:24:30
2541100 1d554e04ec58c087d76502c60a154aee50d02eb0 1 2 2014-08-29 10:27:06 2014-08-29 13:24:30
2542101 ced50ca2208c8440becbccdee7239994435c879a 1 1 2014-08-27 11:15:12 2014-08-27 11:15:27
2543102 399f0e5b6f01126000af704830c016f8c8a55af9 5 5 2014-08-27 09:16:34 2014-08-27 10:46:10
2544103 e0e46a507476b18f72d92b0f107ce51537115f89 1 1 2014-08-27 07:46:15 2014-08-27 07:46:47
2545104 673763ac8b93df2707fe4b5858e74e2c8037387e 6 10 2014-02-28 14:01:33 2014-08-26 17:44:46
2546105 cf3cfa628632b6d0978af58bf8edefff820e6a3d 6 10 2014-06-30 15:21:07 2014-08-25 20:00:23
2547106 253235f5c20c9ec5e8e520a3fef35fc59491332f 6 10 2014-06-30 15:12:30 2014-08-25 20:00:22
2548107 32e8f3cdbac1089000ab58b16b23591a5a5c5f35 6 10 2014-06-09 14:23:43 2014-08-25 11:29:19
2549108 694ba15763dd1505eefc509a3c05687cb15fd484 6 10 2014-06-09 14:21:35 2014-08-25 11:29:19
2550109 3d56ba6814853fe0a031cb2af42f9fe493099ca5 6 10 2014-06-09 10:58:16 2014-08-25 11:29:19
2551110 184d3c5db8f24acfa5bbbfbf1e63fdb4f3285bf6 6 10 2014-06-09 10:53:59 2014-08-25 11:29:18
2552111 6660968e498a4066b1cb4b87e0bfd747eb0fd6f2 6 10 2014-08-22 11:51:44 2014-08-24 09:18:12
2553112 48c4b857053b352a00b975c305d900d611fc77c9 6 10 2014-08-22 11:24:21 2014-08-24 09:18:12
2554113 448e971d018dd8d1d2e2f3208f98ac13bc6ea050 1 10 2014-08-24 09:05:09 2014-08-24 09:18:11
2555114 9ba7216e2c8861855621542f96231dd81eb21524 1 10 2014-08-24 09:01:05 2014-08-24 09:18:11
2556115 3a4938bf8c73b252f4594c1a2ad0327ffc5569c8 6 10 2014-08-22 11:20:40 2014-08-24 09:18:11
2557116 b60dc44645d964009106e5c76ac6947f4770abb7 6 10 2014-03-03 07:12:59 2014-08-24 09:18:11
2558117 a469663dcc613202fb89e8d2f4116ca8bd054cae 6 10 2014-03-02 09:51:35 2014-08-24 09:18:11
2559118 4ba5d45781ff24e5a74b872160e162b1053984eb 6 10 2014-03-02 09:47:32 2014-08-24 09:18:11
2560119 cb4b7a9ef64537edd16a3bb986be9c301ead8b05 6 10 2014-03-02 09:43:58 2014-08-24 09:18:10
2561120 1f17fd8c01c5daef2e92cf28ff5db9531e41c0bf 6 10 2014-03-02 09:40:44 2014-08-24 09:18:10
2562121 70459167c9b4324d552d227e8efd6f944e1eec28 6 10 2014-03-01 13:02:53 2014-08-24 09:18:10
2563122 33f8023b7218ed7ded13a92545211cca26c4d3d7 6 10 2014-03-01 12:46:17 2014-08-24 09:18:10
2564123 d3f643652078a3666e25ed5518b79df938e5f010 6 10 2014-03-01 12:41:43 2014-08-24 09:18:10
2565124 f8b46c354196cabd40d4d999a9094ecf50ce2a58 6 10 2014-03-01 12:37:23 2014-08-24 09:18:09
2566125 35f5e0367c962ac1127a524c66466b3844a39487 6 10 2014-03-01 12:33:28 2014-08-24 09:18:09
2567126 8d0c3f8c4c195e46767994f73ec84b35a669e122 6 10 2014-03-01 12:23:19 2014-08-24 09:18:09
2568127 6d0c8a7252def4f5c257bc68e6f6a0cb5e18d79d 6 10 2014-03-01 12:21:50 2014-08-24 09:18:09
2569128 e7be8e52086fb19f4724f6a71306821ed7c4b4dc 6 10 2014-03-01 12:15:48 2014-08-24 09:18:09
2570129 4e794fdd2e3c8f9a1e4aeab6e0f7ab9d187a451c 6 10 2014-03-01 12:09:43 2014-08-24 09:18:09
2571130 64640578dabf8eb56c6a5243f3bfd57b04332fc5 6 10 2014-03-01 12:07:17 2014-08-24 09:18:08
2572131 f79b29bf39598c69b2457ae76990307c27cb7fd5 6 10 2014-03-01 12:05:25 2014-08-24 09:18:08
2573132 050ef655ee5a0863d9030ed68bdf286ec5c3d6a9 6 10 2014-03-01 12:03:08 2014-08-24 09:18:08
2574133 e673ec849304de12a95556a25fd529fce58a93d7 6 10 2014-03-01 11:55:07 2014-08-24 09:18:08
2575134 ac8632cf9394312dae3f505d5d26b112f4f607bd 6 10 2014-03-01 11:42:55 2014-08-24 09:18:08
2576135 ae9a6ffc34174c6ad015438ccb03c5963b42d8a6 6 10 2014-03-01 11:35:48 2014-08-24 09:18:08
2577136 28acd2ab4648db8cf4dac7b784148c5eb572b244 6 10 2014-02-28 17:01:38 2014-08-24 09:18:08
2578137 bcaccdec061503e5ab382c1b1fd024393862bb72 6 10 2014-01-14 16:29:29 2014-08-24 09:18:08
2579138 491612f1534cb9ea4065cd32916cf6d79642ccd9 6 10 2013-09-20 11:30:50 2014-08-24 09:18:08
2580139 f05a817399e4efb3e643bab780ba224a69d9a32f 6 10 2013-07-02 13:57:01 2014-08-24 09:18:08
2581140 b8fb6cb4ac9f1b0f2adc45d2d0fddd0a48ee1266 6 10 2013-05-30 07:40:53 2014-08-24 09:18:08
2582141 6ef0eed59b61913635baf35cb9468250b6e08546 6 10 2014-07-09 13:57:04 2014-08-20 14:07:39
2583142 ff707c0dcfa49e399a47042eaa834d02ab343a48 6 10 2014-07-09 12:37:33 2014-08-20 13:42:25
2584143 66f25ae79dcc5e200b136388771b5924a1b5ae56 6 10 2014-07-03 14:04:43 2014-08-20 13:42:25
2585144 cab39ed7672545e478476db7083e0b395838828f 6 10 2014-08-13 05:30:11 2014-08-13 09:56:13
2586145 461216b58bc08f937d08fb0e91fada406d074f47 11 11 2014-08-04 14:31:00 2014-08-04 14:31:00
2587146 07ac59181ea43cc75b16f144e42c7763a7922fbc 5 5 2014-06-25 12:09:41 2014-07-07 12:09:54
2588147 84235599dd7e9daa361244b5311c6f08a261ac7f 5 5 2014-06-25 12:15:49 2014-07-07 12:05:27
2589148 41989b6fcb78832d92be6daecc3b6213e064c4ab 5 5 2014-07-07 12:04:44 2014-07-07 12:05:27
2590149 979820d7cb09238484778e3b4a9e505f85775e03 12 10 2014-07-04 14:04:17 2014-07-05 07:58:39
2591150 240ea1c6711c002e3ec288036444e8eb16c352c7 12 12 2014-07-04 14:03:06 2014-07-04 14:03:06
2592151 f7483bc808340f9b354a6285e9881b67fe0db95f 6 10 2014-06-30 08:04:35 2014-07-01 18:53:19
2593152 c1596154e2153632166a4192ac9069830e872eeb 6 10 2014-07-01 09:10:05 2014-07-01 18:53:19
2594153 fe80b8560a0853e14c71fda0803378ece305086f 6 10 2014-05-26 13:54:44 2014-06-29 09:41:47
2595154 bc5d3fa6d8150e70d66fcbff38861633542b5f11 6 10 2014-05-26 13:27:17 2014-06-29 09:41:47
2596155 2d87d95011d1fa68bb3a50abf8f1fdcc8aebc956 6 10 2014-05-26 11:11:01 2014-06-29 09:41:46
2597156 049d6b1f1620e0143870578b47f9caf01315e133 6 10 2014-05-26 10:44:47 2014-06-29 09:41:46
2598157 0e42ae47eec5b013662daf1b64a22bac140dfc78 6 10 2014-06-24 12:29:16 2014-06-26 18:27:44
2599158 daaf8ea1dc7331735b324397f7155c66c90837ea 6 10 2014-06-10 13:53:43 2014-06-25 08:38:33
2600159 2991d3c426c2da316397b936821ef4a3423dcd52 5 5 2014-06-24 06:17:57 2014-06-24 06:17:57
2601160 540d5f91e2e3e64a89fc8b9c1adafd541bf95e6a 13 10 2014-06-23 16:11:30 2014-06-23 20:13:09
2602161 927d21ed793e827094feab36bc5215f437e734b6 6 10 2014-06-04 14:24:51 2014-06-10 13:54:47
2603162 dee45e95fa8b91af7d032b636ec3ed3f6b616e78 6 10 2014-04-03 09:56:05 2014-05-26 20:52:24
2604163 6da841106cf48499c8dbfcc12083310e203a59d7 6 10 2014-04-17 10:46:48 2014-04-24 11:17:15
2605164 2c6a27f9ce5411a037bcce4aa7cb8094079498dc 6 10 2014-03-25 16:45:01 2014-04-16 15:43:52
2606165 321fbdae93f536df266ec48fdc03e09c93649800 6 10 2014-03-26 07:11:55 2014-04-16 15:43:52
2607166 d09830c4a6de268a3a244a43bb54b50c8421af8d 6 10 2014-03-25 14:06:54 2014-04-16 15:43:52
2608167 893483da3c9d6ef01cd581ed56e8e82c097c1bf6 6 10 2014-03-25 14:05:40 2014-04-16 15:43:52
2609168 0e9c8b595c8b7a4a3b500fa84c7cb7ca5708814c 6 10 2014-03-25 14:03:29 2014-04-16 15:43:52
2610169 c88afd3feebe77173d4bfb271c6ae74328753d69 6 10 2014-03-25 13:56:15 2014-04-16 15:43:52
2611170 095b00f07330891d9a7c1dc48fa39cbd77379829 6 10 2014-03-25 13:54:38 2014-04-16 15:43:51
2612171 c6349cb372782833569439692d4b3eb49436287d 14 10 2014-04-16 11:40:01 2014-04-16 13:22:11
2613172 88eab5163b0ff981d5f7f78da4fd6fb83c16debc 6 10 2014-04-08 10:39:48 2014-04-14 11:17:51
2614173 1527aa3a280991f5da70e0552c97e5ac209d9ef2 5 5 2014-02-25 21:38:56 2014-04-09 09:45:55
2615174 0824316aeecd8dd3a00f3e07510aa731a37414cf 5 5 2014-02-25 21:11:05 2014-04-09 09:45:55
2616175 387ad6463bc24151a93ffc69aaf2e0138e332684 5 5 2014-04-05 19:06:12 2014-04-05 19:43:25
2617176 aed1aebc3efc1b866847c281b9eb014591373ad4 6 15 2014-03-25 19:34:21 2014-03-31 11:24:44
2618177 ccc434292f5ba46df748c5cc2599c51e5a8a699d 6 6 2014-03-25 11:03:26 2014-03-25 11:03:26
2619178 128153c210d9254c1308c867909e9bbaf407cc6b 6 15 2014-03-13 12:25:54 2014-03-24 08:12:31
2620179 a83dfbe529eedeb9e31dc10edda4f20df597882b 6 15 2014-03-13 12:30:46 2014-03-24 08:12:31
2621180 a26964ed3423b222f13f257d90d6ffcf6bc45d01 6 15 2014-03-13 11:52:37 2014-03-24 08:12:31
2622181 5a35192770fdc5366a6d5f478e6b19aaf744e45e 6 15 2014-03-14 10:13:40 2014-03-24 08:12:31
2623182 380568f6238c91546aec17ae262baa25c5eee53e 6 15 2014-03-14 10:12:33 2014-03-24 08:12:31
2624183 d16ca5ea5865026add77c8a8dbfb1fbca41e90a9 6 15 2014-03-18 16:32:13 2014-03-21 12:41:26
2625184 4be40b157586164e0279aa404a6e79effc8a10ae 6 15 2014-03-06 15:09:24 2014-03-21 12:41:26
2626185 f1b0e4bed5dcb9b59c7bcde95280b4b0f347142b 6 15 2014-03-20 12:20:18 2014-03-21 11:43:53
2627186 744196da44c27fdb724ad840d261660eced1e849 5 5 2014-03-20 12:02:58 2014-03-20 14:13:31
2628187 7ee9f1ad92a91f78dc004767ef8fda30770627b8 5 5 2014-03-20 10:16:24 2014-03-20 14:13:31
2629188 a8443b043e307355d2ce37f2ae4de8ffa140f202 5 5 2014-03-20 09:52:15 2014-03-20 14:13:31
2630189 1b4f25b91ed6069af1d8adb9e577642bfb7f4931 5 5 2014-03-20 09:41:02 2014-03-20 14:13:31
2631190 eee2a8526815a021f3f65f5f4565117fdc3e843f 5 5 2014-03-17 15:47:04 2014-03-20 14:13:30
2632191 742c0a9304339698689e725dc48016c6cd5b7ba5 5 5 2014-03-20 08:52:37 2014-03-20 14:13:30
2633192 2cfcaf38a0b5b090568349d316bead119aa107de 5 5 2014-03-18 14:00:13 2014-03-20 14:13:30
2634193 fdb7167a4cec9e22ddadd6ff32f0d6e8a059e29e 6 5 2014-03-17 13:00:41 2014-03-20 14:13:30
2635194 eb4151633eef6bac669ca465d097f3ec78b251aa 5 5 2014-03-17 20:55:54 2014-03-20 12:20:28
2636195 b762eab396929a6ebde1acfe954383539dfdcbc7 6 15 2014-03-04 16:11:01 2014-03-17 08:03:04
2637196 469eb60f2f8168b7e5ff66474797f57806f76725 6 15 2014-03-15 13:43:52 2014-03-17 06:00:48
2638197 2cba89da053b8f174500e5855dfba0c7aed34dd7 6 6 2014-03-15 14:54:55 2014-03-15 14:54:55
2639198 83b9618b9f9b2d156a840e708e47efaa3eae0589 6 6 2014-02-25 12:00:48 2014-03-13 14:49:00
2640199 d813c559852adf0e0efe71ff3dd9c2a02c2e03c5 6 15 2014-03-04 16:07:48 2014-03-13 10:15:43
2641200 80512c5a80b29d269fb6f955e1f757920e63d211 6 15 2014-03-02 13:04:37 2014-03-06 13:45:10
2642201 e73fc75396539a81a9fb78b92a391a499b7b5ab7 5 5 2014-03-06 10:28:47 2014-03-06 11:08:15
2643202 3a67e3038d4a927648678f3c5e1b27ac69292c00 5 5 2014-03-06 08:25:17 2014-03-06 09:14:16
2644203 6ed501e3c8686c5a113d749f5f074e2910d7f975 6 15 2013-11-19 13:37:38 2014-03-05 08:15:58
2645204 82a2c318ece611245c01a75917487ab1ff3f7918 5 5 2014-03-01 20:37:37 2014-03-01 20:37:53
2646205 46f3179bb078142660307750aa330ef50e5df186 6 15 2014-02-28 16:32:52 2014-03-01 08:58:56
2647206 c62f145563f9e01adeff81a138a37b58a49b979c 6 15 2014-02-17 10:34:07 2014-02-26 09:20:24
2648207 32f27f5ac4cde1451a7bcad19e7957bfa45b16b7 6 5 2014-02-09 10:39:54 2014-02-25 22:22:34
2649208 61aad850518c151a47ffb2977c767b47085014a8 6 6 2014-02-18 10:07:41 2014-02-18 10:12:12
2650209 94bf082f3b5097055bdd8825bb9ce2b90ee60c9b 6 5 2013-09-19 10:22:06 2014-02-15 06:33:20
2651210 5fa518a10e34c3e713ab8681a391b975f2abf3e6 6 5 2013-07-22 10:55:34 2014-02-15 06:33:20
2652211 c025b89299fd14cd02105c5f3a6b33c97c3906a1 6 5 2013-07-15 14:58:16 2014-02-15 06:33:20
2653212 2fe3c91075322487077ed03339599d04761f20ed 6 5 2013-04-28 20:47:20 2014-02-15 06:33:20
2654213 9109f015a6a70e72b66ae0e41421b313a2afd834 6 5 2013-04-28 16:51:31 2014-02-15 06:33:20
2655214 1fd74a1319c7d1b6b281c743dcbaa3f1bccbd82d 6 5 2013-04-26 20:56:02 2014-02-15 06:33:20
2656215 5bbbda8e91a3eef541b6fa2b1cb7c51e30f3108e 6 5 2013-04-25 22:28:23 2014-02-15 06:33:20
2657216 f14b12a2ad7c074abedc0b074751b2ebc28c92f6 6 5 2014-02-12 06:44:43 2014-02-15 06:33:19
2658217 cfffe85c848d1ea9d156f630be600e667ae66880 6 5 2014-02-11 06:15:19 2014-02-15 06:33:19
2659218 638635919a0629dd3ef96861f63017c7c68e020d 6 5 2014-02-11 06:12:23 2014-02-15 06:33:19
2660219 d01088f73cf81b4697dc6751686aaee7f7ead6d0 6 5 2014-02-12 06:42:24 2014-02-15 06:33:19
2661220 8c3cdf0ea0734b16dd9d37a64a45e16734e8d4b0 6 5 2014-02-10 11:36:08 2014-02-15 06:33:19
2662221 448e77694071a35ee1f05af69965b7685754d334 6 5 2013-04-28 16:55:28 2014-02-15 06:33:19
2663222 f6e9496426aa41a2fedeab933a743f366fa9927c 6 5 2013-04-11 14:29:42 2014-02-15 06:33:19
2664223 5c0bf67033e7ba46aa2e5899d81f788cbfdb9aa7 6 5 2013-04-25 19:17:44 2014-02-15 06:33:19
2665224 c9653c7bbbca8de0a3bcc80cc8c7cc0d10366c59 6 5 2013-05-19 11:44:50 2014-02-15 06:33:19
2666225 8ada9ddfa6e38f1113d9ddecca85e7d4900ef044 5 5 2014-02-14 13:46:45 2014-02-14 15:23:40
2667226 de65dcbda731224ea1468cd4f41cc7052caa62a1 6 6 2014-02-13 12:13:15 2014-02-13 12:20:35
2668227 3444a7d0dadc393e0b47ef70331b04e93b3d6e2c 6 15 2014-01-31 10:30:32 2014-02-12 07:00:36
2669228 87a3deff2cc97ef9d7a3f91091abe8d5d0a05dd2 5 5 2014-02-11 13:41:27 2014-02-11 13:41:27
2670229 23151f995f1b84dbaf614f05d1531890af694be3 5 5 2014-02-10 16:03:16 2014-02-10 16:04:16
2671230 2b7794ce253032eccf18952063b7dfc83bc5e6d5 6 6 2014-02-09 15:31:54 2014-02-09 15:31:54
2672231 7c856dc430144efb175fc290f030b1d2ebae0c5b 6 6 2014-02-09 15:25:53 2014-02-09 15:25:53
2673232 c60d31e030c9fadb895d3d1c36de1e5797976544 5 5 2014-02-08 13:25:45 2014-02-08 13:27:50
2674233 889c4fff2d239ed97a20fcf9fd98f29faaca4988 6 15 2014-02-03 11:53:05 2014-02-07 09:49:53
2675234 7dc9fe8f696e8c85f1e58c0e5932949f59455c9f 6 15 2014-01-30 08:00:00 2014-02-07 09:49:52
2676235 8e83ce2d43b6e1f940acb6aafec8de9756176cb0 6 15 2014-02-04 07:45:18 2014-02-07 09:49:52
2677236 77b27567a7021363169b088ee2581ac92906c022 6 15 2014-02-05 16:24:16 2014-02-07 09:49:52
2678237 b4a0ed529780010e09ae856fc61952ce537b7163 6 15 2013-12-12 10:51:03 2014-02-07 09:49:52
2679238 e64f1171ca3fb5a1bbda8e64a6744b691a320fbe 6 15 2014-02-06 08:19:05 2014-02-07 09:49:52
2680239 595c18025320b93e72c2bbb536d7b3359c8b51ac 6 15 2014-02-02 14:51:29 2014-02-07 09:49:52
2681240 046e045777b6f2d1bd1b1c9c1ce08b341c12ca76 6 15 2014-01-30 07:37:26 2014-02-07 09:49:52
2682241 e74d3fe44bc011d50712d40aba8f180b2dc25c7a 6 15 2014-01-30 06:54:59 2014-02-07 09:49:52
2683242 5e61ca9e9fe90cae707e6cf758501eb3d202b18b 6 15 2014-01-28 16:51:59 2014-02-07 09:49:52
2684243 fdced0811c46d24306108aa0396244cb49ee3cd0 6 15 2014-02-03 14:55:04 2014-02-07 09:49:52
2685244 1b9eeb60c4a95bbd65ec9adc78a6d17d3304511f 6 6 2014-02-06 13:12:21 2014-02-06 13:12:37
2686245 3045bc3138195c915a8424069aecadbb11001c45 6 6 2014-02-01 16:43:12 2014-02-01 16:43:12
2687246 a074103721a9422499e8e995fea3b1197a5b29aa 16 16 2014-01-08 20:48:08 2014-01-31 09:06:35
2688247 3b5ac2a3e5c8c65185ea83c10f086a20fadaec3f 16 16 2014-01-07 22:32:55 2014-01-31 09:06:10
2689248 315070354a8f977f416630faf816bea8819abb8e 16 16 2014-01-01 23:30:07 2014-01-31 09:06:10
2690249 56f0f9ae3c5869492a16b0526af402e6165e742d 16 16 2013-12-30 20:54:04 2014-01-31 09:06:04
2691250 13e0a528c446faf068bb0f70e30632025cc0de46 6 6 2014-01-30 11:16:59 2014-01-30 11:18:15
2692251 32603537c71abef76c6dc4c954c6f3146710c4d3 6 15 2014-01-27 17:08:56 2014-01-28 09:17:11
2693252 bfbc86d588e16032251c5740b9be3b12fc08b552 6 15 2014-01-27 17:05:25 2014-01-28 09:17:11
2694253 5ec60e304dfcaf5e438a111bb85ce7aeef595796 6 6 2014-01-23 15:15:49 2014-01-23 15:17:22
2695254 426e8af472ae5e7b8c203b234f16564eef8a0c5f 6 15 2014-01-22 16:24:09 2014-01-23 08:08:09
2696255 ee9b41bfce26c93bb2da3a2eaf3018a625fb4b22 5 5 2014-01-22 22:30:53 2014-01-23 06:55:01
2697256 a93d4071cb47704de188e4df92b083e6c4c5afc1 5 5 2014-01-22 21:08:59 2014-01-22 22:04:04
2698257 b072cc9ccfa203a68a85987819f0d177bc6d47b7 6 15 2014-01-16 17:42:56 2014-01-21 15:05:49
2699258 d9c4111e0ebe84ba5275563a5e794c6472194bd1 5 5 2014-01-11 09:40:00 2014-01-11 09:40:00
2700259 fc18a65b1342676be194e5abe64a01bc6d4a86ea 16 16 2013-12-26 13:01:15 2014-01-02 13:37:11
2701260 4e54807a5390a6629d53d9b9c4065d30b481fa4a 16 16 2013-12-20 22:31:21 2014-01-02 13:37:11
2702261 fc1d3cff420ed55a28f41a03aeddf1c2a7083e0f 16 16 2013-12-04 21:42:29 2014-01-02 13:37:11
2703262 e30861f4a72b9bf427bd4e846f9d81018d5098f5 16 16 2013-11-30 21:27:02 2014-01-02 13:37:11
2704263 7a1c974c8bae93e83234da3db506bed9fae1a94a 16 16 2013-11-30 21:25:15 2014-01-02 13:37:11
2705264 b804fd1fec33d264613e1a2d9de4395b6be173e7 16 16 2013-11-23 22:22:59 2014-01-02 13:37:11
2706265 64fb929504e48e7888fa1f3229a1c0eb94664d32 16 16 2013-12-07 14:55:31 2013-12-11 09:08:27
2707266 865c5a00f0bf758bce22529eb0540d4e332b2285 16 16 2013-12-01 15:45:53 2013-12-11 09:08:27
2708267 04a730c1a0d078ff6e242db1631e6d37c0245d5f 16 16 2013-11-30 15:18:19 2013-12-11 09:08:27
2709268 cc75619f33101d609f895773a2a68523a67a1911 16 16 2013-11-30 15:05:41 2013-12-11 09:08:27
2710269 71b5b9c8d93b6fc23848c706c76def761de1daf3 16 16 2013-11-30 14:28:01 2013-12-11 09:08:26
2711270 bd5c8ec41e63a6e99dc2f23ad19057c280c176e3 16 16 2013-11-22 22:31:06 2013-12-11 09:08:26
2712271 9dec431c1168f2d1bca2f5cb3ec3d5473caeef83 5 5 2013-12-08 08:12:01 2013-12-08 12:17:15
2713272 748ce3c7e322b989bb64ddbfa3e3bf89c9616028 5 5 2013-12-07 23:29:47 2013-12-08 12:02:02
2714273 7591f82e4f60c20e3a995bbbd7fc31fa500a18c4 5 5 2013-12-07 19:50:08 2013-12-08 10:47:30
2715274 938f27d7397be1bb61a55200f741038e8b827807 5 5 2013-12-07 16:44:57 2013-12-08 10:47:30
2716275 d1f81e263840d680d6d2242019b91c8c3e956640 5 5 2013-12-07 16:10:11 2013-12-08 10:47:30
2717276 937fd9eb19b4b7c81281ba6ef2949f89ed170081 5 5 2013-12-07 18:40:01 2013-12-08 10:47:30
2718277 18c60d9f9593051f99959c61b773e38075612a55 5 5 2013-12-03 14:39:06 2013-12-08 10:47:30
2719278 c5302b2fc44f1fcb12ebc722502296f1274492d6 5 5 2013-12-02 22:06:19 2013-12-08 10:47:30
2720279 fa3d433dd7ec1cfe436af088817e0cb28c8721fb 5 5 2013-11-23 21:47:06 2013-12-08 10:47:30
2721280 181c57fca94ed68afd39ef2af48e7606c646dc5a 5 5 2013-12-01 22:38:12 2013-12-08 10:47:30
2722281 198d4b6ce590db5d3c2298f68bbc19aaa4cc4d96 5 5 2013-11-22 20:38:36 2013-12-08 10:47:30
2723282 0b870a811a0407fc02f7319a407faa0cee217eaa 6 15 2013-12-02 14:49:55 2013-12-02 14:52:16
2724283 aa46a5379e0b616de72052f22f40fe9cd48b0fd6 6 6 2013-12-02 12:15:52 2013-12-02 12:15:52
2725284 8dcc8622ff88adcc5e84c8207d225dd08fac8ddc 6 15 2013-11-21 08:38:19 2013-12-02 06:36:09
2726285 97d6bc60ba87c1cca7b524d93ee7e576a846ac21 6 15 2013-11-21 08:36:33 2013-12-02 06:36:09
2727286 f0460c4c62b5c34a18660bc09ce69ee5b54b4694 6 15 2013-11-21 07:59:29 2013-12-02 06:36:09
2728287 85c46e5a6b4daa596c0836160668650f9cc9733e 6 15 2013-09-20 06:28:12 2013-12-02 06:36:09
2729288 9aaa3d76e951ac3183f0a218ac8ee0336983891f 6 15 2013-11-20 14:42:02 2013-12-02 06:36:09
2730289 a8ada3115b59339f3e1be0ccb229ebe9e524dad3 16 16 2013-11-24 11:24:50 2013-11-24 12:05:30
2731290 14708a45ebab3ab536fcb949fb20470eb70e4474 16 16 2013-11-23 22:09:28 2013-11-24 12:05:30
2732291 4e15c49885da298d5bdacc14b8cb432b3398c564 16 16 2013-11-22 20:55:36 2013-11-24 12:05:30
2733292 a4e4912db08124d802ebac884bcd8eeba98210f7 16 16 2013-11-22 20:33:26 2013-11-23 22:29:13
2734293 25071daf9a824a50216ab8b8929c3bce60ae32dd 5 5 2013-11-17 21:06:21 2013-11-18 18:10:26
2735294 7b106dba5882465f72e1456b401b1c428c8d2cb9 5 5 2013-11-17 20:49:40 2013-11-18 18:10:26
2736295 19938249dce899a49e01885f663452d5cf5737ce 5 5 2013-11-17 20:47:50 2013-11-18 18:10:26
2737296 5da5c1eb2060efa884cd398f06697f83d7949d38 5 5 2013-11-17 19:11:01 2013-11-18 18:10:26
2738297 3b96198a31b542c03b3b657a89288261d3730a11 5 5 2013-11-15 22:14:10 2013-11-18 18:10:26
2739298 bd2615f388ea5d05091f6e27479352cdbb67b259 5 5 2013-11-15 21:59:09 2013-11-18 18:10:26
2740299 db5ea2e1b9497601e1597cc67afbba01b4db9660 5 5 2013-11-16 23:35:54 2013-11-17 18:06:47
2741300 030afecdfb40235af03faa52a2a193c7d8199b66 5 5 2013-11-17 13:53:28 2013-11-17 13:53:28
2742301 1f9a6cefc738078125ecd54ad7be2b97fc397c7c 5 5 2013-10-19 21:47:53 2013-11-17 00:24:45
2743302 59d3eaad411623cf7088ae4c13b3e2b4a7b651dd 5 5 2013-10-25 21:29:40 2013-11-16 23:55:45
2744303 3e398a81bc899ffc48b44c0a31af9a555681b606 5 5 2013-10-19 21:31:44 2013-11-17 00:24:45
2745304 875befe4c82ead7729ad29713876792848ca7d58 5 5 2013-10-25 21:25:53 2013-11-16 23:55:45
2746305 919d0e5cd220fa4299bf5fc23beac29ff67814cf 6 15 2013-11-15 09:09:13 2013-11-16 10:05:07
2747306 b9727d6c2a38af6643f0191c4605051ff0156a75 5 5 2013-10-19 13:57:37 2013-11-16 23:55:45
2748307 d4d7125f5028c166590d75547a7088f5305f6822 6 15 2013-10-15 13:50:39 2013-11-16 10:05:07
2749308 a5119810e28f505c7152c946614ba16f16d7784e 6 15 2013-10-15 13:46:28 2013-11-16 10:05:07
2750309 a84e5a125489608c15b56b31518a6a0d8066a96e 6 15 2013-09-12 11:01:54 2013-11-16 10:05:07
2751310 b4853d9c6ce02d8a7601199b6e7a67d213845936 6 15 2013-09-12 10:49:00 2013-11-16 10:05:07
2752311 37bfd1ee7d301b364d0a8c716e9bca36efd5d139 6 15 2013-10-15 13:44:11 2013-11-16 10:05:07
2753312 22afd9377add956e1e8d8dd6efa378fad9237532 6 15 2013-10-15 13:40:03 2013-11-16 10:05:06
2754313 702c1b1a4043d8837e788317698cfc88c5570ff8 6 15 2013-11-07 10:03:32 2013-11-16 08:45:41
2755314 435e283ec5b96dd9fc142a96b932f5968419f325 6 15 2013-11-06 15:43:37 2013-11-16 08:45:41
2756315 d0fb57912ca9493141ee9c03d613ceafd6761b81 6 15 2013-11-07 09:38:05 2013-11-16 08:45:41
2757316 eddb93cf246535ed29aedb1fd411b3d03202afa7 6 15 2013-11-12 14:19:44 2013-11-16 08:45:41
2758317 a2af69bde1e27bcdab7987b2af516105fe8b78b4 6 15 2013-11-06 08:20:10 2013-11-16 08:45:41
2759318 dcb106a9d9fc29614d120528f983781e59f8f6e8 6 15 2013-11-06 08:08:18 2013-11-16 08:45:41
2760319 d80841f062335cefbba9d6271beba1c1c3a9c751 6 6 2013-11-12 12:50:52 2013-11-14 14:41:56
2761320 649668ab85f7387dc10ec92b567f69cd65caa6a8 6 15 2013-11-13 11:58:01 2013-11-13 19:18:15
2762321 b16c28e55ae034ec6efe9c489fcaff26e03285e9 6 15 2013-11-13 09:35:58 2013-11-13 19:18:14
2763322 58fcc825dc24850f086181915e505c3af0168ad1 6 15 2013-10-31 13:48:16 2013-11-13 19:18:14
2764323 77ff93b94cc7b05f7505a0f148da1c7d6323c121 5 5 2013-10-28 05:49:02 2013-10-28 16:08:22
2765324 a608b47d16908a9bef3bbd161d1dc2ecf33c8d27 5 5 2013-10-28 05:48:57 2013-10-28 16:08:22
2766325 3d5fe83cd15de13e10dea2a71f41fed5bc9401f4 5 5 2013-10-28 05:48:56 2013-10-28 16:08:22
2767326 40da22a45842ffc84fe01a8e94a3442508bf407c 5 5 2013-10-28 05:48:55 2013-10-28 16:08:22
2768327 a26a54e75e534a85e4a7c7b6ac5fbecd3d5b60dd 5 5 2013-10-28 05:48:54 2013-10-28 16:08:22
2769328 0a9df5672b1f483e1e4f53d7a23a79bdd627cc34 5 5 2013-10-28 05:48:53 2013-10-28 16:08:22
2770329 f84bd8a8338feac526924f04a8f174fb1bed64ba 5 5 2013-10-28 05:48:52 2013-10-28 16:08:22
2771330 715c87e7ad7db22b821a484e93bf63776cf85811 5 5 2013-10-28 05:48:49 2013-10-28 16:08:22
2772331 6d9ddbb4bae8192c1cc194803194b7aae4e798dc 5 5 2013-10-28 05:48:26 2013-10-28 16:08:22
2773332 ad0d2464c2d31c736ccc99a379b1b92ab724137f 5 5 2013-10-25 20:19:18 2013-10-27 11:12:28
2774333 7342ad17770f7ce2320de94b3c906b4615d80c61 5 5 2013-10-26 22:58:23 2013-10-27 10:03:26
2775334 986bfa8c10b9f9a08e20f4b95f2c305f84890a8c 5 5 2013-10-26 22:45:13 2013-10-27 10:03:26
2776335 a0fc85bbe06e6af0b7fbdbcaac928855e983245b 5 5 2013-10-26 22:24:49 2013-10-27 10:03:25
2777336 6d104b3a46cb44f5bada967c0fbdda8ad950afda 5 5 2013-10-26 22:15:05 2013-10-27 10:03:25
2778337 02b5da40d3bc8bccdf86bd1a4549efbb3c331d2b 5 5 2013-10-26 22:01:19 2013-10-27 10:03:25
2779338 9d09f3ae45d0b37fb899c5323409c06e8622a2a1 5 15 2013-10-18 21:29:38 2013-10-20 14:25:29
2780339 d5e4fc35ee4e5054880ed1be2ddd869e53866b39 6 15 2013-10-17 08:39:12 2013-10-17 08:43:08
2781340 820e5d140fbb35ad4fe1aef44d807b15b382e55a 6 15 2013-10-16 09:24:45 2013-10-17 08:43:08
2782341 bf11131c6a553d3cad78dd1acc5d1068486cb162 6 15 2013-10-15 12:18:55 2013-10-16 08:52:33
2783342 ea1902a5db450b8d7ebd19f023cceecd565034d5 6 15 2013-10-16 08:33:16 2013-10-16 08:52:33
2784343 91480fe22b7fcc9db684edd38e175827930ed20e 6 15 2013-10-15 09:36:39 2013-10-16 08:52:33
2785344 1760496f12a998e1df71025119d7bd999cf768e7 6 15 2013-05-25 11:22:03 2013-10-14 12:15:48
2786345 d6aea2dcf6398fee32c0a2f3a8306811d5d083bd 6 15 2013-05-18 16:07:05 2013-10-14 12:15:48
2787346 fffc5acc708878104eeab295a229485e5c83a6de 6 15 2013-05-18 15:57:23 2013-10-14 12:15:48
2788347 bf62d5d4cb0ef78bfbebc31d7d7413f358bc7fd3 6 15 2013-05-18 15:56:13 2013-10-14 12:15:48
2789348 ebfa28c13a4017a300cf3e9c302b9c3174478c7a 6 15 2013-05-18 15:54:58 2013-10-14 12:15:48
2790349 0095eb6126e9c7afcc42c15430668756d16306f8 6 15 2013-05-18 15:52:09 2013-10-14 12:15:48
2791350 62ec02595b5b3c379348c8941a6c452bb4ea9866 6 15 2013-10-14 07:36:21 2013-10-14 10:04:02
2792351 0804257f4fede4c81808a0f860e2235f77c1f649 5 5 2013-10-12 22:00:28 2013-10-12 22:14:09
2793352 7ac79cbc9bb4fe3fc6a6ac2bb701fed577fa1640 5 5 2013-10-12 21:30:28 2013-10-12 22:12:56
2794353 061b7c4af6a10c8b921d43887958355208dbce14 5 5 2013-10-12 20:19:42 2013-10-12 22:12:56
2795354 bed89e7294a5d5e65df1671acef321fecad663f3 5 5 2013-10-12 20:12:04 2013-10-12 22:12:56
2796355 e1863f60a3140b2eed7ea69c6738b3cc26fbce8d 5 5 2013-10-12 19:56:55 2013-10-12 22:12:56
2797356 5bbe97666efa4bf24ac6fd5ea7bf7025731721d8 5 5 2013-10-12 19:19:35 2013-10-12 19:19:35
2798357 2a254e94a3167d856617dc6219ac60442a340eef 5 5 2013-09-30 19:06:38 2013-10-05 10:50:07
2799358 a6f80a72133cc100382632c60f358332661d7c27 5 5 2013-10-03 13:10:17 2013-10-05 10:29:50
2800359 c4f84f6ab83b40946242237a9f501bab3eab3a85 5 5 2013-09-29 22:07:54 2013-09-30 07:11:28
2801360 54be5c399a75ee3d79d5c193e96239aabe90233a 5 5 2013-09-29 19:21:06 2013-09-30 07:11:28
2802361 fc7d01d922b53a65653a2d319ecdcca2036ab860 5 5 2013-09-29 18:42:43 2013-09-30 07:11:28
2803362 c7c15227c91aaa278689b1232bb725fdbba3499d 5 5 2013-09-29 16:05:19 2013-09-30 07:11:28
2804363 7770b5be08295f744af732ad89c31e5f57caf31a 5 5 2013-09-29 15:22:44 2013-09-30 07:11:28
2805364 0e6470a0a5eb90dd43ff62c9c8d05a929db207fa 5 5 2013-09-29 15:11:18 2013-09-30 07:11:28
2806365 80552936be3e6991a77df9115e331b295e5e63de 5 5 2013-09-29 14:26:26 2013-09-30 07:11:28
2807366 886a1fdfdbaff5421c101a4580ae8c76baf0e18b 5 5 2013-09-29 14:23:28 2013-09-30 07:11:28
2808367 352a9776af50a7fe977edc8ee727c3a5ae49bb14 5 5 2013-09-29 14:00:23 2013-09-30 07:11:28
2809368 7b4bcd15352b767d8a542dfa48a8474ac753810b 5 5 2013-09-29 13:54:19 2013-09-30 07:11:28
2810369 0ab0af0bc7d2eb144a3997cf0751c5dbe8c908d0 5 5 2013-09-29 13:49:20 2013-09-30 07:11:27
2811370 dfcc9f04bdbb7672ca6171f2ae450da4201e974d 5 5 2013-09-29 13:26:45 2013-09-30 07:11:27
2812371 226107e261040a2fd9d9bbb0d57e189e9107cca5 5 5 2013-09-10 21:24:01 2013-09-30 07:11:27
2813372 cfd0667aa7a9d90e43a18b0b81546d72e7716902 5 5 2013-09-10 20:20:18 2013-09-30 07:11:27
2814373 ef945e63468cc110aa77f9311362da1bb0c80691 5 5 2013-09-27 21:53:40 2013-09-30 06:36:16
2815374 cc8497d89540f9989a6146f62c6e891c14aa4f9f 5 5 2013-09-27 21:41:26 2013-09-30 06:36:16
2816375 5360e5d734e3b990c0dc67496c7a83f94013d01d 5 5 2013-09-27 21:34:33 2013-09-30 06:36:16
2817376 e98bb60556679a5a9e93eaec9a7a1370622f23bb 5 5 2013-09-27 21:26:12 2013-09-30 06:36:16
2818377 951cd5c45a5afc81c782b4e5f5069cbde4442ad7 5 5 2013-09-27 21:22:01 2013-09-30 06:36:16
2819378 9e21e6a4113ac44ddb9b33ff69eaa14d92e65df0 5 5 2013-09-27 21:14:03 2013-09-30 06:36:15
2820379 8093576c71609045ebd972fb3cdc5b9843fc3616 5 5 2013-09-26 21:35:43 2013-09-30 06:36:15
2821380 d5a2fc6dba77ca10a887c8cb4803d56dbd3ae9e3 6 15 2013-09-27 09:10:00 2013-09-28 09:28:19
2822381 2975972e03752a9115f6c39aca26a40e4ef07e7b 6 15 2013-09-25 12:31:36 2013-09-27 10:38:16
2823382 97918dd62d5b093bdcec8a0eb76bd5a0d0f00a29 6 15 2013-09-18 11:21:56 2013-09-23 06:01:16
2824383 46c92b9c1bb38839ceb47e6b4173594a5dd5a59e 5 5 2013-09-19 22:48:18 2013-09-19 22:57:03
2825384 33a5ba6551a01fa7862653fa820662e88be91f4c 5 5 2013-09-19 22:22:59 2013-09-19 22:27:15
2826385 6ca0db0e2ef5beaca806f57f271240bbdf8c2d45 6 15 2013-09-18 06:46:35 2013-09-18 13:44:28
2827386 18db724faccfb2f8d04c81309feadf05b48ec9e3 5 5 2013-09-14 06:53:18 2013-09-14 06:56:05
2828387 1ddadfb89a0954f40d7d238bbd3f84de55e8ffc4 6 15 2013-07-22 10:41:52 2013-09-13 11:43:29
2829388 39b7c1e62feb12cffde446a54fa890f52789a7c4 6 15 2013-07-19 13:49:39 2013-09-13 11:43:29
2830389 2a879f22c1d5ff6d7a1ac036febf71136d637478 6 15 2013-05-19 11:57:12 2013-09-13 11:43:29
2831390 e8c7b5826b40235b9a211531bb097dbbb160dcd3 6 15 2013-06-18 07:47:25 2013-09-13 11:43:29
2832391 95e52c53a4a183c9f0eada7401e1da174353e00e 6 15 2013-05-13 17:51:33 2013-09-13 11:43:29
2833392 94391a18858c05b2619dfea4b58507d08d932bd3 6 15 2013-05-03 13:27:17 2013-09-13 11:43:29
2834393 0083ccd166fc66e0050179ad596a20a57e20469e 6 15 2013-05-03 13:24:48 2013-09-13 11:43:29
2835394 e93f04a668f92a0e8a2f84f67b8721d20b570a51 6 15 2013-05-03 13:19:53 2013-09-13 11:43:28
2836395 ba26df66333fd0894bb602175286e2dc3cfc74ac 6 6 2013-09-12 09:45:49 2013-09-12 10:04:45
2837396 954c1d53776a30d0601d4b94feb50e1b94d7daba 6 6 2013-09-12 10:00:49 2013-09-12 10:04:42
2838397 8134439e7a7a0e8f3381ef84dddfc4b154941ef7 5 5 2013-09-10 20:41:04 2013-09-11 08:24:09
2839398 fea1d8d40c1278cd0de962b65d482a0f8b609b05 6 6 2013-09-10 06:12:25 2013-09-10 06:13:07
2840399 11c8b2f588bf858097ede65eeed186de80898bed 5 5 2013-09-09 17:53:58 2013-09-09 18:38:05
2841400 22fa499fc0bba5159653bb7459977e5cdab18dc5 5 5 2013-09-09 11:51:16 2013-09-09 11:51:16
2842401 73745cc921661a9bb08f0f37a93f31d01f559c73 5 5 2013-09-09 11:50:29 2013-09-09 11:50:29
2843402 a6db8a0acd697729208913cdd09462264098f5bb 5 5 2013-09-09 11:48:01 2013-09-09 11:49:49
2844403 59377667d4d85ea0878c1dd2d3ac523cd3f4b59e 6 15 2013-09-09 06:41:22 2013-09-09 08:11:30
2845404 594d4b4a6717d6eaa3ea262283a86b9b72f68aa5 6 15 2013-09-09 06:40:47 2013-09-09 08:11:30
2846405 5d545b0b957b4c942a01ca9f0133547eafcf8f96 6 15 2013-09-03 14:05:30 2013-09-09 08:11:30
2847406 d566c6e18c5651ce9bea346bd69eb8ac8ef130b0 5 5 2013-09-07 22:15:46 2013-09-08 13:15:21
2848407 cde9e0d4b401c4d8966d99d004987eb514e16958 5 5 2013-09-07 16:12:20 2013-09-08 13:15:21
2849408 19b6ef586ecd06e2ee5009fab939d44acd4f98de 5 5 2013-09-07 14:46:25 2013-09-08 11:04:21
2850409 e38535956083d5e029fedbe86f45d9d0c6a74232 5 5 2013-09-05 19:41:34 2013-09-05 20:05:14
2851410 91042661a4af19d5efa5a82123064f7ecb0a5ea9 5 5 2013-09-05 19:18:18 2013-09-05 19:49:49
2852411 d2e138be607e779bc9047fab67639c310d71b469 6 5 2013-09-05 12:14:54 2013-09-05 15:10:13
2853412 db395f164005717547ef124ec8aa11e0816ebc24 6 5 2013-09-04 07:36:30 2013-09-05 15:10:13
2854413 a63d915cdf39abeb53b2bd7aafe987e60f01ae8d 5 5 2013-09-05 12:13:05 2013-09-05 12:43:18
2855414 e81ac918af027797606f2c36ca169f8d5b3f54c3 5 5 2013-09-04 19:12:07 2013-09-05 12:43:18
2856415 5c82b60bb0ea041d891a609c0e272a5b476b7826 5 5 2013-09-04 18:59:11 2013-09-05 12:43:18
2857416 a8c32682654837c5a69fd12e87591d53d1202ef4 6 15 2013-09-02 09:58:03 2013-09-05 10:11:43
2858417 8e068de321f696c2126f4f9b3a9a1997cefea753 6 15 2013-08-29 13:28:14 2013-09-05 10:11:43
2859418 b200e83c7cb98a764dde49aa5b32a2efaac41cf3 6 6 2013-09-04 14:37:34 2013-09-04 14:38:22
2860419 378a00935735431d5408dc8acbca77e6887f91c6 6 6 2013-08-29 13:32:32 2013-08-29 13:33:28
2861420 c555cd816ce800e42d5326f173859d2d4808cc0b 5 5 2013-07-29 21:00:15 2013-08-26 18:17:30
2862421 bb3bd08076246c03b0cd1d4048c2c7dbd3a99ad4 5 5 2013-07-29 20:29:35 2013-08-26 18:17:30
2863422 938361215952985d933d62184915e62d825d75ef 6 15 2013-07-23 09:53:32 2013-07-24 17:53:27
2864423 9b44dcb69bf076690cf5e9d9d9d3dbf018068bc5 6 6 2013-07-22 13:36:55 2013-07-22 13:42:56
2865424 7c85d87436ec7111bd6732bd3cbec929c2dadc49 6 15 2013-07-16 08:36:14 2013-07-16 12:20:05
2866425 cc1c1a2550556c001010f746791ef155e7eb9953 5 5 2013-07-15 20:24:38 2013-07-16 11:39:28
2867426 264810c79fe2d7aeddf01090a94d0e78c9c36327 5 5 2013-07-15 20:20:38 2013-07-16 11:39:28
2868427 fdde5545dd832c1bef6ff1cb165a1158654b1eef 5 5 2013-07-15 20:15:55 2013-07-16 11:39:28
2869428 c979a9acc832039a1da8bc898db8f091ad07f2a1 5 5 2013-07-15 20:11:36 2013-07-16 11:39:28
2870429 ac3e9d88306b5677d93362cdb61a9d586350c8ec 5 5 2013-07-15 22:08:39 2013-07-16 08:13:02
2871430 699d197ec9964ec9763ce9defb21c9c9d74d9b79 5 5 2013-07-15 21:22:32 2013-07-16 08:13:02
2872431 c86d4503a068561d88a358590721eca4945c69a0 5 5 2013-07-15 21:08:32 2013-07-16 08:13:02
2873432 5834988d51ce33e621a4f172da1f7c5a2e794a13 5 5 2013-07-15 18:13:32 2013-07-15 18:59:17
2874433 314b78fabc020c0064e328328d9172a878a3502a 5 5 2013-07-14 08:59:42 2013-07-14 16:44:51
2875434 98475a72b31d1eabb5d2bc4058c17fe16d882ff8 5 5 2013-07-12 13:42:04 2013-07-12 14:31:51
2876435 f0dac59921d615672a19e1eb49edc3022c41ee0f 5 5 2013-07-11 21:17:33 2013-07-12 09:06:51
2877436 72712f2bbfe8db7d855f8c037ab9b0cc709e219a 5 5 2013-07-11 19:49:53 2013-07-12 09:06:51
2878437 7dbd6fb1dcd9638fa90ba62f6e5ff5f63374b296 6 6 2013-07-08 11:28:53 2013-07-10 13:59:15
2879438 d0d6c137a9163d2d22d38ec4ac989ee86b586116 6 6 2013-07-08 10:55:14 2013-07-10 13:57:58
2880439 742c2905164f8fe45c56df9fb44f99a978ffeea2 6 6 2013-06-28 13:33:57 2013-07-10 13:57:58
2881440 c3443f9e311c38c54ff350ba3e9eac56b1ab4526 6 15 2013-07-09 09:54:25 2013-07-10 10:36:58
2882441 c36cbd25a84a5836b6cbdde672230757e4087769 6 15 2013-05-25 13:10:56 2013-07-10 10:36:58
2883442 aca38ec5a8d13c3073cfed5298c9a2f60106efd6 6 15 2013-04-27 12:40:28 2013-07-10 10:36:58
2884443 d96764cf1e7d9904fb1002a082e1c120c0494b7a 6 15 2013-04-19 14:37:03 2013-07-10 10:36:57
2885444 07cfbf8cdaea14428e928cc584b793ac47d6e694 6 15 2013-06-06 08:53:38 2013-07-10 10:36:57
2886445 c53d67e2290a4a872d963957457e17d612dcfa07 6 15 2012-11-11 22:01:33 2013-07-10 10:36:57
2887446 48aee8f6ea7cab38412bc1703eae4dc4b949c0a4 6 15 2013-06-04 10:12:58 2013-07-10 07:34:21
2888447 9d818d968154bcd5e1d9956d199f850c47fe81ec 6 15 2013-06-04 10:09:04 2013-07-10 07:34:21
2889448 154e5d490691d885d2fe3f3611378a212f0913cb 6 15 2013-06-04 10:05:56 2013-07-10 07:34:21
2890449 2d3b107dd7272c92db7479cf540f90f039e4a05b 6 15 2013-06-04 09:50:59 2013-07-10 07:34:20
2891450 b7ee94804f5db020493790b77192623aec681502 6 15 2013-06-04 09:48:46 2013-07-10 07:34:20
2892451 a63241e71fb9871353a4f0b8c41f9b3b376734f8 6 15 2013-06-04 09:47:00 2013-07-10 07:34:20
2893452 0832859a46bee161240f7668980d8153bc300d43 6 15 2013-06-04 09:36:53 2013-07-10 07:34:20
2894453 0a278ff225082d922ec5178b1f3e661d4df0d3ff 6 15 2013-06-04 09:35:30 2013-07-10 07:34:20
2895454 4f967bcc4340ae555aeccdaf20f2d4c89f2494c1 6 6 2013-07-03 13:58:51 2013-07-09 07:36:43
2896455 980159a630012c9adfbb6f07839297bb59ec3068 6 6 2013-07-08 13:35:10 2013-07-08 14:04:33
2897456 f30a330a8280f75374da9ac8b6c890b68d363e69 5 5 2013-07-07 21:00:02 2013-07-07 21:14:56
2898457 10690e53e26c4808dd24f98f122884912bd1f40b 6 15 2013-07-07 19:37:40 2013-07-07 20:53:45
2899458 e0066cde191305991949dd90c22069cfa47e0ac1 6 15 2013-07-07 09:27:04 2013-07-07 20:53:45
2900459 a63ed1daed2346f9ec2002ad925f4da051ec9846 6 15 2013-07-03 20:47:44 2013-07-07 20:53:45
2901460 14b5c324d6fc3161c9e949ca2b0b7284125b7dbf 6 15 2013-07-03 20:38:52 2013-07-07 20:53:44
2902461 95724bc9cb43111862db434639bbde3b7710cf96 17 15 2013-07-06 20:38:05 2013-07-07 13:07:20
2903462 1803667f73ff736a606a27bb0eb3e527ae1367e9 6 15 2013-06-28 11:11:07 2013-07-02 21:01:13
2904463 c39c2b2c18ba032101c437505499cce6e604b4dd 6 15 2013-06-28 11:09:25 2013-07-02 21:01:13
2905464 0ee5675656ba1ee62e0074b3947b0f6cb305193f 6 15 2013-06-15 10:44:47 2013-07-02 21:01:13
2906465 25a7a9e1c49f8759cc9e09331fd3974411271c22 6 15 2013-06-07 12:52:25 2013-07-02 21:01:13
2907466 8e7852ca376eb0969fda26ef8bd7e9181e98ba55 6 15 2013-06-07 12:48:45 2013-07-02 21:01:13
2908467 c1976500b3b1761e30af5bd6578d396684c4ef28 6 15 2013-06-05 10:34:58 2013-07-02 21:01:13
2909468 3c9fdfcbc5030e4383e21b63e86a808aac11f103 6 15 2013-05-27 17:14:10 2013-07-02 21:01:13
2910469 1d52a525bd8c4f3b80483a17c2ff2f481f7364d4 6 15 2013-04-19 13:18:26 2013-07-02 21:01:13
2911470 d64c7f958b83b7c3be127a0cb3f5eeae9866a541 6 15 2013-04-18 14:16:36 2013-07-02 21:01:12
2912471 c39329991e910abbfd6817d4ad57de73167f8cf3 6 15 2013-04-18 14:14:51 2013-07-02 21:01:12
2913472 fa4a3d40a658461d1373d4603c39446912a42469 6 15 2013-04-17 14:54:21 2013-07-02 21:01:12
2914473 c27cfee23ba86dd046db9e8bd0985719fd2ac8fe 6 15 2013-04-17 10:11:03 2013-07-02 21:01:12
2915474 223d0752a0d49e0f2e34a3a282bf2b890ad60281 6 15 2013-04-12 10:00:12 2013-07-02 21:01:12
2916475 78559466f2b8253ce69d2aa24c7d7c7259159632 6 15 2013-04-11 14:44:19 2013-07-02 21:01:12
2917476 b2d36066c55b7a4a4902412c99aa535791f15f3e 6 15 2013-04-11 14:40:56 2013-07-02 21:01:12
2918477 9762cda21975f4930004c07d72523cab6cde9555 6 15 2013-04-11 10:58:51 2013-07-02 21:01:12
2919478 fa98b03bd55d3299752387847656443ef6a9af58 6 15 2013-04-10 14:54:39 2013-07-02 21:01:12
2920479 4a104543fd74f12c66a8f8d60ded4a8201af7bc7 6 15 2013-04-10 14:50:14 2013-07-02 21:01:12
2921480 79df9653c21b7104ffb324177d399c46d84045e2 6 15 2013-05-03 10:24:03 2013-07-02 21:01:12
2922481 10cd122259bb97b2f83449518b5c40b76375c590 6 15 2013-04-08 14:27:51 2013-07-02 21:01:12
2923482 ffb4a6b14563f1b483fb4e654e1c646d6cde358c 6 15 2013-04-08 14:24:09 2013-07-02 21:01:12
2924483 6a1576b09a78199a3eda91aa9488d0f5f92884f7 6 15 2013-04-08 14:20:20 2013-07-02 21:01:12
2925484 8e36a982baa4dd560653dcba1ed237f8e569cc3b 6 15 2013-04-08 13:14:36 2013-07-02 21:01:12
2926485 8038354ba8a45e9fe9ca426bb32b06198e10d3fa 6 15 2013-04-08 10:21:38 2013-07-02 21:01:12
2927486 28e30f6a5a65a0010b7685cc0c01732a02388a44 6 15 2013-03-26 12:36:21 2013-07-02 21:01:11
2928487 0bce8fd05dd66147c503f763f76c4930832aa91c 6 15 2013-03-26 12:29:21 2013-07-02 21:01:11
2929488 3b9e26cd4a34f642d6675f6c9bfd8311021a1cb2 6 15 2013-03-18 06:08:26 2013-07-02 21:01:11
2930489 1b587020e478e1be43dee70536f48621224f144e 6 15 2013-03-14 10:51:07 2013-07-02 21:01:11
2931490 44bbc879b73d8aa5c480583da538120d239cd86e 6 15 2013-04-09 11:13:09 2013-07-02 21:01:11
2932491 c7bbf8b915e3523b3dca9c2f13fb8579de5b233d 6 15 2013-03-12 11:56:49 2013-07-02 21:01:11
2933492 38d93a0ee4cd23a739956ddebde44d1216970da3 6 15 2013-06-26 13:23:19 2013-07-02 20:38:26
2934493 2ecb21bf2bd1d6f53bbe66dca3e78b5bef628486 6 6 2013-06-27 14:06:56 2013-07-02 07:05:30
2935494 3608827b9071d27890aff3ea56559de4e7beb728 6 15 2013-06-11 11:31:14 2013-07-01 08:59:02
2936495 9e52082d13165b09655ca23348cf86bace478c88 6 15 2013-06-11 10:30:28 2013-07-01 08:59:02
2937496 5fd8908ded30edb21bb9cad5ebde736fb2810354 6 15 2013-06-11 07:49:59 2013-07-01 08:59:01
2938497 b7fd4cde2c0a1f1edfe3e2e49e7e1ef3175e84b7 6 15 2013-06-11 07:47:18 2013-07-01 08:59:01
2939498 1f5af43a55e5471ab7f83f1d92ef27f2078900aa 6 15 2013-06-11 11:26:55 2013-07-01 08:59:01
2940499 fef6f82aeee74ed6af87c17de05c45e2144cac32 5 15 2013-06-09 21:35:49 2013-07-01 08:59:01
2941500 6ef2dd39cca4df96427cd3f654c85f0312fdea45 6 15 2013-06-04 12:02:21 2013-07-01 08:59:01
2942501 4a9ec0a37f7c01caf6d32a08071a0260a0086628 6 15 2013-06-11 10:28:03 2013-07-01 08:59:01
2943502 bd78750a2a00d6021e18a443d95cbb77f46f4a9b 6 15 2013-06-11 10:21:44 2013-07-01 08:59:01
2944503 70a99d05cc24bff897219eab32bbfeacec9906ea 6 15 2013-06-11 10:10:05 2013-07-01 08:59:01
2945504 665d3c6484a54a59f9e9383626fe05a8b84b2cb7 6 15 2013-06-13 14:56:59 2013-06-26 14:12:56
2946505 a2b67556cda90d6da66efdec4f08e1cf28d055a4 6 15 2013-06-13 14:54:31 2013-06-26 14:12:56
2947506 bf06417215f4c09d3ebfd4886de5be0ff05b5176 6 15 2013-06-13 14:48:17 2013-06-26 14:12:56
2948507 47469bbcd2c25e0c850f03b8f1fe3496b32aa012 6 15 2013-06-13 14:47:59 2013-06-26 14:12:55
2949508 3b6e3d23a9e4d534c4ea54a3d05c5458121cd2e1 6 15 2013-06-13 14:47:30 2013-06-26 14:12:55
2950509 d0dd472d211e65741ea2ee9831cd380b1f657997 6 15 2013-06-22 10:18:29 2013-06-25 18:52:58
2951510 7a307490dd1ae6ef5d6f8d2a8a123e004f6bf061 6 15 2013-06-19 13:29:08 2013-06-25 18:52:58
2952511 913b4aacf82c5dc831a98ea48aa693c7e38e3f3b 6 15 2013-06-14 13:42:35 2013-06-25 18:52:58
2953512 ecc87818f45c02d2ab3b35f5d76174aca59c083b 6 15 2013-05-16 09:29:18 2013-06-25 18:52:57
2954513 bc1d8a8ea1412053de2e18be026518941e255590 6 15 2013-05-16 09:25:03 2013-06-25 18:52:57
2955514 e74e2f1572f56b57457d9b927d90992453605520 6 15 2013-05-16 09:23:43 2013-06-25 18:52:57
2956515 8306fe0faca85f53ffbc91384c449050cb7e4272 6 15 2013-05-16 09:20:36 2013-06-25 18:52:57
2957516 d688b35d14e0c3f8df37d6a81cd4b6bd3994f7ce 6 15 2013-05-16 09:16:13 2013-06-25 18:52:57
2958517 c31d0d99534add025447ce9045ed0143a4a9b95e 6 15 2013-05-16 09:09:01 2013-06-25 18:52:57
2959518 4c9a16275cfb8cb965fb0110ba62930f3739e80f 6 15 2013-06-09 14:04:26 2013-06-14 10:57:49
2960519 40a246a16553fc3a1a2d4e41a1473b38a3e08e0a 6 15 2013-05-17 16:54:06 2013-06-14 10:57:49
2961520 76daf351333444a05284a2993151a22769776a1a 6 15 2013-04-26 17:17:35 2013-06-14 10:57:49
2962521 4956df2ef824c2c92ecd5986fde5a221b5f198cd 6 6 2013-05-26 10:44:50 2013-06-13 13:52:51
2963522 6176a80b9513b87a841ea99ee5191bfa513a79b3 6 6 2013-05-26 10:39:27 2013-06-13 13:52:51
2964523 d0fd93b1ac8414aaee7e1b397a213f6c2cf71f6d 6 6 2013-05-26 10:36:53 2013-06-13 13:52:51
2965524 2ff6ea0051fb9b5d6c815c4264534b498553203a 6 6 2013-05-20 19:39:33 2013-06-13 13:52:51
2966525 33e959de9eaca22596585cc02783d23296cc4c9d 6 6 2013-05-24 16:42:41 2013-06-13 13:52:51
2967526 846932113bae2945c9c3cc924936b929032ac492 6 6 2013-05-20 19:42:19 2013-06-13 13:51:18
2968527 8c9333ddf6dfe37a63bff0486c57a4feaa92f6f2 6 6 2013-05-26 08:12:44 2013-06-13 13:51:18
2969528 105b084ca9e9d09125e3852317f310e127b07380 6 6 2013-05-20 20:11:26 2013-06-13 13:51:18
2970529 d7a495eab89909149a173378943445bacbc66d1b 6 15 2013-06-12 07:50:29 2013-06-13 09:07:12
2971530 bc2ad27f2c2efa7ecd0eb7f19a36d1f5a5a51e4c 6 6 2013-06-10 09:34:23 2013-06-10 09:34:23
2972531 ad665f7196eb8281ce6e03060e930fc8a171dc60 6 15 2013-05-27 13:58:37 2013-06-09 14:59:17
2973532 8808682b7d93e92aeda5655eec50568641ef202a 5 5 2013-06-03 08:46:03 2013-06-04 18:17:17
2974533 e3cfa76ee72918175cc735fbf2855640b7a555d8 5 5 2013-06-02 20:36:29 2013-06-04 18:17:17
2975534 6007ecb84fcb33ca6de7b2c8116a8c353738907e 5 5 2013-06-02 18:59:53 2013-06-04 18:17:17
2976535 bea430f34c7138c6ca69fcb15aa3ba9b2071f1de 5 5 2013-06-02 19:32:37 2013-06-04 18:17:17
2977536 b87087bb3ed081736e33a1915f9bc8f0587704f9 5 5 2013-06-02 17:54:54 2013-06-04 18:17:17
2978537 e53722657011c3521974f92f24beca8413426fc5 5 5 2013-06-02 16:30:47 2013-06-04 18:17:17
2979538 383e8bb039da873e92d68d0f3f29991ba1b13cd4 5 5 2013-06-01 21:38:14 2013-06-02 12:01:06
2980539 5c472b27defb4057d1535be2d17feafe17e3fb5e 5 5 2013-05-31 20:58:48 2013-05-31 20:58:48
2981540 7e767dc9b285fc7bb60f2b9582247107a8952871 5 5 2013-05-31 20:41:38 2013-05-31 20:51:07
2982541 5beaf66ec5d53bf741d7037eb4ceacefaf6151a9 5 5 2013-05-31 20:33:35 2013-05-31 20:35:51
2983542 ee2f43ff9eb4137672a714c3a136972f36ea6f25 5 5 2013-05-31 20:30:45 2013-05-31 20:30:45
2984543 9c0ddde7c140640dd5169514f15919ce8d64371c 5 5 2013-05-31 20:27:21 2013-05-31 20:27:21
2985544 2aab912291b3e4ef146c707a759dad48cc0adc09 5 5 2013-05-31 20:23:47 2013-05-31 20:23:47
2986545 9fa6717fe9846d1d07cd0fa612dcafb48fb895b9 5 5 2013-05-31 20:17:27 2013-05-31 20:17:27
2987546 4a528f2427bb9263034f67e5df386b0fc56b6238 5 5 2013-05-31 20:14:33 2013-05-31 20:14:33
2988547 a10f3a51127abb4b62336b8c8c4d0bf95e415899 5 5 2013-05-31 20:08:01 2013-05-31 20:08:01
2989548 e60d6542f53d8af48f5fbff00613763ea7d747e7 5 5 2013-05-30 20:35:29 2013-05-30 22:03:47
2990549 99a645119a1d6c7aaec435c46d116182e6971baa 5 5 2013-05-30 18:57:45 2013-05-30 22:03:47
2991550 bf3067279105b7a9646b1d777950b3b6f8d2b955 5 5 2013-05-29 21:17:27 2013-05-29 21:20:04
2992551 f7d36867d630490a8933f8430390bca7f4903691 5 5 2013-05-29 21:12:40 2013-05-29 21:13:41
2993552 71405a1582fc7edf956b6cd23e0d285c01a94965 5 5 2013-05-29 21:06:50 2013-05-29 21:13:41
2994553 02317d86fc93db284b853259613b7281c02c183e 5 5 2013-05-29 21:00:29 2013-05-29 21:13:35
2995554 65e17047a0c0462d5729accf3840403d2131eb83 5 5 2013-05-29 18:01:23 2013-05-29 18:01:23
2996555 aca30b7e0cba90067118afdd3c178aeee289c8fc 5 5 2013-05-29 18:00:42 2013-05-29 18:00:42
2997556 ed601bcc50b2e3dceb02300a91a423554bc0c93d 5 5 2013-05-28 21:20:52 2013-05-28 21:50:48
2998557 79683f8e9ad4f68f0c70af5c932e1d4f079e7afa 6 5 2013-05-28 18:48:36 2013-05-28 20:49:28
2999558 f1b68e55f508ba3f6bf6b7a3960b5f28ab1c4851 5 5 2013-05-28 11:27:54 2013-05-28 20:49:28
3000559 1cb449188f817d9e5dbd0f3ab9d5c25e8002cfe7 5 5 2013-05-28 06:53:51 2013-05-28 20:49:28
3001560 12d2745dd249f74af596db635e5764a97ebf5929 5 5 2013-05-28 08:13:59 2013-05-28 20:49:28
3002561 e48bf668b31129f38d668dd15f26ed485d17cae6 6 5 2013-05-28 19:04:53 2013-05-28 20:49:28
3003562 bc17d0aaa409321ad02f5201b5ef58b53d0e6eaf 8 15 2013-05-26 23:09:12 2013-05-27 22:00:13
3004563 a301c70230978c546f6a019e3681185455cc7821 8 15 2013-05-26 00:09:49 2013-05-27 22:00:13
3005564 b8014a673d941357c9b2cc8362f607b3ee3e27e5 8 15 2013-05-25 23:57:49 2013-05-27 22:00:13
3006565 2a3b90797f5cf1d1aae06f4768def84302622f38 8 15 2013-05-25 23:36:10 2013-05-27 22:00:13
3007566 3500c0ca00cc4b61c719bbd1cae9057df6090828 8 15 2013-05-25 23:14:27 2013-05-27 22:00:13
3008567 b1785f67d186905b3f446d0fec749b0421dbc302 5 5 2013-05-27 20:08:47 2013-05-27 20:25:19
3009568 58229666df5fb94c62e529b415c96cc68c6a6ba3 5 5 2013-05-27 20:03:05 2013-05-27 20:25:19
3010569 a458f366e8889c2aaf0418d7f92afef867aae537 5 5 2013-05-27 19:33:21 2013-05-27 20:25:19
3011570 40abe5f3606b1256534aa4fb613b5d6dc2fd12a9 5 5 2013-05-27 19:14:19 2013-05-27 20:25:19
3012571 881bf33bfb536c1cccdf65abda98b8e5043ff0f6 5 5 2013-05-27 18:59:53 2013-05-27 20:25:19
3013572 240095b4c83917fe7425cb141a41e7419e3937a2 6 15 2013-05-26 12:25:27 2013-05-26 14:24:25
3014573 844fe72f5c87e45c9bcefb6afa9868026b8095a5 6 15 2013-05-25 12:14:50 2013-05-26 14:24:24
3015574 2aa7e73d2babc7933e08aad11419efecc98e9d52 6 15 2013-05-25 12:07:30 2013-05-26 14:24:24
3016575 88df6de257edbe2d766ccb8f11ce769f938d36d7 6 15 2013-05-25 12:30:09 2013-05-26 14:24:24
3017576 674ef4a39038791cd2506f14b760b832d41cf3cb 6 15 2013-05-25 11:49:12 2013-05-26 14:24:24
3018577 6a8ad7c617f59de211dfe847e547c194f00b5f2b 6 15 2013-05-25 09:50:28 2013-05-26 14:24:24
3019578 d916521b0e431a2d216a17f48d7e13e9c193339c 6 15 2013-05-25 09:55:30 2013-05-26 14:24:24
3020579 30e472de475d17048a7a7933a31bf34c9bfa2a85 6 15 2013-04-25 14:55:25 2013-05-26 14:24:24
3021580 2f263e738b3416d7cb58fe2df3ea5ee68be40b48 6 15 2013-04-25 09:47:05 2013-05-26 14:24:24
3022581 3770147e6a3a949ebcc907d2d9cd29afa8948012 6 15 2013-04-09 11:14:17 2013-05-26 11:40:35
3023582 97a5a0d0b9ed9149edccf65ad9f4876e9722761f 6 15 2013-05-25 20:07:24 2013-05-26 11:40:35
3024583 83961d629de4628eb6583922735c42f897009507 6 15 2013-05-25 20:19:04 2013-05-26 11:40:35
3025584 bcf12ab48c993ee079cbff48305f230e9a9f557c 6 15 2013-05-25 13:49:58 2013-05-25 17:27:19
3026585 2a5ed724677633cb026dbd27496d9867e8322513 18 15 2013-05-24 09:25:42 2013-05-25 16:31:15
3027586 d6c3ade5c39bed78e8b5f9e63b7711e0db172cf0 6 15 2013-04-17 10:53:40 2013-05-25 13:54:05
3028587 c5c59c5bce51715a3b1d309f0d8d2aa3df2b16e8 6 15 2013-05-24 10:37:23 2013-05-25 12:48:31
3029588 23931aaa7e868e241be97bc7a38d640ff68c5622 6 6 2013-05-22 17:13:00 2013-05-23 20:31:51
3030589 b080e0ed032bc53f883ff46b52f8267c274e59a5 6 6 2013-05-12 19:55:27 2013-05-23 20:31:51
3031590 a9fc833869b05004c541f8463f32fadea8a49c82 6 6 2013-05-12 18:59:44 2013-05-23 20:29:44
3032591 aea08ae016a890ee9291eb4fa5141a18af8f0db4 6 6 2013-05-12 13:21:06 2013-05-23 20:29:44
3033592 48533cbd4ed832719c75c28dbc534cd61c065b21 6 6 2013-05-10 14:44:27 2013-05-23 20:26:56
3034593 aca57d0899e5193232dbbea726d94a838a4274ed 6 6 2013-04-08 10:13:54 2013-05-23 20:23:43
3035594 ca89553db7a2ba22fef70535a65beedf33c97216 6 15 2013-05-22 12:52:30 2013-05-23 18:46:31
3036595 a5edc9cf092934f600bce3096d365935de9c0175 6 6 2013-05-22 11:55:45 2013-05-23 18:09:12
3037596 21a67d8aa47ca6e9fcf980f9c3a76e0d8191021f 6 6 2013-05-22 11:52:50 2013-05-23 18:09:12
3038597 44469aee3c09248fa425ed8096687a88e843f535 6 6 2013-05-22 11:50:56 2013-05-23 18:09:12
3039598 06bff94ea3612517f3e09a37165d2d421ff229b4 6 6 2013-05-22 11:47:29 2013-05-23 18:09:12
3040599 0ce93ba8d096676c3d26dd16ed93090918052d47 6 6 2013-05-22 11:46:45 2013-05-23 18:09:12
3041600 0b5a4e3d4f183af04a13e014a019c983e39e7e0e 18 6 2013-05-17 10:54:44 2013-05-23 18:09:12
3042601 132dbfb7c2ac0f4333fb483a70f1e8cce0333d11 6 15 2013-05-22 16:20:39 2013-05-22 21:05:30
3043602 0497dbc2d6124a3831e430e7c3fc6475a0783f02 6 15 2013-05-22 16:22:35 2013-05-22 21:05:30
3044603 52efcada27d9281b84d2273c037c0c5b7920f7a6 18 6 2013-05-22 16:47:37 2013-05-22 17:34:39
3045604 7d405043a9bac702cfd158fbbca146aec6e838fa 18 6 2013-05-22 16:43:33 2013-05-22 17:34:39
3046605 e83afd62f389b61fb8eb8a9ed1f2cd7d40771bad 5 5 2013-05-22 16:18:23 2013-05-22 16:44:46
3047606 f22389e86725df3bf27dad511cb814d45d1119ab 5 5 2013-05-22 15:39:02 2013-05-22 16:44:46
3048607 0b03993ff696f88f1537111e9d260e8cbe0f1748 5 5 2013-05-22 15:15:11 2013-05-22 16:44:46
3049608 46bed99ff30f439a765951f4ca28651c9af1c5b5 5 5 2013-05-22 15:09:11 2013-05-22 16:44:45
3050609 c03de0b1019af9b3e56865b8bf876540e335e63c 6 6 2013-05-22 15:46:05 2013-05-22 15:46:05
3051610 c28b0a3b373fcec16711240e65b6678ed3b2b0d6 19 19 2013-05-22 11:55:38 2013-05-22 13:09:00
3052611 1275699a0ce5355bb338b6c0c726b14df608ea4a 5 5 2013-05-20 18:37:53 2013-05-20 21:03:59
3053612 bfd8c9e40d5d70e3319ca48a269dbf8a61e34444 5 5 2013-05-20 18:29:40 2013-05-20 21:03:59
3054613 4f7781565320f472274a4801d259d74e746e3d23 5 5 2013-05-20 18:26:39 2013-05-20 20:57:15
3055614 a991971ac26b214ce6a492c359062fabb99ba297 5 5 2013-05-20 18:25:14 2013-05-20 20:57:15
3056615 52af0e68d2bb140c21c87544d0c5fbc469a78c92 6 6 2013-05-20 20:43:51 2013-05-20 20:51:30
3057616 1f8851d2cd0abfc09a32c741dcd7d433f4f73944 8 8 2013-05-19 21:16:52 2013-05-19 21:58:04
3058617 62a9ec80987aa28c67c0bfc815a3a7d3dd2c2c24 8 8 2012-12-21 11:35:25 2013-05-19 21:34:09
3059618 2b603ea26205065f4c242a2a7188bd1d41559807 6 6 2013-05-18 22:10:33 2013-05-18 22:27:18
3060619 47baceff0f7729be9255c8f6f0f8816eb9685e2e 5 5 2013-05-18 20:36:03 2013-05-18 22:12:45
3061620 83cc6c00429359dfde6aa031b1183ca532c14ffe 5 5 2013-05-18 21:30:49 2013-05-18 22:12:45
3062621 904b3eb88edee760684640807819e9895cd99fb8 19 19 2013-05-18 18:51:36 2013-05-18 21:45:43
3063622 3db69c2cc6ef96e8f0daa545b863ed9acc9c175b 19 19 2013-05-15 14:34:11 2013-05-18 21:45:43
3064623 db6d5bfcf2e107b250c60e1dbe471cd394ac433d 19 19 2013-05-15 14:31:52 2013-05-18 21:45:43
3065624 04947a406a3b4694183cf291ac3e484e35fd64b2 19 19 2013-05-15 14:03:57 2013-05-18 21:45:43
3066625 dd51dea67c4c462c2710a3e858bf95303ef59ffd 6 6 2013-04-05 07:52:01 2013-05-18 20:14:02
3067626 69feed5a64935f83f19b4927afecfc8dee61c309 6 6 2013-05-17 16:15:45 2013-05-17 21:52:23
3068627 a08619bfb89ee08b7e71da2a78afbedf40f2c70d 6 6 2013-05-17 14:53:36 2013-05-17 21:52:23
3069628 0966754ea73d30965d8b93a47522e894d009d6fe 6 6 2013-05-17 14:38:12 2013-05-17 21:52:23
3070629 1ba70ffe1b519ec8b69ec6f8800dd243a2a8390f 5 5 2013-05-17 14:49:32 2013-05-17 15:17:37
3071630 310ba24ef8be8501d0eac75af82fe1d48f607460 5 5 2013-05-17 11:12:32 2013-05-17 15:17:37
3072631 8afed5e9be0dedf1fbf9f69c45e5fcf9e6f66fe3 5 5 2013-05-17 10:59:02 2013-05-17 15:17:37
3073632 092ed1c48fdec99bfa16534aaf6fe640189554a9 6 15 2013-05-15 12:26:47 2013-05-15 18:31:25
3074633 4d14735c42b6568954c4a05e249108c564120b99 6 15 2013-05-15 10:21:17 2013-05-15 18:31:25
3075634 a663c6189a828b07e6e5985fcd43c60ba3ab4378 18 15 2013-05-15 07:45:22 2013-05-15 18:31:25
3076635 bc661163b11234e85ec7b0efe1195cce473f234a 5 5 2013-05-08 22:02:46 2013-05-08 22:02:46
3077636 01bd2a980fdbd0773ecfae144155745a67a95694 5 5 2013-05-08 20:49:05 2013-05-08 21:54:27
3078637 d4fb1f81667faddfddfcf9473fa0aca7555bd300 5 5 2013-05-07 16:38:48 2013-05-08 16:47:49
3079638 b323c10c4913154ce798f532dad282454a8c21b4 5 5 2013-05-08 13:20:24 2013-05-08 13:20:24
3080639 b3524ef0bb155f6047c636ae436bc27ee3dd7591 5 5 2013-05-07 19:56:29 2013-05-07 19:56:29
3081640 08362454ab503ce0206ab16b701dba50176b6d62 6 6 2013-05-07 19:37:16 2013-05-07 19:37:16
3082641 e382cd2b70739a5a88cb574e7c379424bedea3c1 6 6 2013-05-06 18:53:44 2013-05-07 09:11:21
3083642 14abaeb0e8042dc27acd1dc8ee81925f639b1423 6 6 2013-04-24 19:50:55 2013-05-07 09:11:21
3084643 fe43393a34eb5e7035e467d398c351a5d4776ef8 6 6 2013-04-24 19:47:56 2013-05-07 09:11:21
3085644 9ef9fcaff6ab7d76e2040c18ae8f7e80676071ff 6 15 2013-05-03 12:57:52 2013-05-04 15:42:36
3086645 99113cb848c883bc6d76933b3c274ff9973a243c 6 15 2013-05-03 11:06:02 2013-05-04 15:42:36
3087646 7315d405a56e65318f56733d12b9eedc64e4d777 6 15 2013-05-03 11:02:42 2013-05-04 15:42:36
3088647 aa640b3cc98f969d8055a05bc46b6ed6b0b660d4 6 15 2013-04-28 09:17:08 2013-04-28 19:27:08
3089648 8230797a67c4c4f80b3a3f74c7c8aecda31fa91b 6 15 2013-04-27 09:37:14 2013-04-28 19:27:08
3090649 44a5cbdbca1d916f08a5c7c1a211499a4b15b8ab 6 15 2013-04-27 09:34:19 2013-04-28 19:27:08
3091650 2b25d82acb2f86f3b9c341b825bc9d251aedbf1f 6 15 2013-03-19 11:55:18 2013-04-28 19:27:08
3092651 e9be2592152286e6f6299850bc0205e0e6c0d8a6 5 5 2013-04-25 18:42:29 2013-04-25 18:42:29
3093652 ba3fe553e7dc446919197616767f5f65d4f0e738 6 6 2013-03-13 08:37:17 2013-04-24 14:07:14
3094653 51857cd696420d18a1274a4ede1faa2534733f7d 6 6 2013-04-23 12:05:36 2013-04-23 12:05:36
3095654 891de2d9ce7db1b5ac870250ea81382347e12bee 6 6 2013-04-22 18:03:09 2013-04-22 18:03:09
3096655 b61eda9e4feb9feba43d51111bf0a4c8857c52b7 6 6 2013-04-22 17:58:11 2013-04-22 17:58:11
3097656 650cf3d10dce7f1f374a9d99de3f9284d74ac313 6 6 2013-04-22 10:55:01 2013-04-22 10:56:58
3098657 e5401e01442b1fc23e4eb87f34bf9012dfbf71ee 6 6 2013-04-21 18:32:08 2013-04-21 18:32:08
3099658 47c6cea51af517107c403d96810fce946825aacc 6 6 2013-04-21 18:10:32 2013-04-21 18:10:32
3100659 e73afd450cffeca374bccf6103e8c17f737f9378 6 6 2013-04-21 15:24:52 2013-04-21 16:57:13
3101660 ec6668ae0da023052812f7d16bd70902fead6a36 6 6 2013-04-18 14:12:40 2013-04-21 16:57:13
3102661 3cc7de2fbc9c818f65b1ba996b39b2b3f4404c3f 6 6 2013-04-08 15:19:11 2013-04-21 16:57:13
3103662 35dcf15de491117a0b4ff118fe8d158869ec5edd 6 6 2013-03-19 09:43:26 2013-04-21 16:57:13
3104663 80ff10842a1f16bd384da7da8a4a663685915b5d 6 6 2013-03-13 16:36:55 2013-04-21 16:57:13
3105664 f559eeda32d1253effba18137fa64f2b461511c7 6 6 2013-03-13 12:54:02 2013-04-21 16:57:13
3106665 f9fa32646c5fc77083fdd9cadf395626334933fe 6 6 2013-03-03 21:20:29 2013-04-21 16:57:13
3107666 298b4a58bdf5dcb64a8d4ef8dd861d42db14b95b 6 6 2013-02-27 17:03:42 2013-04-21 16:57:13
3108667 3ffaced8e9a4d8c1fdeb8434664fe96fb202e364 6 6 2013-02-27 17:03:02 2013-04-21 16:57:13
3109668 12d0126c883b97bf051df688cfd101e82dc7188a 6 6 2013-04-21 15:23:04 2013-04-21 16:57:13
3110669 558e05034da06a37d73f06fea2e54cc34cdba6c5 6 6 2013-02-27 16:15:58 2013-04-21 16:57:13
3111670 e1751b39620a1596a21226519ddef040113df206 6 6 2013-02-27 16:12:50 2013-04-21 16:57:13
3112671 a533c6f25a11683c081d27aab24af3c644e4fc7a 6 6 2013-02-25 11:28:17 2013-04-21 16:57:13
3113672 0fa6f511892025790d247f40d132ee3084fade05 6 6 2013-02-23 15:46:45 2013-04-21 16:57:13
3114673 6bce71fedc9ce12bc25f41f02d6f4dc01a949bd3 6 6 2013-04-08 15:15:40 2013-04-21 16:57:13
3115674 40486c11db3071870ce50267b609cd4403d9ca30 6 6 2013-02-23 14:39:38 2013-04-21 16:57:13
3116675 2a16041cd0d9d0c06e1c563734cb1559f8cb2564 6 6 2013-02-23 14:37:12 2013-04-21 16:57:13
3117676 1b5ca71f631c3aa68fc44e949d82303107f1a11d 6 6 2013-02-23 14:30:50 2013-04-21 16:57:13
3118677 a94f20e0f370c3cd7a021c7079841d5ef3b6b987 6 6 2013-02-23 14:29:02 2013-04-21 16:57:13
3119678 396ccfaceb363ec1b1d0b458e7725264ac85dead 6 6 2013-02-23 14:26:56 2013-04-21 16:57:12
3120679 5fcd1d7e4e03bbfce880f44927df6284b88b834e 6 6 2013-02-21 17:22:41 2013-04-21 16:57:12
3121680 5d234ee4e33b50c0f7083ff3cb4da77b2acb00e2 6 6 2013-02-18 13:45:56 2013-04-21 16:57:12
3122681 6916f84636298949dae099306d1d7c88719b74fa 6 6 2013-02-17 21:27:50 2013-04-21 16:57:12
3123682 e0892183f38932cec0d33408bdfebb290a13f8f3 6 6 2013-02-17 14:38:15 2013-04-21 16:57:12
3124683 f771149aba230c4712c9cb9c6af4ccfea2b7967d 6 6 2013-02-17 20:51:52 2013-04-21 16:57:12
3125684 20b88cb9dd0e55b628d18551442c3a6a01d67871 6 6 2013-02-17 14:36:57 2013-04-21 16:57:12
3126685 79e404229c60f7639c1b8e220a462265eeb3a032 6 6 2013-02-15 15:36:52 2013-04-21 16:57:12
3127686 8379857e734b8db9c9c3f71d786def2ff0f63cc3 6 6 2013-02-15 15:35:16 2013-04-21 16:57:12
3128687 04c77c0e8bce28471ac64d76b9b7b7b8338ddecf 6 6 2013-02-15 15:34:38 2013-04-21 16:57:12
3129688 bc244668c9117cfea63199b0a48952de7fed4537 6 6 2013-02-15 15:33:35 2013-04-21 16:57:12
3130689 c53b11f83c6c9eefe8de5a0952e43aa835d797a2 6 6 2013-02-15 15:28:56 2013-04-21 16:57:12
3131690 500c4575a722982dc6dce5883f79c0180a917959 6 6 2013-02-15 15:28:24 2013-04-21 16:57:12
3132691 ef5fe2975b0db31625e2979a8b2064ddaf90743a 6 6 2013-04-08 15:14:27 2013-04-21 16:57:12
3133692 6c2d499f37201d5f50e49bd5d4215d24382eab69 6 6 2013-02-14 10:51:26 2013-04-21 16:57:12
3134693 f591859dab1410d9efdbc92db2255920eb2360a9 6 6 2013-02-05 16:33:40 2013-04-21 16:57:12
3135694 b8a4e837bdc4c392538df32d03fe1f61ee07a6d7 6 6 2013-02-05 10:55:39 2013-04-21 16:57:12
3136695 8fc6d84cf6519487ac681b86d72e92d1658bf8a3 6 6 2013-01-31 15:36:59 2013-04-21 16:57:12
3137696 0c2bf0fb0b5a74cfc8a066bf19398a61a04f7da4 6 6 2013-01-31 15:18:22 2013-04-21 16:57:12
3138697 95591227347fb6e165ef4c552c0c0ef0b5927e98 6 6 2013-01-31 15:13:11 2013-04-21 16:57:12
3139698 de2bc924293d617aa90df76bec8217a50ec01719 6 6 2013-01-31 15:02:26 2013-04-21 16:57:12
3140699 c7f98bd872d0d958a8d4081451205aca423c6d21 6 6 2013-01-31 12:11:26 2013-04-21 16:57:12
3141700 f01b45908ef6bc15cf07924cfea0d33ecc4191e6 6 6 2013-01-28 14:38:17 2013-04-21 16:57:11
3142701 c40a7dd1f3dc50e74103d917b19eea34863aaf69 6 6 2013-01-28 14:36:13 2013-04-21 16:57:11
3143702 21d35943d9b828a47ef5890c816748f455bec5ea 6 6 2013-01-28 14:35:35 2013-04-21 16:57:11
3144703 c462392560c1075a2dda65ae0c6eaa690f6f118a 6 6 2013-01-28 14:34:04 2013-04-21 16:57:11
3145704 8b30e84657a1851a832f26268ac2bdd03f62d276 6 6 2013-01-28 14:29:26 2013-04-21 16:57:11
3146705 fbd208bb731de6e1fc2bae59931c4a71b5325316 6 6 2013-01-28 14:28:28 2013-04-21 16:57:11
3147706 ec22b6fb699ca5cc9e2f6d9b33257e25d377d76d 6 6 2013-01-28 14:27:42 2013-04-21 16:57:11
3148707 f948560f3b20d270c109834306cca5d4713c4f4e 6 6 2013-01-28 14:25:05 2013-04-21 16:57:11
3149708 06621492c2017d5bc1ae0cf9d3a2482106518ce0 6 6 2013-01-28 14:24:39 2013-04-21 16:57:11
3150709 583ceca3d7db6dafe344748edc268f3226ce221f 6 6 2013-01-28 14:21:33 2013-04-21 16:57:11
3151710 d259975cde10c23285a2ea04c8178693fae57d27 6 6 2013-01-28 14:20:36 2013-04-21 16:57:11
3152711 26b8f2333ca04bfe7e0128d99356a676124d41a5 6 6 2013-01-28 14:18:05 2013-04-21 16:57:11
3153712 bb64283ecbc765dc8b56df53fdfc1fc6d730c507 6 6 2013-01-28 14:16:39 2013-04-21 16:57:11
3154713 5528f133157d80007452a00f148d33e287795a7c 6 6 2013-01-28 14:14:55 2013-04-21 16:57:11
3155714 86f221962b4ced6c5cdebdd414febf85d2565fa4 6 6 2013-01-28 14:11:59 2013-04-21 16:57:11
3156715 c8ad73c531a5f56d28902c3a261854b35c907b7d 6 6 2013-01-28 14:08:52 2013-04-21 16:57:11
3157716 cc679301a437fc4661dd19866c47b2a45d8268e2 6 6 2013-04-08 15:13:11 2013-04-21 16:57:11
3158717 15e1528193583b5001ec831fcc7bc5627a9dc8c4 6 6 2013-01-17 09:58:41 2013-04-21 16:57:11
3159718 1ce94bf1314835bb56f200011163607d5a1f9e55 6 6 2013-04-08 15:09:26 2013-04-21 16:57:11
3160719 d608c034b23d683bdf3afb276b89540d343efaf5 6 6 2013-01-08 09:54:16 2013-04-21 16:57:11
3161720 13d40ca4ed75dd8153d41014c54b7465b40dcfe6 6 6 2013-04-21 15:21:31 2013-04-21 16:57:11
3162721 746ac4496d5e3897f5b98a577ade0e9f5688ee2b 6 6 2013-04-21 15:20:15 2013-04-21 16:57:10
3163722 43b5cd3c6d0e5f45e51e69a561357536f2754b7f 6 6 2013-04-21 15:35:46 2013-04-21 16:57:10
3164723 3b436177c6b8ef3128509610d954933dc6f52417 6 6 2012-12-18 11:14:45 2013-04-21 15:33:33
3165724 c4bcb9c81f9d08893575e5baaf282d84bc9e4e71 6 6 2012-12-18 11:13:23 2013-04-21 15:33:33
3166725 665119764622fcda2f178170418e01070b5e0629 6 6 2013-04-08 15:05:07 2013-04-21 15:33:33
3167726 c41e26804f38429cd8e84199fc5ebd2ed170885e 6 6 2012-12-17 11:01:25 2013-04-21 15:33:33
3168727 3d5b02970a45208e7f53e046ac096ecb5aad54bc 6 6 2012-12-17 10:56:12 2013-04-21 15:33:33
3169728 f2d92aca3cbea01696851f0ac1b3808c8764eff6 6 6 2012-12-12 14:50:21 2013-04-21 15:33:33
3170729 654220379d0b70b77ece0a784e658ea5f477e63d 6 6 2012-12-07 15:16:20 2013-04-21 15:33:33
3171730 dfeb0e54d183787283d02775f6b09e3e603ec870 6 6 2012-12-06 10:08:30 2013-04-21 15:33:33
3172731 d58eaf5ad6891e890ed8aa72f7b57fecabc4e871 6 6 2012-11-27 11:56:49 2013-04-21 15:33:33
3173732 0e56a785b8e1c2eaef8131d47b93b96eed66f3b6 6 6 2012-11-26 15:03:06 2013-04-21 15:33:33
3174733 9648ebf6b04dad5f1736f6aea88e0fff421ffa1d 6 6 2012-12-04 11:38:56 2013-04-21 15:33:33
3175734 2df74970e32fad43ee2f3bbbee8dab216f58ab9a 8 8 2013-04-06 16:12:18 2013-04-08 21:10:38
3176735 78d7849db854f3544d7291cce96a0a4fa6d6843d 6 6 2013-03-27 16:40:00 2013-04-07 21:24:08
3177736 cf0ecdeafb682bd03fba9a5bbc94e125101a5a0f 6 6 2013-04-07 20:50:36 2013-04-07 21:24:08
3178737 78af734b861a1f42a5381aec8e3ec165f280bb25 6 6 2013-04-03 20:02:19 2013-04-07 21:24:08
3179738 1b26661ba838fa7d50128c0ff384bd4494745d87 6 6 2013-04-06 19:33:54 2013-04-07 21:24:08
3180739 d7c4e5eb82937b56968dbb0436d7eb2c3e3fc6dc 6 6 2013-04-06 19:31:14 2013-04-07 21:24:08
3181740 b786f62914c1088657b2fa748cefbe8bc065577e 6 6 2013-03-21 12:01:34 2013-04-07 21:24:08
3182741 15e081a967f44e418a0dc641cece0493cbefc187 6 6 2013-03-16 12:55:18 2013-04-07 16:44:29
3183742 16422e08f5b384a7008f17feac0b6e4b94d95126 6 6 2013-03-16 12:49:53 2013-04-07 16:44:29
3184743 d1cf6cae3d49b888ffd7b50f3a4abca0d5fb7c67 6 6 2013-03-19 15:42:59 2013-04-07 16:44:29
3185744 1b339b6cc2b33cafd1de17a4de44f6e3fbbe3151 6 6 2013-04-05 13:40:58 2013-04-07 16:44:29
3186745 47f8e75e0c52a206d6aa8d3be873a80c4ba8a1c2 6 6 2013-04-06 19:35:40 2013-04-07 16:44:29
3187746 be7613a3fd504423632d13f4cf275a442af159cf 6 6 2013-03-15 16:04:14 2013-04-07 16:44:29
3188747 5395dfd16657cda0d1bc596fe9a3f2ccb41c9fc6 6 6 2013-03-15 14:14:36 2013-04-07 16:44:29
3189748 66f3cb0c2c313c0853ca47ed65763e4ee4e2aa47 5 5 2013-04-04 22:18:47 2013-04-04 22:25:46
3190749 f9cdf012b72bfe21f8c12fedfcfd323ef4f8d6cb 5 5 2013-04-04 22:14:30 2013-04-04 22:24:57
3191750 97f308ceb3bc3c451c038eb99214303702308fda 5 5 2013-04-04 22:09:22 2013-04-04 22:09:22
3192751 969ba42f68538dc9e94469a2909b4ff437181bd3 5 5 2013-04-03 21:09:27 2013-04-03 21:09:27
3193752 fe7be8c6cd24fa72d8c22c33598c5549b41771e9 5 5 2013-03-21 04:25:41 2013-03-21 15:16:29
3194753 9e4b7b5c8cd79cd579c49c13c8b8d39a05a416e0 5 5 2013-03-19 14:47:42 2013-03-21 15:16:29
3195754 55808455116e415921d2fc788ea04df364cb24b0 5 5 2013-03-19 14:44:33 2013-03-21 15:16:29
3196755 257800b3bda50c3c6148d904054ddbcd01c8b5df 5 5 2013-03-19 14:40:27 2013-03-21 15:16:28
3197756 927e2ba833cb0c9ce588b5f59c42bbb246e3e20c 5 5 2013-03-19 14:34:27 2013-03-21 15:16:28
3198757 d0e19bdc29fe54cf282d1c43b605c687407d7391 5 5 2013-03-19 14:24:19 2013-03-20 15:47:55
3199758 c2f68c9b301d0deba484efbf87a9aa2e0fa60e93 5 5 2013-03-19 14:13:49 2013-03-20 15:47:55
3200759 1e040605b631dd172745c0c8d781090595a2fd80 5 5 2013-03-19 13:59:16 2013-03-20 15:47:55
3201760 42cc1c47a4f02f6dedccb619552c55b835800a2e 5 5 2013-03-19 13:37:59 2013-03-20 15:47:55
3202761 687cfc6a95acacd344e1644207f6673d1e60f2a2 5 5 2013-03-19 13:30:38 2013-03-20 15:47:55
3203762 6cb85d0193bbcc65615876202da57bd317373d7c 5 5 2013-03-19 13:30:00 2013-03-20 15:47:55
3204763 ec4ba73a990ff0059755ca0295e77bced3a9993b 6 6 2013-03-13 22:51:56 2013-03-13 23:06:09
3205764 a41b0a30a77bc5ebed4ef9e08251cf5fdf844baf 6 6 2013-03-13 18:06:47 2013-03-13 21:32:27
3206765 677cdd043fcce4397d981ca03e1eb4b416fe2631 6 6 2013-03-05 20:06:21 2013-03-12 21:02:31
3207766 57206a2285c0163fc247ae112cfb32913c8c766e 6 6 2013-02-28 12:08:16 2013-03-12 21:02:31
3208767 38667dc87a03397d3cdbd39d1bfba986b3a41a74 6 6 2013-02-11 15:50:39 2013-03-12 21:02:29
3209768 3d442f95f1cde8d5b0218fe32918ef5b5ea7cbec 6 6 2013-03-12 11:08:50 2013-03-12 14:54:36
3210769 fe7dd8039f8cc045e0a2cda99b504d30bb7edc0c 20 6 2013-03-12 08:46:09 2013-03-12 14:54:36
3211770 a14f5c65bf32ad4543f9d922c083c6d591374a77 6 6 2013-03-12 11:37:23 2013-03-12 11:38:55
3212771 e3cfb5930184ad5a12af2076c1a17b4bf8dad9ae 6 6 2013-03-07 10:47:29 2013-03-11 15:03:40
3213772 370912fdf79724f65f3fc8123c3dd6e818b3d3a4 5 5 2013-03-09 20:13:33 2013-03-10 12:43:39
3214773 af7cb57514e13fe79fd54fe263ca27324046d741 5 5 2013-03-09 20:03:57 2013-03-10 12:43:30
3215774 9a551c8fcaf7b4e97a050ba0d5327e1a5ecbfebc 5 5 2013-03-09 16:42:20 2013-03-10 12:43:22
3216775 f2eb4975d2b739da7e40bbfebcb2b5e9a6d35474 5 5 2013-03-09 14:27:14 2013-03-09 20:41:35
3217776 aba01e1901ee48a4090e3831ef305a58acf13418 5 5 2013-03-09 12:58:55 2013-03-09 20:41:15
3218777 3561093af8f1c54ee6dca119a18fd0e18e3b33e9 5 5 2013-03-09 12:21:15 2013-03-09 13:26:23
3219778 b1733c943fe54770a4ff680028965ed31577412b 6 6 2013-03-05 15:59:05 2013-03-05 19:29:23
3220779 27c7314bc93c4ab2dd5f4346c61d1576a7135d1b 5 5 2013-03-04 21:02:28 2013-03-04 21:32:12
3221780 054dc2fcf0fe1bf06c3971742ca2bea25eb962bd 5 5 2013-03-04 20:56:57 2013-03-04 21:32:12
3222781 a7be9d68aa7267c119f2b5eb38d689cd26d3518c 5 5 2013-03-04 20:41:04 2013-03-04 21:32:12
3223782 c5d5c4073ed135ad041cd29cc6c75795a0140cd4 5 5 2013-03-04 20:02:41 2013-03-04 21:32:12
3224783 23c2f5544f6730f5a9268af6353fbfc68f68a137 8 6 2013-02-16 19:57:37 2013-03-01 12:37:45
3225784 13d3dbbb07d494fc13c9200f11f9f3800d93644b 5 5 2013-02-28 21:44:23 2013-03-01 10:14:51
3226785 7453e7923077db22615d6d0a4095799b7d2e7f2e 5 5 2013-02-27 21:44:21 2013-02-27 21:54:17
3227786 6a3b88adeb5a513c5bc123e50820affb72189a22 5 5 2013-02-26 21:44:19 2013-02-27 21:27:35
3228787 af2eb625caaef6b1a1555c22221dcf8409d3274f 6 6 2013-01-28 11:34:53 2013-02-25 14:45:19
3229788 5185b1f0068e5dd987dc3d36edd15ece4b5f5e01 5 5 2013-02-18 16:17:41 2013-02-18 19:17:12
3230789 06f2fd6f77544608cef0d4af1bbf2b18926b1336 8 8 2013-02-02 17:51:53 2013-02-13 19:35:37
3231790 4eaa04747609e8ed64925347bb0993f1548c270a 8 8 2013-01-12 19:46:45 2013-01-30 11:18:23
3232791 11d11785855d26039bdcfbd34f84b9ccc6cd0e6b 8 8 2013-01-12 19:32:58 2013-01-30 11:18:22
3233792 379538edcad6c7da1da0bdbaf27cde64a4a676f8 6 6 2012-12-05 17:25:14 2013-01-08 11:41:01
3234793 4ccd7bc8bcc60e4b8b0b8b7391c3cc01f8eaddcf 5 5 2012-12-19 08:37:29 2012-12-19 08:38:14
3235794 20e8368c868e8c84f36c3f44a3acb5574a9a28b9 11 5 2012-12-18 14:24:02 2012-12-19 08:38:14
3236795 3b6624af4754f344f766836ba86c2d63c0527a4e 21 21 2012-12-19 08:28:40 2012-12-19 08:28:40
3237796 a1ceebfbd556140a8971ab1a0ceeb932aa1e1725 5 5 2012-12-10 18:49:21 2012-12-11 08:36:27
3238797 8faae259130974e1aec2ea91197191cdbd6ba39d 8 8 2012-11-26 20:20:32 2012-11-26 20:20:32
3239798 79f0a3fe81885619ef12d9f79706e02fe2b8e7e8 5 5 2012-12-10 18:53:15 2012-12-11 08:35:36
3240799 7c12a6990a0cd0258694b983ef3da0d68e03af05 6 6 2012-11-26 11:15:39 2012-11-26 11:48:13
3241800 10f937ab152f85ee2ca7593e89f304c6b9762a01 5 5 2012-12-10 18:43:33 2012-12-11 08:35:18
3242801 a2530c7414d8cd345c93bd2c0a2922996719911e 6 6 2012-11-23 15:19:32 2012-11-26 11:48:13
3243802 0064fd5536c74eb6ca8907b12ab7b0c8dba3e8d7 5 5 2012-12-09 21:09:33 2012-12-10 08:34:48
3244803 83758a8baee39cdc4ee066a4327cf35c7de4169a 6 6 2012-11-26 11:46:15 2012-11-26 11:46:15
3245804 168769803521a4591c344891823aaab7de0bf3a7 6 6 2012-12-04 11:53:52 2012-12-04 12:20:33
3246805 fe9dc1d1d8588863941a196cc8acf957314f5771 6 6 2012-11-19 13:50:49 2012-11-26 11:44:20
3247806 3c5d1e9d87a76d1b814a8438e9218877102b511f 6 6 2012-11-28 16:04:54 2012-12-03 15:51:03
3248807 a3c4c2928f3e61b899eeadbd73b9a934ffbb0925 6 6 2012-11-18 19:30:41 2012-11-26 11:43:17
3249808 3623e1beffb52a8b6b68f1ad5eaa98d1ccee7558 6 6 2012-11-28 15:42:15 2012-12-03 15:51:03
3250809 da484526b35edaa80b35c3abcf61e09562707a42 6 6 2012-11-18 19:19:33 2012-11-26 11:43:17
3251810 761f52e1a9cf497b087a2883669181b5d84d5b17 6 6 2012-11-28 15:34:15 2012-12-03 15:51:03
3252811 1d3ad378d8626ce10bf7ba3d19a92a4b62aac1c7 5 5 2012-11-24 19:36:21 2012-11-25 11:12:15
3253812 c06c9dc1aa9797ea5072f64fa187ded5b5dd21cc 6 6 2012-11-28 15:30:53 2012-12-03 15:51:03
3254813 731eaa07685b05a4b35f54c944946932de9e0177 5 5 2012-11-24 19:35:07 2012-11-25 11:12:09
3255814 ea7aadad4d33664ee9a7ba712f8a14bf5b05f049 6 6 2012-11-28 15:29:40 2012-12-03 15:51:03
3256815 63f4d4aed89f550cdc1d406111fe407368e8d12e 5 5 2012-11-24 19:34:18 2012-11-25 11:12:02
3257816 c87580862a342d80a17b18fdca5a11a9fecc568b 6 6 2012-11-28 14:42:27 2012-12-03 15:51:03
3258817 6956b1039a06d3399f2bf46f69c8f48d08fa20fd 5 5 2012-11-24 13:16:24 2012-11-25 11:11:50
3259818 1dd1be50d01818e08994553c5becabab43292bd7 6 6 2012-11-28 14:33:15 2012-12-03 15:51:03
3260819 4f935e7f9c83b54b10555049a7fda769a80ab68e 5 5 2012-11-24 11:06:41 2012-11-25 11:11:31
3261820 aa544c7706071c84a36af905dda4cbe5cf9a442e 6 6 2012-11-28 14:26:32 2012-12-03 15:51:03
3262821 006e4e8d73803855e7041c9a7b2f0c2916b7da93 5 5 2012-11-24 10:46:15 2012-11-25 11:11:25
3263822 7d41e53bb8f97437bf961ceed02dfc9a38c9b9c5 6 6 2012-11-28 14:23:07 2012-12-03 15:51:03
3264823 10d1f6e09119af6a0b030b0580f0d3899eec6015 6 6 2012-11-17 12:33:22 2012-11-18 19:07:50
3265824 a8a1f14fab6bb1acae0330fa05f13d0cac0c4df1 6 6 2012-11-28 14:21:05 2012-12-03 15:51:03
3266825 9224aa25445e0e7a57561f650d1069b27c9949ca 6 6 2012-11-16 21:06:19 2012-11-18 19:05:53
3267826 b478efc1ffa41732bcefbb190807c6095863c9cd 6 6 2012-11-28 14:06:30 2012-12-03 15:51:03
3268827 ed2dc63288ab89252c7eb169885d045fc34a92a4 6 6 2012-11-16 16:35:32 2012-11-18 19:05:53
3269828 1e29aca6c4d991a1b01510338e8e6eba8869e760 6 6 2012-11-28 14:03:09 2012-12-03 15:51:03
3270829 d9ae2b9de863500ef4911c9e9cc0ba5170728698 6 6 2012-11-16 11:10:20 2012-11-18 19:01:04
3271830 4b912fa1c62c415f62e2733c09831457c081c3c3 6 6 2012-11-28 12:32:53 2012-12-03 15:47:31
3272831 8914ab733d813e7fcb27476d0b96aab91f387e22 6 6 2012-11-12 11:49:56 2012-11-18 19:01:04
3273832 799eb185a62edc208fd554b1ffbf667e36cabc90 5 5 2012-11-03 13:03:26 2012-12-02 21:13:33
3274833 0a3e03eead774e551bdd13e7415b1aae387c8e32 6 6 2012-11-18 17:03:12 2012-11-18 18:58:34
3275834 c38aadec4ead6adf8c8bb5d5a3bd015fc5363ba9 5 5 2012-11-29 20:57:08 2012-11-29 21:51:16
3276835 fb3d86a66415aa215e57c062d0bbb9954296720e 6 6 2012-11-18 09:22:11 2012-11-18 09:22:11
3277836 baabacea49a0e10e39c53d79e5d3808c76bc65ef 5 5 2012-11-27 20:19:51 2012-11-29 21:51:16
3278837 60a98add24ead19b8b058799b4feb5ea7f398622 6 6 2012-11-18 09:20:09 2012-11-18 09:20:09
3279838 e4271d799d78c02d3cc21d2aab010c6e730acfbd 5 5 2012-11-27 21:13:46 2012-11-29 21:51:16
3280839 c1d084afae528a92e0cc4776170578acbe5a9df2 6 6 2012-11-16 20:55:14 2012-11-16 20:58:16
3281840 de6eb5cec0fe57a10c472037f33d5fa52b141033 5 5 2012-11-27 20:59:20 2012-11-29 21:51:16
3282841 a6fb70c06107233c592503b9eb437995837b9f3f 22 6 2012-11-12 23:09:35 2012-11-16 20:45:19
3283842 16ad006fc730deb15a7cae8ffc891f2b78a2be6c 5 5 2012-11-27 20:26:59 2012-11-29 21:51:16
3284843 4117e5c939ccc4efe7976b3570485600179f6ad4 6 6 2012-11-08 20:14:40 2012-11-16 16:30:06
3285844 0dae70537be5dd51bb9e413428ea9f5a8d868bc0 5 5 2012-11-27 20:17:00 2012-11-29 21:51:16
3286845 cd7894f8e4d639c40a46e5b2fb366dcc6ea9f07b 6 6 2012-11-16 10:58:34 2012-11-16 10:58:45
3287846 8ebec44af03197c9679f08afc2b19606c839db99 21 21 2012-11-28 20:41:48 2012-11-28 20:41:48
3288847 483ecf53bf634da8722a8033bb862d4a29284654 6 6 2012-11-12 11:53:56 2012-11-15 10:52:29
3289848 ad0b56b395ba51e0795a7b9c64d24a76ef05c701 21 21 2012-11-28 20:41:37 2012-11-28 20:41:37
3290849 675b907f084e8eaec6526fc82510c312f43829ca 8 8 2012-11-28 19:04:34 2012-11-28 19:08:09
3291850 2197fec7e2e2a30dc249d48608c9fe93c0ccf63e 6 6 2012-11-12 11:40:19 2012-11-15 10:44:25
3292851 6beba0e0baa64396996f8b11c0f62bfca033ed67 8 8 2012-11-28 18:54:05 2012-11-28 19:02:37
3293852 0df60af17707e503eb07296a46b80e6e684d939a 5 5 2012-11-13 20:34:51 2012-11-15 06:46:57
3294853 bc7728ea713a5ee027ebe42f64298bc6faed411b 5 5 2012-11-12 07:45:17 2012-11-12 07:45:17
3295854 d7c8554c2e1476df3009d716d948e8490ffa5088 5 5 2012-11-11 20:59:16 2012-11-12 07:44:52
3296855 11699898f5d66b0ec0b816eee847f057556ef94c 6 6 2012-11-11 21:37:45 2012-11-11 21:37:45
3297856 53c9f4860f613494a433942c3bd0a36f62f6e614 6 6 2012-11-08 20:17:39 2012-11-11 21:33:28
3298857 64976e26d778908832f8cf7a0d4ad548bb8cf1fc 21 21 2012-11-11 21:06:39 2012-11-11 21:06:39
3299858 ba975cdf2383c4a409184c0b679a766a9bb384c8 5 5 2012-11-11 19:42:17 2012-11-11 19:55:50
3300859 f24a4d767a6625872417c3a3ccd80955ede8ed64 6 6 2012-11-08 16:39:47 2012-11-11 20:58:03
3301860 a796dd932533f1a91e50f29f2c2b79e11ec78162 21 21 2012-11-11 09:34:33 2012-11-11 09:34:33
3302861 0e31865fbfab40c42fe280dedc8e04fab54cb651 6 6 2012-11-10 20:54:25 2012-11-11 20:58:03
3303862 d6b8152a1e7623254e182fc5bf1d95bee17cad9c 21 21 2012-11-10 21:27:56 2012-11-10 21:27:56
3304863 fc8921d102f50afd182aea3b1744806c5a610b61 5 5 2012-11-11 09:29:45 2012-11-11 09:29:45
3305864 cd368263500da9e52d19bd1d9943a37b9ca43be2 6 6 2012-11-10 20:44:13 2012-11-11 20:58:03
3306865 adcaf81749b65f62afd1c643ec0623d39823cb4b 5 5 2012-11-06 21:02:17 2012-11-06 21:04:04
3307866 5f0389f4940035fa73f19772f4c5b83936d2ea38 6 6 2012-11-10 15:36:34 2012-11-10 15:36:34
3308867 41942764bb217535887f77fc6ce23eca8d88d829 6 6 2012-11-06 15:14:51 2012-11-06 15:15:05
3309868 a661cdfed9752f3a7a54a31081b6c48f70149c95 6 6 2012-11-08 14:13:43 2012-11-08 14:14:40
3310869 90e4080addf00ac40ce956f65b2a80efee09e5bf 21 21 2012-11-06 13:12:55 2012-11-06 13:12:55
3311870 d5f2689ceae1f295fc77402b037e377288b8b409 6 6 2012-11-08 13:31:46 2012-11-08 13:32:35
3312871 3fbb64efee9eca1000b0801befc0c3fc23369edc 5 5 2012-11-06 08:20:31 2012-11-06 12:15:13
3313872 d3d4190fd9035216e1ab3522e651f04450f26b11 6 6 2012-11-06 08:14:49 2012-11-06 08:17:01
3314873 b80063146a45a1c007b321ee14715fc87692d0c0 6 6 2012-11-08 13:29:58 2012-11-08 13:32:35
3315874 1a5027651f4c34f1b2ab24a5535977c3edfd19b5 5 5 2012-11-06 07:54:19 2012-11-06 12:15:13
3316875 b28c27e0bfee3775d04fe03780142cd79907c807 21 21 2012-11-05 11:39:12 2012-11-05 11:39:12
3317876 4db50925d190f88696c3620f613d230e4892f5eb 6 6 2012-11-08 13:28:57 2012-11-08 13:32:35
3318877 f9d9c5c0434d8f54d11c1bf195f813d7a447fd52 5 5 2012-11-03 12:01:08 2012-11-03 12:27:48
3319878 0d8c2d2c45198775e0b57aa711cc0c45acee26f9 21 21 2012-11-02 11:49:54 2012-11-02 11:49:54
3320879 e58a0e5661c1baf21c175563aea768354d205162 6 6 2012-11-08 13:26:49 2012-11-08 13:32:35
3321880 4c2e0519850c05bceb86ee90b6b83464444e9e56 5 5 2012-11-01 21:22:37 2012-11-01 21:22:37
3322881 2c4ecaa5d0e07ea2d6a10b8f97df2db21a476f63 6 6 2012-11-01 19:28:43 2012-11-01 19:28:43
3323882 7f85f00601a80cba473a44c395dd495e997e137c 6 6 2012-11-08 13:25:36 2012-11-08 13:32:35
3324883 6c63e18b88feb5733ebf590dfb9778941da2d72d 5 5 2012-11-01 21:18:57 2012-11-01 21:18:57
3325884 e1579dc47d08157db67a73a07c36b7dccd4904b6 6 6 2012-11-01 11:30:45 2012-11-01 11:30:45
3326885 f0836a5d4fb68e79cb3548159dcd58a4c5c4ade0 6 6 2012-11-08 13:24:19 2012-11-08 13:32:35
3327886 4490446b5c4eb1dc693b61918bf00a0dfb9e6da3 5 5 2012-11-01 21:15:01 2012-11-01 21:15:20
3328887 94f72eb428cd5c49c9f0356c7561563a40f16f43 21 21 2012-10-31 21:13:00 2012-10-31 21:13:00
3329888 927faf713794c0b3973d0ce2caeddf42dbfb219a 6 6 2012-11-08 13:23:48 2012-11-08 13:32:35
3330889 355c1cc97d26f6f8cb5a30fd5d803872a5ab5744 5 5 2012-11-01 21:13:55 2012-11-01 21:13:55
3331890 067acb0b9389f91fdaa309c015f6198f27a46e01 5 5 2012-10-31 20:20:13 2012-10-31 20:20:13
3332891 783f9c1aa1d9b1e49b31de56e6156ce2a0783492 21 21 2012-10-31 21:12:25 2012-10-31 21:12:25
3333892 0c53efe19ef897e52dd55243da39115a5b653f47 6 6 2012-11-08 13:22:32 2012-11-08 13:32:35
3334893 77e00201d4cfa6e03b51b913b9c386d34bdbc969 5 5 2012-11-01 21:12:22 2012-11-01 21:12:43
3335894 a3e1e08be1e0e0881a33560bdbfd914a71a56b88 6 6 2012-10-31 16:38:36 2012-10-31 16:38:36
3336895 f6d866b8800cdeb29fe4917ed5cd49f50dbc9cbb 5 5 2012-10-31 21:05:07 2012-10-31 21:05:07
3337896 ea2d09337331aae2d244d8f80c129cb86005f87d 6 6 2012-11-07 21:31:30 2012-11-08 13:19:01
3338897 310759e8d4aa295553f484e3ada3c29f933bca9e 5 5 2012-11-01 21:08:53 2012-11-01 21:08:53
3339898 0af93ef9e0192ede13ab21ee406c339b138ad5d2 6 6 2012-10-31 16:37:59 2012-10-31 16:37:59
3340899 d3469ee24653575bb21eb122cd00a5024becb8aa 5 5 2012-10-31 20:54:30 2012-10-31 20:54:30
3341900 5af7c95bdeded8c3ff86588aa523ab906e86619c 21 21 2012-11-07 21:10:57 2012-11-07 21:10:57
3342901 de6cb7516413b269868ec8655ab7935003c07c39 5 5 2012-11-01 21:05:39 2012-11-01 21:06:25
3343902 928e78952f7ba86bde06be41e9c9af87987f4bfe 6 6 2012-10-31 16:36:43 2012-10-31 16:36:43
3344903 4cbe2767afeeaaeb2bf286033783890d7d742b59 5 5 2012-10-31 20:53:33 2012-10-31 20:53:33
3345904 2a947c8ad5cc91b4cf69f8a6fd9ec3b308b92247 5 5 2012-11-06 19:17:50 2012-11-06 19:17:50
3346905 bd20fd62329015b73aee98b31f766fce01521e29 21 21 2012-11-07 21:10:19 2012-11-07 21:10:19
3347906 9c2f66a82c0fe8ab7442347b8dfdc41345c48e74 5 5 2012-11-01 20:55:30 2012-11-01 20:55:30
3348907 30c4f10154f1e787e96d217f7a24aafc9afd2b8e 6 6 2012-10-31 11:41:48 2012-10-31 11:42:52
3349908 7c54841adf68b8be1ac8817d483461e0e0d464bb 5 5 2012-10-31 20:37:32 2012-10-31 20:37:32
3350909 ab5159ff3ab014b368fa28e3e7a2494d2dc7764c 5 5 2012-11-07 20:26:38 2012-11-07 20:29:31
3351910 95cef255873a48ecebf4138574199c8939750a0d 6 6 2012-11-07 10:37:18 2012-11-07 10:37:18
3352911 bb56312c243aa922b0c742c2a85c2d672245db22 5 5 2012-11-01 20:45:47 2012-11-01 20:46:38
3353912 68eb489112e0ee74bd39b220d3479ea90e95cd67 6 6 2012-10-31 11:37:53 2012-10-31 11:42:52
3354913 ff07b466713d8b4d0d19f78f343fea85d0428f0d 5 5 2012-10-31 20:33:03 2012-10-31 20:35:45
3355914 cb944a52a60e072ccd14c26f530a99bf8ccad482 6 6 2012-11-07 09:20:57 2012-11-07 09:20:57
3356915 0f202dcc600ba3b9b6f54f5851231629c7d2841c 6 6 2012-10-31 11:35:31 2012-10-31 11:42:52
3357916 e4f7ec927c3503ea002fc6e0b00e9223b519606c 6 6 2012-10-31 11:33:22 2012-10-31 11:42:52
3358917 ee5c62dd0b534591c940f830da40bc050bdd95d6 21 21 2012-10-30 15:42:24 2012-10-30 15:42:24
3359918 984f12cd7ae4f25f546c8a7dde8d7e83bed3a21d 6 6 2012-10-30 14:09:33 2012-10-30 14:27:25
3360919 20334bce9b391043558337b5b1ece9d35abc851a 23 23 2012-10-30 15:24:11 2012-10-30 15:24:11
3361920 f8dc4dcbf88661b733b724e48a3fc25dc701538b 6 6 2012-10-30 11:44:32 2012-10-30 14:27:25
3362921 40f3baff7cc6da730df87bfc2f6a3909908234e4 6 6 2012-10-30 10:52:32 2012-10-30 14:27:25
3363922 f580dd74f1474b596ae78cfbcf27626b8f8ab63b 21 21 2012-10-30 14:13:19 2012-10-30 14:13:19
3364923 887a216a16abcaac2abf6585f0946b7501e98a01 5 5 2012-10-30 13:56:50 2012-10-30 14:04:25
3365924 5dd5c2d9a4ddb16b912d5e43aed4fcbd55c6ec33 21 21 2012-10-30 13:55:26 2012-10-30 13:55:26
3366925 69102e5e8731375523bdd101465a533720de24c1 6 6 2012-10-29 22:22:39 2012-10-29 22:22:39
3367926 bdc76e5ca09cbe9dbeb08921e7fc178be6193298 5 5 2012-10-30 13:13:41 2012-10-30 13:13:41
3368927 2a0f980689116c3252b380ded55bfda8f9d911db 6 6 2012-10-29 22:17:45 2012-10-29 22:17:45
3369928 e0c9307e53067d8be3f342c720192428a368c667 5 5 2012-10-29 20:20:39 2012-10-29 20:22:22
3370929 6504d278de424061539bd78286dc1f70dae7ef24 6 6 2012-10-29 17:03:54 2012-10-29 17:03:54
3371930 9a3f31db91588b010798e764e26bdda5be2ec9e3 5 5 2012-10-29 20:18:02 2012-10-29 20:22:09
3372931 451eef2fd485bd906801940c565ac01780ddf53a 6 6 2012-10-29 17:03:07 2012-10-29 17:03:07
3373932 4884ab86123f0eeb1dea9c20e3a0481d3fdf7cf8 5 5 2012-10-29 20:08:35 2012-10-29 20:14:23
3374933 089b0403cf897531adbdf6ed8a03f5bf9e49db04 24 24 2012-10-29 15:35:58 2012-10-29 15:35:58
3375934 f0a3141496d591505196022e60a3c3bcd3346c0f 5 5 2012-10-29 19:31:32 2012-10-29 19:36:22
3376935 ae547c0e3dffdc1fe80e172beea6e382a87cbefd 14 14 2012-10-29 12:05:44 2012-10-29 12:05:44
3377936 007b4b53a2a8e9561f5143eff27300ea693ca621 6 6 2012-10-29 09:51:21 2012-10-29 15:28:36
3378937 2f308ec7b9c2d85f6564a4c7504b93574485a063 14 14 2012-10-29 10:17:49 2012-10-29 10:17:49
3379938 016f2149c334ff7dabac98700e74a7e9500e702e 6 6 2012-10-29 12:17:23 2012-10-29 14:19:02
3380939 fc0eac5a4d06208d1e13cc90fc91df224475723a 14 14 2012-10-29 09:46:55 2012-10-29 09:46:55
3381940 fa686f55782c5fc38d8727625060677f3eab89f2 6 6 2012-10-29 12:14:41 2012-10-29 14:18:50
3382941 f33662b6e0f08a0446a251d74f85913da8323708 14 14 2012-10-29 09:43:30 2012-10-29 09:43:30
3383942 a08fa6ef90778627504dad5e2ff0b935cff723ba 6 6 2012-10-29 12:13:11 2012-10-29 14:18:25
3384943 57a886e6352b229991c81e7ba43244ace7e02d76 24 24 2012-10-29 08:59:44 2012-10-29 08:59:44
3385944 3e9d8c845ea84ea6faa354a946fd4c7c42535930 24 24 2012-10-29 11:53:58 2012-10-29 11:53:58
3386945 2959a7ecf01462ec7e5a083b315c5d3741145ab1 5 5 2012-10-29 05:21:53 2012-10-29 05:44:54
3387946 3328eb2b9b709cc8c62ae04e3bd7d23bd8d14e35 24 24 2012-10-29 08:58:37 2012-10-29 08:58:37
3388947 1e4c71aeafb66abeda647c6503f37e70ff3ad86f 5 5 2012-10-29 11:45:27 2012-10-29 11:45:27
3389948 ee37c47f6f6a14afa6912c1cc58a9f49d2a29acd 6 6 2012-10-28 19:51:59 2012-10-28 20:00:38
3390949 aa15bc746d3340bda912a1cc4759b332b9adff55 6 6 2012-10-29 08:52:49 2012-10-29 08:52:49
3391950 3909431417c95773fb3a2ddd83cef63608d5043f 23 23 2012-10-29 00:12:36 2012-10-29 00:24:47
3392951 1fc3b208869e5ce79a84211ab9fa04aa95c5ee45 5 5 2012-10-29 10:42:14 2012-10-29 11:45:11
3393952 b2b78ca013b49c73231bee11674bcdb3edf6d3f2 5 5 2012-10-29 11:45:05 2012-10-29 11:45:05
3394953 4a35ba4f937bc02e8c8c4dc8628e85727753dff3 25 25 2014-05-10 04:18:46 2014-05-10 04:18:46
3395954 d33f21c4f8c8a6cb52e3c0f2bd9bcbafd0e38dad 25 25 2009-03-15 19:54:50 2009-03-15 19:54:50
3396955 95784753bd61158ac026775daf29e5e1a767b438 26 26 2014-05-09 20:22:44 2014-05-09 20:22:44
3397956 603ff2a412784272c5be8496b9bc60065105ce82 25 25 2009-03-15 19:54:25 2009-03-15 19:54:25
3398957 2d96e01d3b53a9d47dd913051b2eb1dc9afb6548 27 5 2013-06-14 12:19:31 2013-06-14 12:19:31
3399958 ff9d89694e308d0c406f6f1a690971a8ea92bf44 5 5 2013-06-13 22:17:30 2013-06-13 22:17:30
3400959 0af8d4c520da4174fed5584aa3f25bd1ccdd56be 5 5 2013-06-13 22:16:44 2013-06-13 22:16:44
3401960 030887f57ff75e9ac1aa2dc9b8328589cd6d882b 5 5 2013-06-13 22:15:41 2013-06-13 22:15:41
3402961 3fda92229bb72cbe48f10acf9e74f089aaa305ec 5 5 2013-06-13 22:13:44 2013-06-13 22:13:44
3403962 b127468796c8dcd4343b350f9bedf45f4da3d4c7 5 5 2013-06-13 22:12:45 2013-06-13 22:12:45
3404963 316682254c81d2ba467a3d7175f75ddd0fd6ad8a 5 5 2013-06-13 22:10:17 2013-06-13 22:10:17
3405964 87314bd8ad2065d4b1dd994411d0cc4670c85b5c 5 5 2013-06-13 22:09:06 2013-06-13 22:09:06
3406965 75140795f18592642582f0d38f249206b2990eab 5 5 2013-06-13 22:02:40 2013-06-13 22:07:48
3407966 15aa00fd0e06bb8c94704b03ecc0294237557cfa 5 5 2013-06-13 22:00:22 2013-06-13 22:07:43
3408967 9aa8c4b8bbd5d262a5b2034653662912d7a19975 5 5 2013-06-13 21:59:21 2013-06-13 22:07:38
3409968 b3beb031480c61055ebce7559ecc799594f7eaec 5 5 2013-06-13 21:57:57 2013-06-13 22:07:31
3410969 bc71dc71aa1b35e0ed6187a6c95b096d160f36a8 5 5 2013-06-13 21:56:54 2013-06-13 22:07:27
3411970 d0958fd198fa0ef61d68341c72d7e4b20c32a5c8 5 5 2013-06-13 21:55:51 2013-06-13 22:07:22
3412971 046d25fa872d8988147ed058df7ce70b05b5aee0 5 5 2013-06-13 21:54:20 2013-06-13 21:54:20
3413972 f38cf6e8f241dcaa0d3e22aff1250eb79df4614b 5 5 2013-06-13 21:52:21 2013-06-13 21:52:21
3414\.
3415
3416
3417--
3418-- Name: commits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
3419--
3420
3421SELECT pg_catalog.setval('commits_id_seq', 972, true);
3422
3423
3424--
3425-- Data for Name: customchangesets; Type: TABLE DATA; Schema: public; Owner: critic
3426--
3427
3428COPY customchangesets (changeset, "time") FROM stdin;
3429\.
3430
3431
3432--
3433-- Data for Name: edges; Type: TABLE DATA; Schema: public; Owner: critic
3434--
3435
3436COPY edges (parent, child) FROM stdin;
34372 1
34383 2
34394 3
34405 4
34416 5
34427 6
34438 7
34449 8
344510 9
344611 10
344712 11
344813 12
344914 13
345015 14
345116 15
345217 16
345318 17
345419 18
345520 19
345621 20
345722 21
345823 22
345924 23
346025 24
346126 25
346227 26
346328 27
346429 28
346530 29
346631 30
346732 31
346833 32
346934 33
347035 34
347136 35
347237 36
347338 37
347439 38
347540 39
347641 40
347742 41
347843 42
347944 43
348045 44
348146 45
348247 46
348348 47
348449 48
348550 49
348651 50
348752 51
348853 52
348954 53
349055 54
349156 55
349257 56
349358 57
349459 58
349560 59
349661 60
349762 61
349863 62
349964 63
350065 64
350166 65
350267 66
350368 67
350469 68
350570 69
350671 70
350772 71
350873 72
350974 73
351075 74
351176 75
351277 76
351378 77
351479 78
351580 79
351681 80
351782 81
351883 82
351984 83
352085 84
352186 85
352287 86
352388 87
352489 88
352590 89
352691 90
352792 91
352893 92
352994 93
353095 94
353196 95
353297 96
353398 97
353499 98
3535100 99
3536101 100
3537102 101
3538103 102
3539104 103
3540105 104
3541106 105
3542107 106
3543108 107
3544109 108
3545110 109
3546111 110
3547112 111
3548113 112
3549114 113
3550115 114
3551116 115
3552117 116
3553118 117
3554119 118
3555120 119
3556121 120
3557122 121
3558123 122
3559124 123
3560125 124
3561126 125
3562127 126
3563128 127
3564129 128
3565130 129
3566131 130
3567132 131
3568133 132
3569134 133
3570135 134
3571136 135
3572137 136
3573138 137
3574139 138
3575140 139
3576141 140
3577142 141
3578143 142
3579144 143
3580145 144
3581146 145
3582147 146
3583148 147
3584149 148
3585150 149
3586151 150
3587152 151
3588153 152
3589154 153
3590155 154
3591156 155
3592157 156
3593158 157
3594159 158
3595160 159
3596161 160
3597162 161
3598163 162
3599164 163
3600165 164
3601166 165
3602167 166
3603168 167
3604169 168
3605170 169
3606171 170
3607172 171
3608173 172
3609174 173
3610175 174
3611176 175
3612177 176
3613178 177
3614179 178
3615180 179
3616181 180
3617182 181
3618183 182
3619184 183
3620185 184
3621186 185
3622187 186
3623188 187
3624189 188
3625190 189
3626191 190
3627192 191
3628193 192
3629194 193
3630195 194
3631196 195
3632197 196
3633198 197
3634199 198
3635200 199
3636201 200
3637202 201
3638203 202
3639204 203
3640205 204
3641206 205
3642207 206
3643208 207
3644209 208
3645210 209
3646211 210
3647212 211
3648213 212
3649214 213
3650215 214
3651216 215
3652217 216
3653218 217
3654219 218
3655220 219
3656221 220
3657222 221
3658223 222
3659224 223
3660225 224
3661226 225
3662227 226
3663228 227
3664229 228
3665230 229
3666231 230
3667232 231
3668233 232
3669234 233
3670235 234
3671236 235
3672237 236
3673238 237
3674239 238
3675240 239
3676241 240
3677242 241
3678243 242
3679244 243
3680245 244
3681246 245
3682247 246
3683248 247
3684249 248
3685250 249
3686251 250
3687252 251
3688253 252
3689254 253
3690255 254
3691256 255
3692257 256
3693258 257
3694259 258
3695260 259
3696261 260
3697262 261
3698263 262
3699264 263
3700265 264
3701266 265
3702267 266
3703268 267
3704269 268
3705270 269
3706271 270
3707272 271
3708273 272
3709274 273
3710275 274
3711276 275
3712277 276
3713278 277
3714279 278
3715280 279
3716281 280
3717282 281
3718283 282
3719284 283
3720285 284
3721286 285
3722287 286
3723288 287
3724289 288
3725290 289
3726291 290
3727292 291
3728293 292
3729294 293
3730295 294
3731296 295
3732297 296
3733298 297
3734299 298
3735300 299
3736301 300
3737302 300
3738303 301
3739304 302
3740305 303
3741306 304
3742307 305
3743305 306
3744308 307
3745309 308
3746310 309
3747311 310
3748312 311
3749313 312
3750314 313
3751315 314
3752316 315
3753317 316
3754318 317
3755319 318
3756320 319
3757321 320
3758322 321
3759323 322
3760324 323
3761325 324
3762326 325
3763327 326
3764328 327
3765329 328
3766330 329
3767331 330
3768332 331
3769333 332
3770334 333
3771335 334
3772336 335
3773337 336
3774338 337
3775339 338
3776340 339
3777341 340
3778342 341
3779343 342
3780344 343
3781345 344
3782346 345
3783347 346
3784348 347
3785349 348
3786350 349
3787351 350
3788352 351
3789353 352
3790354 353
3791355 354
3792356 355
3793357 356
3794358 357
3795359 358
3796360 359
3797361 360
3798362 361
3799363 362
3800364 363
3801365 364
3802366 365
3803367 366
3804368 367
3805369 368
3806370 369
3807371 370
3808372 371
3809373 372
3810374 373
3811375 374
3812376 375
3813377 376
3814378 377
3815379 378
3816380 379
3817381 380
3818382 381
3819383 382
3820384 383
3821385 384
3822386 385
3823387 386
3824388 387
3825389 388
3826390 389
3827391 390
3828392 391
3829393 392
3830394 393
3831395 394
3832396 395
3833397 396
3834398 397
3835399 398
3836400 399
3837401 400
3838402 401
3839403 402
3840404 403
3841405 404
3842406 405
3843407 406
3844408 407
3845409 408
3846410 409
3847411 410
3848412 411
3849413 412
3850414 413
3851415 414
3852416 415
3853417 416
3854418 417
3855419 418
3856420 419
3857421 420
3858422 421
3859423 422
3860424 423
3861425 424
3862426 425
3863427 426
3864428 427
3865429 428
3866430 429
3867431 430
3868432 431
3869433 432
3870434 433
3871435 434
3872436 435
3873437 436
3874438 437
3875439 438
3876440 439
3877441 440
3878442 441
3879443 442
3880444 443
3881445 444
3882446 445
3883447 446
3884448 447
3885449 448
3886450 449
3887451 450
3888452 451
3889453 452
3890454 453
3891455 454
3892456 455
3893457 456
3894458 457
3895459 458
3896460 459
3897461 460
3898462 461
3899463 462
3900464 463
3901465 464
3902466 465
3903467 466
3904468 467
3905469 468
3906470 469
3907471 470
3908472 471
3909473 472
3910474 473
3911475 474
3912476 475
3913477 476
3914478 477
3915479 478
3916480 479
3917481 480
3918482 481
3919483 482
3920484 483
3921485 484
3922486 485
3923487 486
3924488 487
3925489 488
3926490 489
3927491 490
3928492 491
3929493 492
3930494 493
3931495 494
3932496 495
3933497 496
3934498 497
3935499 498
3936500 499
3937501 500
3938502 501
3939503 502
3940504 503
3941505 504
3942506 505
3943507 506
3944508 507
3945509 508
3946510 509
3947511 510
3948512 511
3949513 512
3950514 513
3951515 514
3952516 515
3953517 516
3954518 517
3955519 518
3956520 519
3957521 520
3958522 521
3959523 522
3960524 523
3961525 524
3962526 525
3963527 526
3964528 527
3965529 528
3966530 529
3967531 530
3968532 531
3969533 532
3970534 533
3971535 534
3972536 535
3973537 536
3974538 537
3975539 538
3976540 539
3977541 540
3978542 541
3979543 542
3980544 543
3981545 544
3982546 545
3983547 546
3984548 547
3985549 548
3986550 549
3987551 550
3988552 551
3989553 552
3990554 553
3991555 554
3992556 555
3993557 556
3994558 557
3995559 558
3996560 559
3997561 560
3998562 561
3999563 562
4000564 563
4001565 564
4002566 565
4003567 566
4004568 567
4005569 568
4006570 569
4007571 570
4008572 571
4009573 572
4010574 573
4011575 574
4012576 575
4013577 576
4014578 577
4015579 578
4016580 579
4017581 580
4018582 581
4019583 582
4020584 583
4021585 584
4022586 585
4023587 586
4024588 587
4025589 588
4026590 589
4027591 590
4028592 591
4029593 592
4030594 593
4031595 594
4032596 595
4033597 596
4034598 597
4035599 598
4036600 599
4037601 600
4038602 601
4039603 602
4040604 603
4041605 604
4042606 605
4043607 606
4044608 607
4045609 608
4046610 609
4047611 610
4048612 611
4049613 612
4050614 613
4051615 614
4052616 615
4053617 616
4054618 617
4055619 618
4056620 619
4057621 620
4058622 621
4059623 622
4060624 623
4061625 624
4062626 625
4063627 626
4064628 627
4065629 628
4066630 629
4067631 630
4068632 631
4069633 632
4070634 633
4071635 634
4072636 635
4073637 636
4074638 637
4075639 638
4076640 639
4077641 640
4078642 641
4079643 642
4080644 643
4081645 644
4082646 645
4083647 646
4084648 647
4085649 648
4086650 649
4087651 650
4088652 651
4089653 652
4090654 653
4091655 654
4092656 655
4093657 656
4094658 657
4095659 658
4096660 659
4097661 660
4098662 661
4099663 662
4100664 663
4101665 664
4102666 665
4103667 666
4104668 667
4105669 668
4106670 669
4107671 670
4108672 671
4109673 672
4110674 673
4111675 674
4112676 675
4113677 676
4114678 677
4115679 678
4116680 679
4117681 680
4118682 681
4119683 682
4120684 683
4121685 684
4122686 685
4123687 686
4124688 687
4125689 688
4126690 689
4127691 690
4128692 691
4129693 692
4130694 693
4131695 694
4132696 695
4133697 696
4134698 697
4135699 698
4136700 699
4137701 700
4138702 701
4139703 702
4140704 703
4141705 704
4142706 705
4143707 706
4144708 707
4145709 708
4146710 709
4147711 710
4148712 711
4149713 712
4150714 713
4151715 714
4152716 715
4153717 716
4154718 717
4155719 718
4156720 719
4157721 720
4158722 721
4159723 722
4160724 723
4161725 724
4162726 725
4163727 726
4164728 727
4165729 728
4166730 729
4167731 730
4168732 731
4169733 732
4170734 733
4171735 734
4172736 735
4173737 736
4174738 737
4175739 738
4176740 739
4177741 740
4178742 741
4179743 742
4180744 743
4181745 744
4182746 745
4183747 746
4184748 747
4185749 748
4186750 749
4187751 750
4188752 751
4189753 752
4190754 753
4191755 754
4192756 755
4193757 756
4194758 757
4195759 758
4196760 759
4197761 760
4198762 761
4199763 762
4200764 763
4201765 764
4202766 765
4203767 766
4204768 767
4205769 768
4206770 769
4207771 770
4208772 771
4209773 772
4210774 773
4211775 774
4212776 775
4213777 776
4214778 777
4215779 778
4216780 779
4217781 780
4218782 781
4219783 782
4220784 783
4221785 784
4222786 785
4223787 786
4224788 787
4225789 788
4226790 789
4227791 790
4228792 791
4229793 792
4230794 793
4231795 794
4232796 795
4233797 795
4234798 796
4235799 797
4236800 798
4237801 799
4238802 800
4239803 801
4240804 802
4241805 803
4242806 804
4243807 805
4244808 806
4245809 807
4246810 808
4247811 809
4248812 810
4249813 811
4250814 812
4251815 813
4252816 814
4253817 815
4254818 816
4255819 817
4256820 818
4257821 819
4258822 820
4259823 821
4260824 822
4261825 823
4262826 824
4263827 825
4264828 826
4265829 827
4266830 828
4267831 829
4268832 830
4269833 831
4270834 832
4271835 833
4272836 834
4273837 835
4274838 836
4275839 837
4276840 838
4277841 839
4278842 840
4279843 841
4280844 842
4281845 843
4282846 844
4283847 845
4284848 846
4285849 846
4286850 847
4287851 848
4288799 848
4289799 849
4290852 850
4291799 851
4292853 852
4293854 853
4294855 854
4295856 855
4296857 856
4297858 857
4298859 857
4299860 858
4300861 859
4301862 860
4302863 860
4303864 861
4304865 862
4305866 862
4306862 863
4307860 864
4308867 865
4309868 866
4310869 867
4311870 868
4312871 869
4313872 869
4314873 870
4315874 871
4316875 872
4317876 873
4318872 874
4319877 875
4320878 875
4321879 876
4322878 877
4323880 878
4324881 878
4325882 879
4326883 880
4327884 881
4328885 882
4329886 883
4330887 884
4331888 885
4332889 886
4333890 887
4334891 887
4335892 888
4336893 889
4337894 890
4338895 891
4339894 891
4340896 892
4341897 893
4342898 894
4343899 895
4344900 896
4345901 897
4346902 898
4347903 899
4348904 900
4349905 900
4350906 901
4351907 902
4352908 903
4353867 904
4354909 905
4355910 905
4356911 906
4357912 907
4358913 908
4359867 909
4360914 910
4361881 911
4362915 912
4363894 913
4364867 914
4365916 915
4366917 916
4367918 917
4368919 917
4369920 918
4370918 919
4371921 920
4372922 921
4373923 922
4374924 922
4375924 923
4376925 924
4377926 924
4378927 925
4379928 926
4380929 927
4381930 928
4382931 929
4383932 930
4384933 931
4385934 932
4386935 933
4387936 933
4388929 934
4389937 935
4390938 936
4391939 937
4392940 938
4393941 939
4394942 940
4395943 941
4396944 942
4397945 943
4398946 943
4399943 944
4400947 944
4401948 945
4402949 946
4403950 946
4404951 947
4405948 949
4406948 950
4407952 951
4408943 952
4409954 953
4410955 953
4411956 954
4412954 955
4413958 957
4414959 958
4415960 959
4416961 960
4417962 961
4418963 962
4419964 963
4420965 964
4421966 965
4422967 966
4423968 967
4424969 968
4425970 969
4426971 970
4427972 971
4428\.
4429
4430
4431--
4432-- Data for Name: extensionfilterhookcommits; Type: TABLE DATA; Schema: public; Owner: critic
4433--
4434
4435COPY extensionfilterhookcommits (event, commit) FROM stdin;
4436\.
4437
4438
4439--
4440-- Data for Name: extensionfilterhookevents; Type: TABLE DATA; Schema: public; Owner: critic
4441--
4442
4443COPY extensionfilterhookevents (id, filter, review, uid, data) FROM stdin;
4444\.
4445
4446
4447--
4448-- Name: extensionfilterhookevents_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4449--
4450
4451SELECT pg_catalog.setval('extensionfilterhookevents_id_seq', 1, false);
4452
4453
4454--
4455-- Data for Name: extensionfilterhookfiles; Type: TABLE DATA; Schema: public; Owner: critic
4456--
4457
4458COPY extensionfilterhookfiles (event, file) FROM stdin;
4459\.
4460
4461
4462--
4463-- Data for Name: extensionfilterhookroles; Type: TABLE DATA; Schema: public; Owner: critic
4464--
4465
4466COPY extensionfilterhookroles (role, name, title, role_description, data_description) FROM stdin;
4467\.
4468
4469
4470--
4471-- Data for Name: extensionhookfilters; Type: TABLE DATA; Schema: public; Owner: critic
4472--
4473
4474COPY extensionhookfilters (id, uid, extension, repository, name, path, data) FROM stdin;
4475\.
4476
4477
4478--
4479-- Name: extensionhookfilters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4480--
4481
4482SELECT pg_catalog.setval('extensionhookfilters_id_seq', 1, false);
4483
4484
4485--
4486-- Data for Name: extensioninjectroles; Type: TABLE DATA; Schema: public; Owner: critic
4487--
4488
4489COPY extensioninjectroles (role, path) FROM stdin;
4490\.
4491
4492
4493--
4494-- Data for Name: extensioninstalls; Type: TABLE DATA; Schema: public; Owner: critic
4495--
4496
4497COPY extensioninstalls (id, uid, extension, version) FROM stdin;
4498\.
4499
4500
4501--
4502-- Name: extensioninstalls_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4503--
4504
4505SELECT pg_catalog.setval('extensioninstalls_id_seq', 1, false);
4506
4507
4508--
4509-- Data for Name: extensionlog; Type: TABLE DATA; Schema: public; Owner: critic
4510--
4511
4512COPY extensionlog (extension, uid, category, "time", text) FROM stdin;
4513\.
4514
4515
4516--
4517-- Data for Name: extensionpageroles; Type: TABLE DATA; Schema: public; Owner: critic
4518--
4519
4520COPY extensionpageroles (role, path) FROM stdin;
4521\.
4522
4523
4524--
4525-- Data for Name: extensionprocesscommitsroles; Type: TABLE DATA; Schema: public; Owner: critic
4526--
4527
4528COPY extensionprocesscommitsroles (role) FROM stdin;
4529\.
4530
4531
4532--
4533-- Data for Name: extensionroles; Type: TABLE DATA; Schema: public; Owner: critic
4534--
4535
4536COPY extensionroles (id, version, script, function) FROM stdin;
4537\.
4538
4539
4540--
4541-- Name: extensionroles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4542--
4543
4544SELECT pg_catalog.setval('extensionroles_id_seq', 1, false);
4545
4546
4547--
4548-- Data for Name: extensions; Type: TABLE DATA; Schema: public; Owner: critic
4549--
4550
4551COPY extensions (id, author, name) FROM stdin;
4552\.
4553
4554
4555--
4556-- Name: extensions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4557--
4558
4559SELECT pg_catalog.setval('extensions_id_seq', 1, false);
4560
4561
4562--
4563-- Data for Name: extensionstorage; Type: TABLE DATA; Schema: public; Owner: critic
4564--
4565
4566COPY extensionstorage (extension, uid, key, text) FROM stdin;
4567\.
4568
4569
4570--
4571-- Data for Name: extensionversions; Type: TABLE DATA; Schema: public; Owner: critic
4572--
4573
4574COPY extensionversions (id, extension, name, sha1) FROM stdin;
4575\.
4576
4577
4578--
4579-- Name: extensionversions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4580--
4581
4582SELECT pg_catalog.setval('extensionversions_id_seq', 1, false);
4583
4584
4585--
4586-- Data for Name: externalusers; Type: TABLE DATA; Schema: public; Owner: critic
4587--
4588
4589COPY externalusers (id, uid, provider, account, email, token) FROM stdin;
4590\.
4591
4592
4593--
4594-- Name: externalusers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4595--
4596
4597SELECT pg_catalog.setval('externalusers_id_seq', 1, false);
4598
4599
4600--
4601-- Data for Name: files; Type: TABLE DATA; Schema: public; Owner: critic
4602--
4603
4604COPY files (id, path) FROM stdin;
4605\.
4606
4607
4608--
4609-- Name: files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4610--
4611
4612SELECT pg_catalog.setval('files_id_seq', 1, false);
4613
4614
4615--
4616-- Data for Name: fileversions; Type: TABLE DATA; Schema: public; Owner: critic
4617--
4618
4619COPY fileversions (changeset, file, old_sha1, new_sha1, old_mode, new_mode) FROM stdin;
4620\.
4621
4622
4623--
4624-- Data for Name: filters; Type: TABLE DATA; Schema: public; Owner: critic
4625--
4626
4627COPY filters (id, uid, repository, path, type, delegate) FROM stdin;
4628\.
4629
4630
4631--
4632-- Name: filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4633--
4634
4635SELECT pg_catalog.setval('filters_id_seq', 1, false);
4636
4637
4638--
4639-- Data for Name: gitusers; Type: TABLE DATA; Schema: public; Owner: critic
4640--
4641
4642COPY gitusers (id, email, fullname) FROM stdin;
46431 jl@opera.com Jens Widell
46442 jl@critic-review.org Jens Widell
46453 grubbyfans@gmail.com HUANG Wei
46464 pni@thule.no Petter Nilsen
46475 martin@minimum.se Martin Olsson
46486 jl@opera.com Jens Lindstrom
46497 manishsmail@gmail.com Manish Goregaokar
46508 rchlodnicki@opera.com Rafal Chlodnicki
46519 rchl2k@gmail.com Rafał Chłodnicki
465210 jl@critic-review.org Jens Lindstrom
465311 ohrn@opera.com Fredrik Öhrn
465412 ato@mozilla.com Andreas Tolfsen
465513 felix.ekblom@gmail.com Felix Ekblom
465614 bratell@lysator.liu.se Daniel Bratell
465715 jl@critic-review.org Jens Lindström
465816 jacob@jacobrask.net Jacob Rask
465917 ryan.fowler@singlewire.com Ryan Fowler
466018 pengphy@gmail.com Pengfei Xue
466119 jherland@cisco.com Johan Herland
466220 peter@softwolves.pp.se Peter Krefting
466321 jl@opera.com Jens Lindström
466422 jl@sloth.whyi.org Jens Lindstrom
466523 odin.omdal@gmail.com Odin Hørthe Omdal
466624 jl@sloth.whyi.org Jens Lindström
466725 johnw@newartisans.com John Wiegley
466826 david.hofer@gmail.com David Hofer
466927 ประเทศจีน@a.com ประเทศจีน
4670\.
4671
4672
4673--
4674-- Name: gitusers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4675--
4676
4677SELECT pg_catalog.setval('gitusers_id_seq', 27, true);
4678
4679
4680--
4681-- Data for Name: knownremotes; Type: TABLE DATA; Schema: public; Owner: critic
4682--
4683
4684COPY knownremotes (url, pushing) FROM stdin;
4685\.
4686
4687
4688--
4689-- Data for Name: lockedreviews; Type: TABLE DATA; Schema: public; Owner: critic
4690--
4691
4692COPY lockedreviews (review) FROM stdin;
4693\.
4694
4695
4696--
4697-- Data for Name: mergebases; Type: TABLE DATA; Schema: public; Owner: critic
4698--
4699
4700COPY mergebases (commit, mergebase) FROM stdin;
4701\.
4702
4703
4704--
4705-- Data for Name: mergereplays; Type: TABLE DATA; Schema: public; Owner: critic
4706--
4707
4708COPY mergereplays (original, replay) FROM stdin;
4709\.
4710
4711
4712--
4713-- Data for Name: newsitems; Type: TABLE DATA; Schema: public; Owner: critic
4714--
4715
4716COPY newsitems (id, date, text) FROM stdin;
4717\.
4718
4719
4720--
4721-- Name: newsitems_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
4722--
4723
4724SELECT pg_catalog.setval('newsitems_id_seq', 1, false);
4725
4726
4727--
4728-- Data for Name: newsread; Type: TABLE DATA; Schema: public; Owner: critic
4729--
4730
4731COPY newsread (item, uid) FROM stdin;
4732\.
4733
4734
4735--
4736-- Data for Name: oauthstates; Type: TABLE DATA; Schema: public; Owner: critic
4737--
4738
4739COPY oauthstates (state, url, "time") FROM stdin;
4740\.
4741
4742
4743--
4744-- Data for Name: preferences; Type: TABLE DATA; Schema: public; Owner: critic
4745--
4746
4747COPY preferences (item, type, description, per_system, per_user, per_repository, per_filter) FROM stdin;
4748comment.diff.contextLines integer Default number of context lines added to diffs when displaying comment chains. Can be overridden by 'context' URI parameter. t t f f
4749commit.diff.collapseSimpleHunks boolean When a hunk in a diff contains only deleted or only inserted lines, collapse the "other" side, so that the hunk is displayed as a single wide column. NOT FULLY FUNCTIONAL! t t f f
4750commit.diff.compactMode boolean Generate more compact HTML for diffs, and generate some HTML on-demand client-side. Faster download and initial rendering, and slower interaction. t t f f
4751commit.diff.contextLines integer Default number of context lines added to diffs when displaying commits. Can be overridden by 'context' URI parameter. t t f f
4752commit.diff.highlightIllegalWhitespace boolean Use an angry red color scheme for illegal whitespace (trailing whitespace or tabs in files with "intent-tabs-mode: nil".) t t f f
4753commit.diff.rulerColumn integer The column at which a ruler is shown. Can be set to 0 to disable the ruler. t t t f
4754commit.diff.visualTabs boolean Replace tab characters with U+2192 (RIGHTWARDS ARROW) styled to the correct width (taking the file's Emacs mode-line into account.) t t f f
4755commit.expandAllFiles boolean On the 'showcommit' page, expand the diffs in all files on page load. t t f f
4756commit.expandFilesLimit integer If 'commit.expandAllFiles' is enabled, and this limit is non-zero, all files are initially collapsed if the diff contains changes in more files than this limit. t t f f
4757dashboard.defaultGroups string Review groups to show on the dashboard by default. Available groups are owned, draft, active, watched, open and closed. t t f f
4758debug.enabled boolean Enable debugging preferences. t t f f
4759debug.extensions.customProcessCommits boolean Enable button for performing installed ProcessCommits hooks on arbitrary sets of commits for testing. t t f f
4760debug.profiling.abortChanges boolean Enable profiling of /abortchanges. t t f f
4761debug.profiling.databaseQueries boolean Enable profiling of database queries. t t f f
4762debug.profiling.pageGeneration boolean Enable profiling of generation of various pages. Results are emitted as a comment at the end of the HTML. t t f f
4763debug.profiling.submitChanges boolean Enable profiling of /submitchanges. t t f f
4764defaultPage string The default page displayed when accessing the system. t t f f
4765defaultRepository string Name of default repository. In situations where the repository is not implied, this is the one that is used, or preferred. t t f f
4766email.activated boolean Must be enabled before the system sends any emails to the user. t t f f
4767email.comment.contextLines integer Default number of context lines added to code excerpts when displaying comment threads in emails. t t f f
4768email.enableAssociationRecipients boolean Add phony recipients to review emails representing your associations with the review. t t t f
4769email.ignoreOwnChanges boolean Don't send emails about own changes (reviewing, commits added to reviews and rebased reviews.) t t f f
4770email.lineLength integer Maximum line length in emails sent. Plain text will be reflowed to adhere to this. Diffs and other non-prose items are never reflowed. t t f f
4771email.listId string Identifier used to construct a List-Id header for review emails. Used for the $id in "<$id.$hostname>" in the header value. t t t f
4772email.newReview.diff.contextLines integer Number of context lines added to diffs in the email sent when a new review is submitted. t t f f
4773email.newReview.diff.maxLines integer Maximum number of lines of diffs to include in the email sent when a new review is submitted. If exceeded, no diffs are included at all. t t f f
4774email.newReview.displayCommits boolean Include a list of all commits to be reviewed in the email sent when a new review is submitted. t t f f
4775email.newReview.displayDiffs boolean Include diffs of each commit to be reviewed in the email sent when a new review is submitted. t t f f
4776email.newReview.displayReviewers boolean Include a list of all assigned reviewers in the email sent when a new review is submitted. t t f f
4777email.newReview.displayStats boolean Include --stat output for commits added to the review. t t f f
4778email.newReview.displayWatchers boolean Include a list of all additional watchers in the email sent when a new review is submitted. t t f f
4779email.newReview.stats.maxLines integer Maximum number of lines of commit stats to include in the email sent when a review is submitted. If exceeded, no stats are included at all. t t f f
4780email.subjectLine.newReview string Python format string for subject line of email sent for newly created reviews. t t f f
4781email.subjectLine.newishReview string Python format string for subject line of email sent for new(ish) reviews. t t f f
4782email.subjectLine.pingedReview string Python format string for subject line of email sent when someone pings a review. t t f f
4783email.subjectLine.updatedReview.assignmentsChanged string Python format string for subject line of email sent when someone changes review assignments. t t f f
4784email.subjectLine.updatedReview.commitsPushed string Python format string for subject line of email sent when someone pushes additional commits to a review. t t f f
4785email.subjectLine.updatedReview.parentFiltersApplied string Python format string for subject line of email sent when someone applies parent repository filters to a review. t t f f
4786email.subjectLine.updatedReview.reviewRebased string Python format string for subject line of email sent when someone rebases a review branch. t t f f
4787email.subjectLine.updatedReview.submittedChanges string Python format string for subject line of email sent when someone submits changes to a review. t t f f
4788email.updatedReview.commentThreading boolean Send emails containing comments so that comment threads form email threads. This will increase the number of emails sent from Critic to the user. t t f f
4789email.updatedReview.diff.contextLines integer Number of context lines added to diffs in the email sent when a review is updated. t t f f
4790email.updatedReview.diff.maxLines integer Maximum number of lines of diffs to include in the email sent when a review is updated. If exceeded, no diffs are included at all. t t f f
4791email.updatedReview.displayCommits boolean Include a list of all new commits to be reviewed in the email sent when a review is updated. t t f f
4792email.updatedReview.displayStats boolean Include --stat output for commits added to the review. t t f f
4793email.updatedReview.quotedComments string Selection of comments in a comment thread that are quoted when new replies are submitted. t t f f
4794email.updatedReview.relevantChangesOnly boolean Only generate emails about reviewed files and written comments that are relevant. t t f f
4795email.updatedReview.stats.maxLines integer Maximum number of lines of commit stats to include in the email sent when a review is updated. If exceeded, no stats are included at all. t t f f
4796email.urlType string Type of URLs used in emails. t t f f
4797repository.urlType string Type of repository URL to display. t t f f
4798review.applyUpstreamFilters boolean If enabled, filters from upstream repositories are applied when creating review via push. t t f f
4799review.branchArchiveDelay.closed integer If non-zero, archive review branches belonging to closed reviews this number of days after the review was (last) closed. t t t f
4800review.branchArchiveDelay.dropped integer If non-zero, archive review branches belonging to dropped reviews this number of days after the review was (last) dropped. t t t f
4801review.createViaPush boolean If enabled, reviews can be requested by pushing a new branch whose name starts with "r/" to the repository. t t f f
4802review.defaultOptOut boolean Opt out of receiving review emails (except for "New review" emails) by default. t t t t
4803review.dropAnyReview boolean Show the "Drop Review" button on the front-page of every review, instead of only those you own. t t f f
4804review.pingAnyReview boolean Show the "Ping Review" button on the front-page of every review, instead of only those you own. t t f f
4805review.updateCheckInterval integer Check for updates of reviews every N seconds while displaying review front pages. If zero, the check is disabled. t t f f
4806review.useMustRevalidate boolean Deliver review front-pages with "Cache-Control: must-revalidate" to prevent history navigation to stale versions. t t f f
4807style.defaultFont string Font setting applied to the BODY element on every page. t t f f
4808style.sourceFont string Font setting applied to source code text in diff display. t t f f
4809style.tutorialFont string Font setting applied to tutorial text. t t f f
4810timezone string Timezone to present (most) dates in. t t f f
4811ui.asynchronousReviewMarking boolean Mark changes as reviewed (or not reviewed) using an asynchronous XMLHttpRequest. t t f f
4812ui.convertIssueToNote boolean Enable "Convert To Note" operation for issues. This operation is considered an inferior alternative to resolving an issue; use of it is not recommended. t t f f
4813ui.keyboardShortcuts boolean Enabled keyboard shortcuts on those pages that define any. t t f f
4814ui.resolveIssueWarning boolean Show a warning when resolving an issue raised by another user. t t f f
4815ui.title.showReview string Python format string for title of review front-page documents. t t f f
4816\.
4817
4818
4819--
4820-- Data for Name: previousreachable; Type: TABLE DATA; Schema: public; Owner: critic
4821--
4822
4823COPY previousreachable (rebase, commit) FROM stdin;
4824\.
4825
4826
4827--
4828-- Data for Name: reachable; Type: TABLE DATA; Schema: public; Owner: critic
4829--
4830
4831COPY reachable (branch, commit) FROM stdin;
48321 1
48331 2
48341 3
48351 4
48361 5
48371 6
48381 7
48391 8
48401 9
48411 10
48421 11
48431 12
48441 13
48451 14
48461 15
48471 16
48481 17
48491 18
48501 19
48511 20
48521 21
48531 22
48541 23
48551 24
48561 25
48571 26
48581 27
48591 28
48601 29
48611 30
48621 31
48631 32
48641 33
48651 34
48661 35
48671 36
48681 37
48691 38
48701 39
48711 40
48721 41
48731 42
48741 43
48751 44
48761 45
48771 46
48781 47
48791 48
48801 49
48811 50
48821 51
48831 52
48841 53
48851 54
48861 55
48871 56
48881 57
48891 58
48901 59
48911 60
48921 61
48931 62
48941 63
48951 64
48961 65
48971 66
48981 67
48991 68
49001 69
49011 70
49021 71
49031 72
49041 73
49051 74
49061 75
49071 76
49081 77
49091 78
49101 79
49111 80
49121 81
49131 82
49141 83
49151 84
49161 85
49171 86
49181 87
49191 88
49201 89
49211 90
49221 91
49231 92
49241 93
49251 94
49261 95
49271 96
49281 97
49291 98
49301 99
49311 100
49321 101
49331 102
49341 103
49351 104
49361 105
49371 106
49381 107
49391 108
49401 109
49411 110
49421 111
49431 112
49441 113
49451 114
49461 115
49471 116
49481 117
49491 118
49501 119
49511 120
49521 121
49531 122
49541 123
49551 124
49561 125
49571 126
49581 127
49591 128
49601 129
49611 130
49621 131
49631 132
49641 133
49651 134
49661 135
49671 136
49681 137
49691 138
49701 139
49711 140
49721 141
49731 142
49741 143
49751 144
49761 145
49771 146
49781 147
49791 148
49801 149
49811 150
49821 151
49831 152
49841 153
49851 154
49861 155
49871 156
49881 157
49891 158
49901 159
49911 160
49921 161
49931 162
49941 163
49951 164
49961 165
49971 166
49981 167
49991 168
50001 169
50011 170
50021 171
50031 172
50041 173
50051 174
50061 175
50071 176
50081 177
50091 178
50101 179
50111 180
50121 181
50131 182
50141 183
50151 184
50161 185
50171 186
50181 187
50191 188
50201 189
50211 190
50221 191
50231 192
50241 193
50251 194
50261 195
50271 196
50281 197
50291 198
50301 199
50311 200
50321 201
50331 202
50341 203
50351 204
50361 205
50371 206
50381 207
50391 208
50401 209
50411 210
50421 211
50431 212
50441 213
50451 214
50461 215
50471 216
50481 217
50491 218
50501 219
50511 220
50521 221
50531 222
50541 223
50551 224
50561 225
50571 226
50581 227
50591 228
50601 229
50611 230
50621 231
50631 232
50641 233
50651 234
50661 235
50671 236
50681 237
50691 238
50701 239
50711 240
50721 241
50731 242
50741 243
50751 244
50761 245
50771 246
50781 247
50791 248
50801 249
50811 250
50821 251
50831 252
50841 253
50851 254
50861 255
50871 256
50881 257
50891 258
50901 259
50911 260
50921 261
50931 262
50941 263
50951 264
50961 265
50971 266
50981 267
50991 268
51001 269
51011 270
51021 271
51031 272
51041 273
51051 274
51061 275
51071 276
51081 277
51091 278
51101 279
51111 280
51121 281
51131 282
51141 283
51151 284
51161 285
51171 286
51181 287
51191 288
51201 289
51211 290
51221 291
51231 292
51241 293
51251 294
51261 295
51271 296
51281 297
51291 298
51301 299
51311 300
51321 301
51331 302
51341 303
51351 304
51361 305
51371 306
51381 307
51391 308
51401 309
51411 310
51421 311
51431 312
51441 313
51451 314
51461 315
51471 316
51481 317
51491 318
51501 319
51511 320
51521 321
51531 322
51541 323
51551 324
51561 325
51571 326
51581 327
51591 328
51601 329
51611 330
51621 331
51631 332
51641 333
51651 334
51661 335
51671 336
51681 337
51691 338
51701 339
51711 340
51721 341
51731 342
51741 343
51751 344
51761 345
51771 346
51781 347
51791 348
51801 349
51811 350
51821 351
51831 352
51841 353
51851 354
51861 355
51871 356
51881 357
51891 358
51901 359
51911 360
51921 361
51931 362
51941 363
51951 364
51961 365
51971 366
51981 367
51991 368
52001 369
52011 370
52021 371
52031 372
52041 373
52051 374
52061 375
52071 376
52081 377
52091 378
52101 379
52111 380
52121 381
52131 382
52141 383
52151 384
52161 385
52171 386
52181 387
52191 388
52201 389
52211 390
52221 391
52231 392
52241 393
52251 394
52261 395
52271 396
52281 397
52291 398
52301 399
52311 400
52321 401
52331 402
52341 403
52351 404
52361 405
52371 406
52381 407
52391 408
52401 409
52411 410
52421 411
52431 412
52441 413
52451 414
52461 415
52471 416
52481 417
52491 418
52501 419
52511 420
52521 421
52531 422
52541 423
52551 424
52561 425
52571 426
52581 427
52591 428
52601 429
52611 430
52621 431
52631 432
52641 433
52651 434
52661 435
52671 436
52681 437
52691 438
52701 439
52711 440
52721 441
52731 442
52741 443
52751 444
52761 445
52771 446
52781 447
52791 448
52801 449
52811 450
52821 451
52831 452
52841 453
52851 454
52861 455
52871 456
52881 457
52891 458
52901 459
52911 460
52921 461
52931 462
52941 463
52951 464
52961 465
52971 466
52981 467
52991 468
53001 469
53011 470
53021 471
53031 472
53041 473
53051 474
53061 475
53071 476
53081 477
53091 478
53101 479
53111 480
53121 481
53131 482
53141 483
53151 484
53161 485
53171 486
53181 487
53191 488
53201 489
53211 490
53221 491
53231 492
53241 493
53251 494
53261 495
53271 496
53281 497
53291 498
53301 499
53311 500
53321 501
53331 502
53341 503
53351 504
53361 505
53371 506
53381 507
53391 508
53401 509
53411 510
53421 511
53431 512
53441 513
53451 514
53461 515
53471 516
53481 517
53491 518
53501 519
53511 520
53521 521
53531 522
53541 523
53551 524
53561 525
53571 526
53581 527
53591 528
53601 529
53611 530
53621 531
53631 532
53641 533
53651 534
53661 535
53671 536
53681 537
53691 538
53701 539
53711 540
53721 541
53731 542
53741 543
53751 544
53761 545
53771 546
53781 547
53791 548
53801 549
53811 550
53821 551
53831 552
53841 553
53851 554
53861 555
53871 556
53881 557
53891 558
53901 559
53911 560
53921 561
53931 562
53941 563
53951 564
53961 565
53971 566
53981 567
53991 568
54001 569
54011 570
54021 571
54031 572
54041 573
54051 574
54061 575
54071 576
54081 577
54091 578
54101 579
54111 580
54121 581
54131 582
54141 583
54151 584
54161 585
54171 586
54181 587
54191 588
54201 589
54211 590
54221 591
54231 592
54241 593
54251 594
54261 595
54271 596
54281 597
54291 598
54301 599
54311 600
54321 601
54331 602
54341 603
54351 604
54361 605
54371 606
54381 607
54391 608
54401 609
54411 610
54421 611
54431 612
54441 613
54451 614
54461 615
54471 616
54481 617
54491 618
54501 619
54511 620
54521 621
54531 622
54541 623
54551 624
54561 625
54571 626
54581 627
54591 628
54601 629
54611 630
54621 631
54631 632
54641 633
54651 634
54661 635
54671 636
54681 637
54691 638
54701 639
54711 640
54721 641
54731 642
54741 643
54751 644
54761 645
54771 646
54781 647
54791 648
54801 649
54811 650
54821 651
54831 652
54841 653
54851 654
54861 655
54871 656
54881 657
54891 658
54901 659
54911 660
54921 661
54931 662
54941 663
54951 664
54961 665
54971 666
54981 667
54991 668
55001 669
55011 670
55021 671
55031 672
55041 673
55051 674
55061 675
55071 676
55081 677
55091 678
55101 679
55111 680
55121 681
55131 682
55141 683
55151 684
55161 685
55171 686
55181 687
55191 688
55201 689
55211 690
55221 691
55231 692
55241 693
55251 694
55261 695
55271 696
55281 697
55291 698
55301 699
55311 700
55321 701
55331 702
55341 703
55351 704
55361 705
55371 706
55381 707
55391 708
55401 709
55411 710
55421 711
55431 712
55441 713
55451 714
55461 715
55471 716
55481 717
55491 718
55501 719
55511 720
55521 721
55531 722
55541 723
55551 724
55561 725
55571 726
55581 727
55591 728
55601 729
55611 730
55621 731
55631 732
55641 733
55651 734
55661 735
55671 736
55681 737
55691 738
55701 739
55711 740
55721 741
55731 742
55741 743
55751 744
55761 745
55771 746
55781 747
55791 748
55801 749
55811 750
55821 751
55831 752
55841 753
55851 754
55861 755
55871 756
55881 757
55891 758
55901 759
55911 760
55921 761
55931 762
55941 763
55951 764
55961 765
55971 766
55981 767
55991 768
56001 769
56011 770
56021 771
56031 772
56041 773
56051 774
56061 775
56071 776
56081 777
56091 778
56101 779
56111 780
56121 781
56131 782
56141 783
56151 784
56161 785
56171 786
56181 787
56191 788
56201 789
56211 790
56221 791
56231 792
56241 793
56251 794
56261 795
56271 796
56281 797
56291 798
56301 799
56311 800
56321 801
56331 802
56341 803
56351 804
56361 805
56371 806
56381 807
56391 808
56401 809
56411 810
56421 811
56431 812
56441 813
56451 814
56461 815
56471 816
56481 817
56491 818
56501 819
56511 820
56521 821
56531 822
56541 823
56551 824
56561 825
56571 826
56581 827
56591 828
56601 829
56611 830
56621 831
56631 832
56641 833
56651 834
56661 835
56671 836
56681 837
56691 838
56701 839
56711 840
56721 841
56731 842
56741 843
56751 844
56761 845
56771 846
56781 847
56791 848
56801 849
56811 850
56821 851
56831 852
56841 853
56851 854
56861 855
56871 856
56881 857
56891 859
56901 858
56911 861
56921 860
56931 864
56941 862
56951 863
56961 866
56971 865
56981 868
56991 867
57001 870
57011 869
57021 873
57031 872
57041 871
57051 876
57061 875
57071 874
57081 879
57091 878
57101 877
57111 882
57121 881
57131 880
57141 885
57151 884
57161 883
57171 888
57181 887
57191 886
57201 892
57211 891
57221 890
57231 889
57241 896
57251 894
57261 895
57271 893
57281 900
57291 898
57301 899
57311 897
57321 905
57331 904
57341 902
57351 903
57361 901
57371 910
57381 909
57391 907
57401 908
57411 906
57421 914
57431 912
57441 913
57451 911
57461 915
57471 916
57481 917
57491 918
57501 919
57511 920
57521 921
57531 922
57541 924
57551 923
57561 925
57571 926
57581 927
57591 928
57601 929
57611 930
57621 931
57631 932
57641 933
57651 934
57661 936
57671 935
57681 938
57691 937
57701 940
57711 939
57721 942
57731 941
57741 944
57751 943
57761 947
57771 946
57781 945
57791 951
57801 949
57811 950
57821 948
57831 952
57842 953
57852 954
57862 955
57872 956
57883 957
57893 958
57903 959
57913 960
57923 961
57933 962
57943 963
57953 964
57963 965
57973 966
57983 967
57993 968
58003 969
58013 970
58023 971
58033 972
5804\.
5805
5806
5807--
5808-- Data for Name: relevantcommits; Type: TABLE DATA; Schema: public; Owner: critic
5809--
5810
5811COPY relevantcommits (commit, parent, file, relevant) FROM stdin;
5812\.
5813
5814
5815--
5816-- Data for Name: repositories; Type: TABLE DATA; Schema: public; Owner: critic
5817--
5818
5819COPY repositories (id, parent, name, path) FROM stdin;
58201 \N c /var/git/c.git
58212 \N h /var/git/h.git
58223 \N z /var/git/z.git
5823\.
5824
5825
5826--
5827-- Name: repositories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
5828--
5829
5830SELECT pg_catalog.setval('repositories_id_seq', 3, true);
5831
5832
5833--
5834-- Data for Name: reviewassignmentchanges; Type: TABLE DATA; Schema: public; Owner: critic
5835--
5836
5837COPY reviewassignmentchanges (transaction, file, uid, assigned) FROM stdin;
5838\.
5839
5840
5841--
5842-- Data for Name: reviewassignmentstransactions; Type: TABLE DATA; Schema: public; Owner: critic
5843--
5844
5845COPY reviewassignmentstransactions (id, review, assigner, note, "time") FROM stdin;
5846\.
5847
5848
5849--
5850-- Name: reviewassignmentstransactions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
5851--
5852
5853SELECT pg_catalog.setval('reviewassignmentstransactions_id_seq', 1, false);
5854
5855
5856--
5857-- Data for Name: reviewchangesets; Type: TABLE DATA; Schema: public; Owner: critic
5858--
5859
5860COPY reviewchangesets (review, changeset) FROM stdin;
5861\.
5862
5863
5864--
5865-- Data for Name: reviewfilechanges; Type: TABLE DATA; Schema: public; Owner: critic
5866--
5867
5868COPY reviewfilechanges (batch, file, uid, "time", state, from_state, to_state) FROM stdin;
5869\.
5870
5871
5872--
5873-- Data for Name: reviewfiles; Type: TABLE DATA; Schema: public; Owner: critic
5874--
5875
5876COPY reviewfiles (id, review, changeset, file, deleted, inserted, state, reviewer, "time") FROM stdin;
5877\.
5878
5879
5880--
5881-- Name: reviewfiles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
5882--
5883
5884SELECT pg_catalog.setval('reviewfiles_id_seq', 1, false);
5885
5886
5887--
5888-- Data for Name: reviewfilterchanges; Type: TABLE DATA; Schema: public; Owner: critic
5889--
5890
5891COPY reviewfilterchanges (transaction, uid, path, type, created) FROM stdin;
5892\.
5893
5894
5895--
5896-- Data for Name: reviewfilters; Type: TABLE DATA; Schema: public; Owner: critic
5897--
5898
5899COPY reviewfilters (id, review, uid, path, type, creator) FROM stdin;
5900\.
5901
5902
5903--
5904-- Name: reviewfilters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
5905--
5906
5907SELECT pg_catalog.setval('reviewfilters_id_seq', 1, false);
5908
5909
5910--
5911-- Data for Name: reviewmergeconfirmations; Type: TABLE DATA; Schema: public; Owner: critic
5912--
5913
5914COPY reviewmergeconfirmations (id, review, uid, merge, tail, confirmed) FROM stdin;
5915\.
5916
5917
5918--
5919-- Name: reviewmergeconfirmations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
5920--
5921
5922SELECT pg_catalog.setval('reviewmergeconfirmations_id_seq', 1, false);
5923
5924
5925--
5926-- Data for Name: reviewmergecontributions; Type: TABLE DATA; Schema: public; Owner: critic
5927--
5928
5929COPY reviewmergecontributions (id, merged) FROM stdin;
5930\.
5931
5932
5933--
5934-- Data for Name: reviewmessageids; Type: TABLE DATA; Schema: public; Owner: critic
5935--
5936
5937COPY reviewmessageids (uid, review, messageid) FROM stdin;
5938\.
5939
5940
5941--
5942-- Data for Name: reviewrebases; Type: TABLE DATA; Schema: public; Owner: critic
5943--
5944
5945COPY reviewrebases (id, review, old_head, new_head, old_upstream, new_upstream, equivalent_merge, replayed_rebase, uid, branch) FROM stdin;
5946\.
5947
5948
5949--
5950-- Name: reviewrebases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
5951--
5952
5953SELECT pg_catalog.setval('reviewrebases_id_seq', 1, false);
5954
5955
5956--
5957-- Data for Name: reviewrecipientfilters; Type: TABLE DATA; Schema: public; Owner: critic
5958--
5959
5960COPY reviewrecipientfilters (review, uid, include) FROM stdin;
5961\.
5962
5963
5964--
5965-- Data for Name: reviews; Type: TABLE DATA; Schema: public; Owner: critic
5966--
5967
5968COPY reviews (id, type, branch, origin, state, serial, closed_by, dropped_by, applyfilters, applyparentfilters, summary, description) FROM stdin;
5969\.
5970
5971
5972--
5973-- Name: reviews_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
5974--
5975
5976SELECT pg_catalog.setval('reviews_id_seq', 1, false);
5977
5978
5979--
5980-- Data for Name: reviewuserfiles; Type: TABLE DATA; Schema: public; Owner: critic
5981--
5982
5983COPY reviewuserfiles (file, uid, "time") FROM stdin;
5984\.
5985
5986
5987--
5988-- Data for Name: reviewusers; Type: TABLE DATA; Schema: public; Owner: critic
5989--
5990
5991COPY reviewusers (review, uid, owner, type) FROM stdin;
5992\.
5993
5994
5995--
5996-- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: critic
5997--
5998
5999COPY roles (name, description) FROM stdin;
6000administrator Almighty system administrator.
6001repositories Allowed to add and configure repositories.
6002developer System developer.
6003newswriter Allowed to add and edit news items.
6004\.
6005
6006
6007--
6008-- Data for Name: scheduledreviewbrancharchivals; Type: TABLE DATA; Schema: public; Owner: critic
6009--
6010
6011COPY scheduledreviewbrancharchivals (review, deadline) FROM stdin;
6012\.
6013
6014
6015--
6016-- Data for Name: systemidentities; Type: TABLE DATA; Schema: public; Owner: critic
6017--
6018
6019COPY systemidentities (key, name, anonymous_scheme, authenticated_scheme, hostname, description, installed_sha1, installed_at) FROM stdin;
6020main main http http molsson Main 74e94e52ca8f423b0febcdd93db01013adf641db 2016-03-14 10:14:01.520015
6021\.
6022
6023
6024--
6025-- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: critic
6026--
6027
6028COPY tags (id, name, repository, sha1) FROM stdin;
6029\.
6030
6031
6032--
6033-- Name: tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
6034--
6035
6036SELECT pg_catalog.setval('tags_id_seq', 1, false);
6037
6038
6039--
6040-- Data for Name: timezones; Type: TABLE DATA; Schema: public; Owner: critic
6041--
6042
6043COPY timezones (name, abbrev, utc_offset) FROM stdin;
6044Universal/UTC UTC 00:00:00
6045Pacific/Saipan ChST 10:00:00
6046Pacific/Guadalcanal SBT 11:00:00
6047Pacific/Rarotonga CKT -1 days +14:00:00
6048Pacific/Bougainville BST 11:00:00
6049Pacific/Marquesas MART -1 days +14:30:00
6050Pacific/Easter EAST -1 days +19:00:00
6051Pacific/Pitcairn PST -1 days +16:00:00
6052Pacific/Kiritimati LINT 14:00:00
6053Pacific/Galapagos GALT -1 days +18:00:00
6054Pacific/Tongatapu TOT 13:00:00
6055Pacific/Kosrae KOST 11:00:00
6056Pacific/Tahiti TAHT -1 days +14:00:00
6057Pacific/Noumea NCT 11:00:00
6058Pacific/Palau PWT 09:00:00
6059Pacific/Chatham CHADT 13:45:00
6060Pacific/Apia WSDT 14:00:00
6061Pacific/Port_Moresby PGT 10:00:00
6062Pacific/Enderbury PHOT 13:00:00
6063Pacific/Johnston HST -1 days +14:00:00
6064Pacific/Auckland NZDT 13:00:00
6065Pacific/Wake WAKT 12:00:00
6066Pacific/Fiji FJT 12:00:00
6067Pacific/Fakaofo TKT 13:00:00
6068Pacific/Midway SST -1 days +13:00:00
6069Pacific/Funafuti TVT 12:00:00
6070Pacific/Samoa SST -1 days +13:00:00
6071Pacific/Wallis WFT 12:00:00
6072Pacific/Pohnpei PONT 11:00:00
6073Pacific/Yap CHUT 10:00:00
6074Pacific/Honolulu HST -1 days +14:00:00
6075Pacific/Gambier GAMT -1 days +15:00:00
6076Pacific/Truk CHUT 10:00:00
6077Pacific/Pago_Pago SST -1 days +13:00:00
6078Pacific/Majuro MHT 12:00:00
6079Pacific/Chuuk CHUT 10:00:00
6080Pacific/Niue NUT -1 days +13:00:00
6081Pacific/Efate VUT 11:00:00
6082Pacific/Guam ChST 10:00:00
6083Pacific/Tarawa GILT 12:00:00
6084Pacific/Kwajalein MHT 12:00:00
6085Pacific/Norfolk NFT 11:00:00
6086Pacific/Ponape PONT 11:00:00
6087Pacific/Nauru NRT 12:00:00
6088Canada/Pacific PDT -1 days +17:00:00
6089Canada/Saskatchewan CST -1 days +18:00:00
6090Canada/Newfoundland NDT -1 days +21:30:00
6091Canada/Eastern EDT -1 days +20:00:00
6092Canada/Yukon PDT -1 days +17:00:00
6093Canada/Mountain MDT -1 days +18:00:00
6094Canada/Central CDT -1 days +19:00:00
6095Canada/Atlantic ADT -1 days +21:00:00
6096Canada/East-Saskatchewan CST -1 days +18:00:00
6097Arctic/Longyearbyen CET 01:00:00
6098Mexico/General CST -1 days +18:00:00
6099Mexico/BajaSur MST -1 days +17:00:00
6100Mexico/BajaNorte PDT -1 days +17:00:00
6101Antarctica/Mawson MAWT 05:00:00
6102Antarctica/DumontDUrville DDUT 10:00:00
6103Antarctica/Vostok VOST 06:00:00
6104Antarctica/Rothera ROTT -1 days +21:00:00
6105Antarctica/Palmer CLT -1 days +21:00:00
6106Antarctica/Macquarie MIST 11:00:00
6107Antarctica/Davis DAVT 07:00:00
6108Antarctica/Troll UTC 00:00:00
6109Antarctica/McMurdo NZDT 13:00:00
6110Antarctica/Casey AWST 08:00:00
6111Antarctica/South_Pole NZDT 13:00:00
6112Antarctica/Syowa SYOT 03:00:00
6113Asia/Kuala_Lumpur MYT 08:00:00
6114Asia/Kathmandu NPT 05:45:00
6115Asia/Ujung_Pandang WITA 08:00:00
6116Asia/Dubai GST 04:00:00
6117Asia/Bishkek KGT 06:00:00
6118Asia/Dhaka BDT 06:00:00
6119Asia/Tel_Aviv IST 02:00:00
6120Asia/Amman EET 02:00:00
6121Asia/Samarkand UZT 05:00:00
6122Asia/Baghdad AST 03:00:00
6123Asia/Ust-Nera VLAT 10:00:00
6124Asia/Ulaanbaatar ULAT 08:00:00
6125Asia/Istanbul EET 02:00:00
6126Asia/Gaza EET 02:00:00
6127Asia/Aqtau AQTT 05:00:00
6128Asia/Vladivostok VLAT 10:00:00
6129Asia/Dacca BDT 06:00:00
6130Asia/Macau CST 08:00:00
6131Asia/Beirut EET 02:00:00
6132Asia/Ho_Chi_Minh ICT 07:00:00
6133Asia/Singapore SGT 08:00:00
6134Asia/Tashkent UZT 05:00:00
6135Asia/Kolkata IST 05:30:00
6136Asia/Pyongyang KST 08:30:00
6137Asia/Brunei BNT 08:00:00
6138Asia/Kabul AFT 04:30:00
6139Asia/Jayapura WIT 09:00:00
6140Asia/Seoul KST 09:00:00
6141Asia/Anadyr ANAT 12:00:00
6142Asia/Muscat GST 04:00:00
6143Asia/Riyadh AST 03:00:00
6144Asia/Rangoon MMT 06:30:00
6145Asia/Aden AST 03:00:00
6146Asia/Damascus EET 02:00:00
6147Asia/Yakutsk YAKT 09:00:00
6148Asia/Hong_Kong HKT 08:00:00
6149Asia/Ulan_Bator ULAT 08:00:00
6150Asia/Novokuznetsk KRAT 07:00:00
6151Asia/Chita IRKT 08:00:00
6152Asia/Qatar AST 03:00:00
6153Asia/Irkutsk IRKT 08:00:00
6154Asia/Manila PHT 08:00:00
6155Asia/Hebron EET 02:00:00
6156Asia/Thimphu BTT 06:00:00
6157Asia/Khandyga YAKT 09:00:00
6158Asia/Magadan MAGT 10:00:00
6159Asia/Dushanbe TJT 05:00:00
6160Asia/Saigon ICT 07:00:00
6161Asia/Chungking CST 08:00:00
6162Asia/Yerevan AMT 04:00:00
6163Asia/Phnom_Penh ICT 07:00:00
6164Asia/Taipei CST 08:00:00
6165Asia/Ashkhabad TMT 05:00:00
6166Asia/Tehran IRST 03:30:00
6167Asia/Calcutta IST 05:30:00
6168Asia/Chongqing CST 08:00:00
6169Asia/Tbilisi GET 04:00:00
6170Asia/Novosibirsk NOVT 06:00:00
6171Asia/Karachi PKT 05:00:00
6172Asia/Baku AZT 04:00:00
6173Asia/Qyzylorda QYZT 06:00:00
6174Asia/Kamchatka PETT 12:00:00
6175Asia/Hovd HOVT 07:00:00
6176Asia/Pontianak WIB 07:00:00
6177Asia/Kashgar XJT 06:00:00
6178Asia/Katmandu NPT 05:45:00
6179Asia/Bangkok ICT 07:00:00
6180Asia/Bahrain AST 03:00:00
6181Asia/Nicosia EET 02:00:00
6182Asia/Jerusalem IST 02:00:00
6183Asia/Yekaterinburg YEKT 05:00:00
6184Asia/Kuching MYT 08:00:00
6185Asia/Colombo IST 05:30:00
6186Asia/Tokyo JST 09:00:00
6187Asia/Macao CST 08:00:00
6188Asia/Shanghai CST 08:00:00
6189Asia/Urumqi XJT 06:00:00
6190Asia/Kuwait AST 03:00:00
6191Asia/Thimbu BTT 06:00:00
6192Asia/Omsk OMST 06:00:00
6193Asia/Sakhalin SAKT 10:00:00
6194Asia/Choibalsan CHOT 08:00:00
6195Asia/Vientiane ICT 07:00:00
6196Asia/Srednekolymsk SRET 11:00:00
6197Asia/Dili TLT 09:00:00
6198Asia/Makassar WITA 08:00:00
6199Asia/Krasnoyarsk KRAT 07:00:00
6200Asia/Harbin CST 08:00:00
6201Asia/Almaty ALMT 06:00:00
6202Asia/Oral ORAT 05:00:00
6203Asia/Aqtobe AQTT 05:00:00
6204Asia/Jakarta WIB 07:00:00
6205Asia/Ashgabat TMT 05:00:00
6206SystemV/EST5EDT EDT -1 days +20:00:00
6207SystemV/AST4ADT ADT -1 days +21:00:00
6208SystemV/MST7MDT MDT -1 days +18:00:00
6209SystemV/PST8PDT PDT -1 days +17:00:00
6210SystemV/EST5 EST -1 days +19:00:00
6211SystemV/PST8 PST -1 days +16:00:00
6212SystemV/AST4 AST -1 days +20:00:00
6213SystemV/CST6CDT CDT -1 days +19:00:00
6214SystemV/HST10 HST -1 days +14:00:00
6215SystemV/YST9 GAMT -1 days +15:00:00
6216SystemV/CST6 CST -1 days +18:00:00
6217SystemV/MST7 MST -1 days +17:00:00
6218SystemV/YST9YDT AKDT -1 days +16:00:00
6219Africa/Bujumbura CAT 02:00:00
6220Africa/Lome GMT 00:00:00
6221Africa/Maseru SAST 02:00:00
6222Africa/Mogadishu EAT 03:00:00
6223Africa/Mbabane SAST 02:00:00
6224Africa/Bamako GMT 00:00:00
6225Africa/Ceuta CET 01:00:00
6226Africa/Lusaka CAT 02:00:00
6227Africa/Malabo WAT 01:00:00
6228Africa/Windhoek WAST 02:00:00
6229Africa/Cairo EET 02:00:00
6230Africa/Luanda WAT 01:00:00
6231Africa/Asmara EAT 03:00:00
6232Africa/Addis_Ababa EAT 03:00:00
6233Africa/Nairobi EAT 03:00:00
6234Africa/Douala WAT 01:00:00
6235Africa/Casablanca WET 00:00:00
6236Africa/Harare CAT 02:00:00
6237Africa/Lubumbashi CAT 02:00:00
6238Africa/Kigali CAT 02:00:00
6239Africa/El_Aaiun WET 00:00:00
6240Africa/Brazzaville WAT 01:00:00
6241Africa/Conakry GMT 00:00:00
6242Africa/Porto-Novo WAT 01:00:00
6243Africa/Bangui WAT 01:00:00
6244Africa/Ndjamena WAT 01:00:00
6245Africa/Juba EAT 03:00:00
6246Africa/Algiers CET 01:00:00
6247Africa/Tunis CET 01:00:00
6248Africa/Monrovia GMT 00:00:00
6249Africa/Bissau GMT 00:00:00
6250Africa/Accra GMT 00:00:00
6251Africa/Sao_Tome GMT 00:00:00
6252Africa/Timbuktu GMT 00:00:00
6253Africa/Khartoum EAT 03:00:00
6254Africa/Kampala EAT 03:00:00
6255Africa/Freetown GMT 00:00:00
6256Africa/Dakar GMT 00:00:00
6257Africa/Niamey WAT 01:00:00
6258Africa/Asmera EAT 03:00:00
6259Africa/Libreville WAT 01:00:00
6260Africa/Johannesburg SAST 02:00:00
6261Africa/Lagos WAT 01:00:00
6262Africa/Banjul GMT 00:00:00
6263Africa/Nouakchott GMT 00:00:00
6264Africa/Dar_es_Salaam EAT 03:00:00
6265Africa/Blantyre CAT 02:00:00
6266Africa/Abidjan GMT 00:00:00
6267Africa/Djibouti EAT 03:00:00
6268Africa/Ouagadougou GMT 00:00:00
6269Africa/Kinshasa WAT 01:00:00
6270Africa/Maputo CAT 02:00:00
6271Africa/Tripoli EET 02:00:00
6272Africa/Gaborone CAT 02:00:00
6273Australia/Lord_Howe LHDT 11:00:00
6274Australia/Canberra AEDT 11:00:00
6275Australia/Victoria AEDT 11:00:00
6276Australia/Darwin ACST 09:30:00
6277Australia/ACT AEDT 11:00:00
6278Australia/North ACST 09:30:00
6279Australia/LHI LHDT 11:00:00
6280Australia/Adelaide ACDT 10:30:00
6281Australia/Eucla ACWST 08:45:00
6282Australia/South ACDT 10:30:00
6283Australia/Sydney AEDT 11:00:00
6284Australia/Perth AWST 08:00:00
6285Australia/Brisbane AEST 10:00:00
6286Australia/Hobart AEDT 11:00:00
6287Australia/Tasmania AEDT 11:00:00
6288Australia/Broken_Hill ACDT 10:30:00
6289Australia/Lindeman AEST 10:00:00
6290Australia/Yancowinna ACDT 10:30:00
6291Australia/Queensland AEST 10:00:00
6292Australia/NSW AEDT 11:00:00
6293Australia/Melbourne AEDT 11:00:00
6294Australia/West AWST 08:00:00
6295Australia/Currie AEDT 11:00:00
6296Europe/Minsk MSK 03:00:00
6297Europe/Copenhagen CET 01:00:00
6298Europe/Istanbul EET 02:00:00
6299Europe/Luxembourg CET 01:00:00
6300Europe/Belfast GMT 00:00:00
6301Europe/Budapest CET 01:00:00
6302Europe/Rome CET 01:00:00
6303Europe/Paris CET 01:00:00
6304Europe/Belgrade CET 01:00:00
6305Europe/Riga EET 02:00:00
6306Europe/Busingen CET 01:00:00
6307Europe/Dublin GMT 00:00:00
6308Europe/Monaco CET 01:00:00
6309Europe/Oslo CET 01:00:00
6310Europe/Tirane CET 01:00:00
6311Europe/Amsterdam CET 01:00:00
6312Europe/Uzhgorod EET 02:00:00
6313Europe/Bratislava CET 01:00:00
6314Europe/Helsinki EET 02:00:00
6315Europe/Jersey GMT 00:00:00
6316Europe/London GMT 00:00:00
6317Europe/Vilnius EET 02:00:00
6318Europe/Zagreb CET 01:00:00
6319Europe/Lisbon WET 00:00:00
6320Europe/Madrid CET 01:00:00
6321Europe/Tiraspol EET 02:00:00
6322Europe/Podgorica CET 01:00:00
6323Europe/Zaporozhye EET 02:00:00
6324Europe/Moscow MSK 03:00:00
6325Europe/Stockholm CET 01:00:00
6326Europe/Guernsey GMT 00:00:00
6327Europe/Samara SAMT 04:00:00
6328Europe/Bucharest EET 02:00:00
6329Europe/Volgograd MSK 03:00:00
6330Europe/Skopje CET 01:00:00
6331Europe/Vienna CET 01:00:00
6332Europe/Kaliningrad EET 02:00:00
6333Europe/Simferopol MSK 03:00:00
6334Europe/Athens EET 02:00:00
6335Europe/Ljubljana CET 01:00:00
6336Europe/Prague CET 01:00:00
6337Europe/Andorra CET 01:00:00
6338Europe/Kiev EET 02:00:00
6339Europe/Isle_of_Man GMT 00:00:00
6340Europe/Berlin CET 01:00:00
6341Europe/Nicosia EET 02:00:00
6342Europe/Sofia EET 02:00:00
6343Europe/Tallinn EET 02:00:00
6344Europe/Warsaw CET 01:00:00
6345Europe/Vatican CET 01:00:00
6346Europe/Malta CET 01:00:00
6347Europe/Gibraltar CET 01:00:00
6348Europe/Chisinau EET 02:00:00
6349Europe/Mariehamn EET 02:00:00
6350Europe/Brussels CET 01:00:00
6351Europe/Vaduz CET 01:00:00
6352Europe/San_Marino CET 01:00:00
6353Europe/Zurich CET 01:00:00
6354Europe/Sarajevo CET 01:00:00
6355Brazil/Acre ACT -1 days +19:00:00
6356Brazil/DeNoronha FNT -1 days +22:00:00
6357Brazil/East BRT -1 days +21:00:00
6358Brazil/West AMT -1 days +20:00:00
6359US/Pacific PDT -1 days +17:00:00
6360US/Aleutian HDT -1 days +15:00:00
6361US/East-Indiana EDT -1 days +20:00:00
6362US/Eastern EDT -1 days +20:00:00
6363US/Michigan EDT -1 days +20:00:00
6364US/Mountain MDT -1 days +18:00:00
6365US/Alaska AKDT -1 days +16:00:00
6366US/Samoa SST -1 days +13:00:00
6367US/Central CDT -1 days +19:00:00
6368US/Hawaii HST -1 days +14:00:00
6369US/Indiana-Starke CDT -1 days +19:00:00
6370US/Arizona MST -1 days +17:00:00
6371US/Pacific-New PDT -1 days +17:00:00
6372Chile/EasterIsland EAST -1 days +19:00:00
6373Chile/Continental CLT -1 days +21:00:00
6374Atlantic/Jan_Mayen CET 01:00:00
6375Atlantic/Faroe WET 00:00:00
6376Atlantic/Faeroe WET 00:00:00
6377Atlantic/St_Helena GMT 00:00:00
6378Atlantic/Azores AZOT -1 days +23:00:00
6379Atlantic/Bermuda ADT -1 days +21:00:00
6380Atlantic/Reykjavik GMT 00:00:00
6381Atlantic/Cape_Verde CVT -1 days +23:00:00
6382Atlantic/South_Georgia GST -1 days +22:00:00
6383Atlantic/Stanley FKST -1 days +21:00:00
6384Atlantic/Canary WET 00:00:00
6385Atlantic/Madeira WET 00:00:00
6386Indian/Christmas CXT 07:00:00
6387Indian/Reunion RET 04:00:00
6388Indian/Kerguelen TFT 05:00:00
6389Indian/Antananarivo EAT 03:00:00
6390Indian/Cocos CCT 06:30:00
6391Indian/Chagos IOT 06:00:00
6392Indian/Mayotte EAT 03:00:00
6393Indian/Mauritius MUT 04:00:00
6394Indian/Maldives MVT 05:00:00
6395Indian/Comoro EAT 03:00:00
6396Indian/Mahe SCT 04:00:00
6397America/Thule ADT -1 days +21:00:00
6398America/Managua CST -1 days +18:00:00
6399America/Detroit EDT -1 days +20:00:00
6400America/Miquelon PMDT -1 days +22:00:00
6401America/Yellowknife MDT -1 days +18:00:00
6402America/Kralendijk AST -1 days +20:00:00
6403America/Ojinaga MDT -1 days +18:00:00
6404America/Menominee CDT -1 days +19:00:00
6405America/Tortola AST -1 days +20:00:00
6406America/Nome AKDT -1 days +16:00:00
6407America/Marigot AST -1 days +20:00:00
6408America/Maceio BRT -1 days +21:00:00
6409America/Recife BRT -1 days +21:00:00
6410America/Yakutat AKDT -1 days +16:00:00
6411America/Montevideo UYT -1 days +21:00:00
6412America/Bogota COT -1 days +19:00:00
6413America/St_Thomas AST -1 days +20:00:00
6414America/Rio_Branco ACT -1 days +19:00:00
6415America/Louisville EDT -1 days +20:00:00
6416America/New_York EDT -1 days +20:00:00
6417America/Santa_Isabel PST -1 days +16:00:00
6418America/Atikokan EST -1 days +19:00:00
6419America/Cordoba ART -1 days +21:00:00
6420America/Guyana GYT -1 days +20:00:00
6421America/Lima PET -1 days +19:00:00
6422America/Nassau EDT -1 days +20:00:00
6423America/Curacao AST -1 days +20:00:00
6424America/Mazatlan MST -1 days +17:00:00
6425America/Phoenix MST -1 days +17:00:00
6426America/St_Johns NDT -1 days +21:30:00
6427America/Caracas VET -1 days +19:30:00
6428America/Mendoza ART -1 days +21:00:00
6429America/Bahia BRT -1 days +21:00:00
6430America/Panama EST -1 days +19:00:00
6431America/Santarem BRT -1 days +21:00:00
6432America/Buenos_Aires ART -1 days +21:00:00
6433America/Scoresbysund EGT -1 days +23:00:00
6434America/Tijuana PDT -1 days +17:00:00
6435America/Araguaina BRT -1 days +21:00:00
6436America/Danmarkshavn GMT 00:00:00
6437America/Knox_IN CDT -1 days +19:00:00
6438America/Vancouver PDT -1 days +17:00:00
6439America/Santiago CLT -1 days +21:00:00
6440America/Juneau AKDT -1 days +16:00:00
6441America/St_Barthelemy AST -1 days +20:00:00
6442America/Blanc-Sablon AST -1 days +20:00:00
6443America/Los_Angeles PDT -1 days +17:00:00
6444America/Winnipeg CDT -1 days +19:00:00
6445America/Fort_Wayne EDT -1 days +20:00:00
6446America/Sao_Paulo BRT -1 days +21:00:00
6447America/Pangnirtung EDT -1 days +20:00:00
6448America/Porto_Velho AMT -1 days +20:00:00
6449America/Grenada AST -1 days +20:00:00
6450America/Sitka AKDT -1 days +16:00:00
6451America/Adak HDT -1 days +15:00:00
6452America/Cancun EST -1 days +19:00:00
6453America/St_Lucia AST -1 days +20:00:00
6454America/Rankin_Inlet CDT -1 days +19:00:00
6455America/Coral_Harbour EST -1 days +19:00:00
6456America/Belize CST -1 days +18:00:00
6457America/Merida CST -1 days +18:00:00
6458America/Boa_Vista AMT -1 days +20:00:00
6459America/Porto_Acre ACT -1 days +19:00:00
6460America/Regina CST -1 days +18:00:00
6461America/Fort_Nelson MST -1 days +17:00:00
6462America/Belem BRT -1 days +21:00:00
6463America/Hermosillo MST -1 days +17:00:00
6464America/Montserrat AST -1 days +20:00:00
6465America/Chihuahua MST -1 days +17:00:00
6466America/Asuncion PYST -1 days +21:00:00
6467America/Montreal EDT -1 days +20:00:00
6468America/Monterrey CST -1 days +18:00:00
6469America/Martinique AST -1 days +20:00:00
6470America/Chicago CDT -1 days +19:00:00
6471America/Iqaluit EDT -1 days +20:00:00
6472America/Resolute CDT -1 days +19:00:00
6473America/Cayman EDT -1 days +20:00:00
6474America/Paramaribo SRT -1 days +21:00:00
6475America/Guadeloupe AST -1 days +20:00:00
6476America/St_Vincent AST -1 days +20:00:00
6477America/Antigua AST -1 days +20:00:00
6478America/Indianapolis EDT -1 days +20:00:00
6479America/Catamarca ART -1 days +21:00:00
6480America/Lower_Princes AST -1 days +20:00:00
6481America/Rainy_River CDT -1 days +19:00:00
6482America/Tegucigalpa CST -1 days +18:00:00
6483America/Cambridge_Bay MDT -1 days +18:00:00
6484America/Glace_Bay ADT -1 days +21:00:00
6485America/Shiprock MDT -1 days +18:00:00
6486America/Grand_Turk AST -1 days +20:00:00
6487America/Puerto_Rico AST -1 days +20:00:00
6488America/Toronto EDT -1 days +20:00:00
6489America/Aruba AST -1 days +20:00:00
6490America/Campo_Grande AMT -1 days +20:00:00
6491America/Port-au-Prince EDT -1 days +20:00:00
6492America/Denver MDT -1 days +18:00:00
6493America/Creston MST -1 days +17:00:00
6494America/Cuiaba AMT -1 days +20:00:00
6495America/Matamoros CDT -1 days +19:00:00
6496America/Thunder_Bay EDT -1 days +20:00:00
6497America/El_Salvador CST -1 days +18:00:00
6498America/Dominica AST -1 days +20:00:00
6499America/Inuvik MDT -1 days +18:00:00
6500America/Havana CDT -1 days +20:00:00
6501America/Cayenne GFT -1 days +21:00:00
6502America/Moncton ADT -1 days +21:00:00
6503America/Manaus AMT -1 days +20:00:00
6504America/Ensenada PDT -1 days +17:00:00
6505America/Halifax ADT -1 days +21:00:00
6506America/Noronha FNT -1 days +22:00:00
6507America/Jujuy ART -1 days +21:00:00
6508America/Dawson PDT -1 days +17:00:00
6509America/Edmonton MDT -1 days +18:00:00
6510America/Fortaleza BRT -1 days +21:00:00
6511America/Boise MDT -1 days +18:00:00
6512America/Anchorage AKDT -1 days +16:00:00
6513America/Atka HDT -1 days +15:00:00
6514America/Dawson_Creek MST -1 days +17:00:00
6515America/La_Paz BOT -1 days +20:00:00
6516America/Port_of_Spain AST -1 days +20:00:00
6517America/Nipigon EDT -1 days +20:00:00
6518America/Guatemala CST -1 days +18:00:00
6519America/Guayaquil ECT -1 days +19:00:00
6520America/Jamaica EST -1 days +19:00:00
6521America/Santo_Domingo AST -1 days +20:00:00
6522America/Barbados AST -1 days +20:00:00
6523America/Rosario ART -1 days +21:00:00
6524America/Swift_Current CST -1 days +18:00:00
6525America/Eirunepe ACT -1 days +19:00:00
6526America/Whitehorse PDT -1 days +17:00:00
6527America/Costa_Rica CST -1 days +18:00:00
6528America/Anguilla AST -1 days +20:00:00
6529America/Virgin AST -1 days +20:00:00
6530America/Metlakatla PST -1 days +16:00:00
6531America/Mexico_City CST -1 days +18:00:00
6532America/Goose_Bay ADT -1 days +21:00:00
6533America/Bahia_Banderas CST -1 days +18:00:00
6534America/St_Kitts AST -1 days +20:00:00
6535America/Godthab WGT -1 days +21:00:00
6536\.
6537
6538
6539--
6540-- Data for Name: trackedbranches; Type: TABLE DATA; Schema: public; Owner: critic
6541--
6542
6543COPY trackedbranches (id, repository, local_name, remote, remote_name, forced, disabled, updating, delay, previous, next) FROM stdin;
65441 1 * git://github.com/jensl/critic.git * t f f 1 day 2016-03-14 10:14:06.487938 2016-03-15 10:14:06.487938
65452 1 master git://github.com/jensl/critic.git master t f f 1 day 2016-03-14 10:14:06.770064 2016-03-15 10:14:06.770064
65463 2 * https://github.com/jwiegley/helloworld.git * t f f 1 day 2016-03-14 10:14:09.419314 2016-03-15 10:14:09.419314
65474 2 master https://github.com/jwiegley/helloworld.git master t f f 1 day 2016-03-14 10:14:10.231924 2016-03-15 10:14:10.231924
65485 3 * git://github.com/mo/non_ascii.git * t f f 1 day 2016-03-14 10:14:12.043438 2016-03-15 10:14:12.043438
65496 3 master git://github.com/mo/non_ascii.git master t f f 1 day 2016-03-14 10:14:12.326985 2016-03-15 10:14:12.326985
6550\.
6551
6552
6553--
6554-- Name: trackedbranches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
6555--
6556
6557SELECT pg_catalog.setval('trackedbranches_id_seq', 6, true);
6558
6559
6560--
6561-- Data for Name: trackedbranchlog; Type: TABLE DATA; Schema: public; Owner: critic
6562--
6563
6564COPY trackedbranchlog (branch, "time", from_sha1, to_sha1, hook_output, successful) FROM stdin;
65652 2016-03-14 10:14:09.409335 0000000000000000000000000000000000000000 0a0520fc75bd1570bcb77c22db1d26df91d4d74d t
65664 2016-03-14 10:14:12.033377 0000000000000000000000000000000000000000 4a35ba4f937bc02e8c8c4dc8628e85727753dff3 t
65676 2016-03-14 10:14:13.721775 0000000000000000000000000000000000000000 2d96e01d3b53a9d47dd913051b2eb1dc9afb6548 t
6568\.
6569
6570
6571--
6572-- Data for Name: trackedbranchusers; Type: TABLE DATA; Schema: public; Owner: critic
6573--
6574
6575COPY trackedbranchusers (branch, uid) FROM stdin;
6576\.
6577
6578
6579--
6580-- Data for Name: userabsence; Type: TABLE DATA; Schema: public; Owner: critic
6581--
6582
6583COPY userabsence (uid, until) FROM stdin;
6584\.
6585
6586
6587--
6588-- Data for Name: useremails; Type: TABLE DATA; Schema: public; Owner: critic
6589--
6590
6591COPY useremails (id, uid, email, verified, verification_token) FROM stdin;
65921 1 m@minimum.se \N \N
65932 2 toto@minimum.se \N \N
65943 3 alice@minimum.se \N \N
65954 4 bob@minimum.se \N \N
65965 5 dave@minimum.se \N \N
65976 6 erin@minimum.se \N \N
65987 7 conan@minimum.se \N \N
65998 8 justin.bc.bieber@devops.recordedfuture.com \N \N
6600\.
6601
6602
6603--
6604-- Name: useremails_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
6605--
6606
6607SELECT pg_catalog.setval('useremails_id_seq', 8, true);
6608
6609
6610--
6611-- Data for Name: usergitemails; Type: TABLE DATA; Schema: public; Owner: critic
6612--
6613
6614COPY usergitemails (email, uid) FROM stdin;
6615m@minimum.se 1
6616toto@minimum.se 2
6617alice@minimum.se 3
6618bob@minimum.se 4
6619dave@minimum.se 5
6620erin@minimum.se 6
6621conan@minimum.se 7
6622justin.bc.bieber@devops.recordedfuture.com 8
6623\.
6624
6625
6626--
6627-- Data for Name: userpreferences; Type: TABLE DATA; Schema: public; Owner: critic
6628--
6629
6630COPY userpreferences (item, uid, repository, filter, "integer", string) FROM stdin;
6631comment.diff.contextLines \N \N \N 3 \N
6632commit.diff.collapseSimpleHunks \N \N \N 0 \N
6633commit.diff.compactMode \N \N \N 1 \N
6634commit.diff.contextLines \N \N \N 5 \N
6635commit.diff.highlightIllegalWhitespace \N \N \N 1 \N
6636commit.diff.rulerColumn \N \N \N 0 \N
6637commit.diff.visualTabs \N \N \N 0 \N
6638commit.expandAllFiles \N \N \N 0 \N
6639commit.expandFilesLimit \N \N \N 0 \N
6640dashboard.defaultGroups \N \N \N \N owned,draft,active,watched
6641debug.enabled \N \N \N 0 \N
6642debug.extensions.customProcessCommits \N \N \N 0 \N
6643debug.profiling.abortChanges \N \N \N 0 \N
6644debug.profiling.databaseQueries \N \N \N 0 \N
6645debug.profiling.pageGeneration \N \N \N 0 \N
6646debug.profiling.submitChanges \N \N \N 0 \N
6647defaultPage \N \N \N \N home
6648defaultRepository \N \N \N \N
6649email.activated \N \N \N 1 \N
6650email.comment.contextLines \N \N \N 0 \N
6651email.enableAssociationRecipients \N \N \N 0 \N
6652email.ignoreOwnChanges \N \N \N 0 \N
6653email.lineLength \N \N \N 80 \N
6654email.listId \N \N \N \N
6655email.newReview.diff.contextLines \N \N \N 3 \N
6656email.newReview.diff.maxLines \N \N \N 250 \N
6657email.newReview.displayCommits \N \N \N 1 \N
6658email.newReview.displayDiffs \N \N \N 1 \N
6659email.newReview.displayReviewers \N \N \N 1 \N
6660email.newReview.displayStats \N \N \N 0 \N
6661email.newReview.displayWatchers \N \N \N 1 \N
6662email.newReview.stats.maxLines \N \N \N 250 \N
6663email.subjectLine.newReview \N \N \N \N New Review: %(summary)s
6664email.subjectLine.newishReview \N \N \N \N New(ish) Review: %(summary)s
6665email.subjectLine.pingedReview \N \N \N \N Pinged Review: %(summary)s
6666email.subjectLine.updatedReview.assignmentsChanged \N \N \N \N Updated Review: %(summary)s
6667email.subjectLine.updatedReview.commitsPushed \N \N \N \N Updated Review: %(summary)s
6668email.subjectLine.updatedReview.parentFiltersApplied \N \N \N \N Updated Review: %(summary)s
6669email.subjectLine.updatedReview.reviewRebased \N \N \N \N Updated Review: %(summary)s
6670email.subjectLine.updatedReview.submittedChanges \N \N \N \N Updated Review: %(summary)s
6671email.updatedReview.commentThreading \N \N \N 0 \N
6672email.updatedReview.diff.contextLines \N \N \N 3 \N
6673email.updatedReview.diff.maxLines \N \N \N 250 \N
6674email.updatedReview.displayCommits \N \N \N 1 \N
6675email.updatedReview.displayStats \N \N \N 0 \N
6676email.updatedReview.quotedComments \N \N \N \N all
6677email.updatedReview.relevantChangesOnly \N \N \N 0 \N
6678email.updatedReview.stats.maxLines \N \N \N 250 \N
6679email.urlType \N \N \N \N main
6680repository.urlType \N \N \N \N http
6681review.applyUpstreamFilters \N \N \N 1 \N
6682review.branchArchiveDelay.closed \N \N \N 7 \N
6683review.branchArchiveDelay.dropped \N \N \N 1 \N
6684review.createViaPush \N \N \N 0 \N
6685review.defaultOptOut \N \N \N 0 \N
6686review.dropAnyReview \N \N \N 0 \N
6687review.pingAnyReview \N \N \N 0 \N
6688review.updateCheckInterval \N \N \N 300 \N
6689review.useMustRevalidate \N \N \N 1 \N
6690style.defaultFont \N \N \N \N font-size: 10pt; font-family: sans-serif
6691style.sourceFont \N \N \N \N font-size: 10pt; font-family: monospace
6692style.tutorialFont \N \N \N \N font-size: 11pt; font-family: serif
6693timezone \N \N \N \N Universal/UTC
6694ui.asynchronousReviewMarking \N \N \N 0 \N
6695ui.convertIssueToNote \N \N \N 0 \N
6696ui.keyboardShortcuts \N \N \N 1 \N
6697ui.resolveIssueWarning \N \N \N 1 \N
6698ui.title.showReview \N \N \N \N %(id)s (%(progress)s) - %(summary)s - Opera Critic
6699defaultRepository 1 \N \N \N c
6700commit.diff.compactMode 1 \N \N 0 \N
6701review.createViaPush 1 \N \N 1 \N
6702\.
6703
6704
6705--
6706-- Data for Name: userresources; Type: TABLE DATA; Schema: public; Owner: critic
6707--
6708
6709COPY userresources (uid, name, revision, source) FROM stdin;
6710\.
6711
6712
6713--
6714-- Data for Name: userroles; Type: TABLE DATA; Schema: public; Owner: critic
6715--
6716
6717COPY userroles (uid, role) FROM stdin;
67181 administrator
67191 repositories
67201 newswriter
67211 developer
67227 administrator
6723\.
6724
6725
6726--
6727-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: critic
6728--
6729
6730COPY users (id, name, fullname, password, email, status) FROM stdin;
67311 molsson molsson ö $2a$10$hkTIwxjFKQvT1nG3gNB2VuUz8aXyHCMA4.QHDx6mz4hyg51.W77DS 1 current
67322 toto To To $2a$10$hd20GywdtXPEKMa7fA3yEO0ymZn8/SI9d57rayfSLX6A5uZYekN76 2 retired
67333 alice Alice $2a$10$FiMlSeA2VXbigQf3Ygjn1.DH4RGFD6YAqRXJfYgZL6FnFn1nG3YrC 3 current
67344 bob Bob $2a$10$Q8OC7BD.SG9cMN74dd.sLe46JJ5J6oN.hnVvqw/flh0CNPxY1u3s6 4 current
67355 dave Dave $2a$10$21LLnSh3YxkQiaR9dDfiZ.HFuQ8K0uRaekUfa5z5kLdq/JIqYMPFi 5 current
67366 erin Erin $2a$10$GTx5RbWwos2THWaiSvX8leNFyIB6BKeJh9Mu5OlGprg6zqglf0JYK 6 current
67377 conan Conan $2a$10$R5H.ACNDcRqoX7aKvR0c9e0QWk0U98.knRttsn1QUQyfyeJFgn88G 7 current
67388 justin.bieber.bc.devops Justin BCRIPZ Biebz $2a$10$bUa8sfeak0HMl0TWOqhfQ.9FyRHtvFTje.kb5sx8cywz3ytImNhYa 8 current
6739\.
6740
6741
6742--
6743-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: critic
6744--
6745
6746SELECT pg_catalog.setval('users_id_seq', 8, true);
6747
6748
6749--
6750-- Data for Name: usersessions; Type: TABLE DATA; Schema: public; Owner: critic
6751--
6752
6753COPY usersessions (key, uid, atime) FROM stdin;
6754y2Jgo5DlBqnbkyifyCeITtgndDo= 1 2016-03-14 10:14:06.150462
6755sVGIxl8r/sevYEak24EQfRsWq8M= 1 2016-03-14 10:14:06.599571
6756EXLS3niBUrW4mZAKvdq5Ad5WWSg= 1 2016-03-14 10:14:07.502226
67570bNZPZYmYEUBCk6Z30FCb2uLyPA= 1 2016-03-14 10:14:07.918332
6758iMY2G73Y6cDA/nbecB4SJua4gwY= 1 2016-03-14 10:14:08.042609
6759FWbiecVRciefoBmwvcTbKa4a0nU= 1 2016-03-14 10:14:08.168718
6760\.
6761
6762
6763--
6764-- Name: batches_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6765--
6766
6767ALTER TABLE ONLY batches
6768 ADD CONSTRAINT batches_pkey PRIMARY KEY (id);
6769
6770
6771--
6772-- Name: branches_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6773--
6774
6775ALTER TABLE ONLY branches
6776 ADD CONSTRAINT branches_pkey PRIMARY KEY (id);
6777
6778
6779--
6780-- Name: branches_repository_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6781--
6782
6783ALTER TABLE ONLY branches
6784 ADD CONSTRAINT branches_repository_name_key UNIQUE (repository, name);
6785
6786
6787--
6788-- Name: changesets_parent_child_type_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6789--
6790
6791ALTER TABLE ONLY changesets
6792 ADD CONSTRAINT changesets_parent_child_type_key UNIQUE (parent, child, type);
6793
6794
6795--
6796-- Name: changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6797--
6798
6799ALTER TABLE ONLY changesets
6800 ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
6801
6802
6803--
6804-- Name: checkbranchnotes_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6805--
6806
6807ALTER TABLE ONLY checkbranchnotes
6808 ADD CONSTRAINT checkbranchnotes_pkey PRIMARY KEY (repository, branch, upstream, sha1);
6809
6810
6811--
6812-- Name: chunks_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6813--
6814
6815ALTER TABLE ONLY chunks
6816 ADD CONSTRAINT chunks_pkey PRIMARY KEY (id);
6817
6818
6819--
6820-- Name: commentchainlines_chain_sha1_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6821--
6822
6823ALTER TABLE ONLY commentchainlines
6824 ADD CONSTRAINT commentchainlines_chain_sha1_key UNIQUE (chain, sha1);
6825
6826
6827--
6828-- Name: commentchains_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6829--
6830
6831ALTER TABLE ONLY commentchains
6832 ADD CONSTRAINT commentchains_pkey PRIMARY KEY (id);
6833
6834
6835--
6836-- Name: commentchainusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6837--
6838
6839ALTER TABLE ONLY commentchainusers
6840 ADD CONSTRAINT commentchainusers_pkey PRIMARY KEY (chain, uid);
6841
6842
6843--
6844-- Name: commentmessageids_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6845--
6846
6847ALTER TABLE ONLY commentmessageids
6848 ADD CONSTRAINT commentmessageids_pkey PRIMARY KEY (uid, comment);
6849
6850
6851--
6852-- Name: comments_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6853--
6854
6855ALTER TABLE ONLY comments
6856 ADD CONSTRAINT comments_pkey PRIMARY KEY (id);
6857
6858
6859--
6860-- Name: commentstoread_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6861--
6862
6863ALTER TABLE ONLY commentstoread
6864 ADD CONSTRAINT commentstoread_pkey PRIMARY KEY (uid, comment);
6865
6866
6867--
6868-- Name: commits_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6869--
6870
6871ALTER TABLE ONLY commits
6872 ADD CONSTRAINT commits_pkey PRIMARY KEY (id);
6873
6874
6875--
6876-- Name: commits_sha1_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6877--
6878
6879ALTER TABLE ONLY commits
6880 ADD CONSTRAINT commits_sha1_key UNIQUE (sha1);
6881
6882
6883--
6884-- Name: customchangesets_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6885--
6886
6887ALTER TABLE ONLY customchangesets
6888 ADD CONSTRAINT customchangesets_pkey PRIMARY KEY (changeset);
6889
6890
6891--
6892-- Name: extensionfilterhookevents_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6893--
6894
6895ALTER TABLE ONLY extensionfilterhookevents
6896 ADD CONSTRAINT extensionfilterhookevents_pkey PRIMARY KEY (id);
6897
6898
6899--
6900-- Name: extensionhookfilters_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6901--
6902
6903ALTER TABLE ONLY extensionhookfilters
6904 ADD CONSTRAINT extensionhookfilters_pkey PRIMARY KEY (id);
6905
6906
6907--
6908-- Name: extensioninstalls_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6909--
6910
6911ALTER TABLE ONLY extensioninstalls
6912 ADD CONSTRAINT extensioninstalls_pkey PRIMARY KEY (id);
6913
6914
6915--
6916-- Name: extensioninstalls_uid_extension_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6917--
6918
6919ALTER TABLE ONLY extensioninstalls
6920 ADD CONSTRAINT extensioninstalls_uid_extension_key UNIQUE (uid, extension);
6921
6922
6923--
6924-- Name: extensionroles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6925--
6926
6927ALTER TABLE ONLY extensionroles
6928 ADD CONSTRAINT extensionroles_pkey PRIMARY KEY (id);
6929
6930
6931--
6932-- Name: extensions_author_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6933--
6934
6935ALTER TABLE ONLY extensions
6936 ADD CONSTRAINT extensions_author_name_key UNIQUE (author, name);
6937
6938
6939--
6940-- Name: extensions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6941--
6942
6943ALTER TABLE ONLY extensions
6944 ADD CONSTRAINT extensions_pkey PRIMARY KEY (id);
6945
6946
6947--
6948-- Name: extensionstorage_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6949--
6950
6951ALTER TABLE ONLY extensionstorage
6952 ADD CONSTRAINT extensionstorage_pkey PRIMARY KEY (extension, uid, key);
6953
6954
6955--
6956-- Name: extensionversions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6957--
6958
6959ALTER TABLE ONLY extensionversions
6960 ADD CONSTRAINT extensionversions_pkey PRIMARY KEY (id);
6961
6962
6963--
6964-- Name: extensionversions_sha1_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6965--
6966
6967ALTER TABLE ONLY extensionversions
6968 ADD CONSTRAINT extensionversions_sha1_key UNIQUE (sha1);
6969
6970
6971--
6972-- Name: externalusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6973--
6974
6975ALTER TABLE ONLY externalusers
6976 ADD CONSTRAINT externalusers_pkey PRIMARY KEY (id);
6977
6978
6979--
6980-- Name: externalusers_provider_account_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6981--
6982
6983ALTER TABLE ONLY externalusers
6984 ADD CONSTRAINT externalusers_provider_account_key UNIQUE (provider, account);
6985
6986
6987--
6988-- Name: files_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6989--
6990
6991ALTER TABLE ONLY files
6992 ADD CONSTRAINT files_pkey PRIMARY KEY (id);
6993
6994
6995--
6996-- Name: fileversions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
6997--
6998
6999ALTER TABLE ONLY fileversions
7000 ADD CONSTRAINT fileversions_pkey PRIMARY KEY (changeset, file);
7001
7002
7003--
7004-- Name: filters_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7005--
7006
7007ALTER TABLE ONLY filters
7008 ADD CONSTRAINT filters_pkey PRIMARY KEY (id);
7009
7010
7011--
7012-- Name: gitusers_email_fullname_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7013--
7014
7015ALTER TABLE ONLY gitusers
7016 ADD CONSTRAINT gitusers_email_fullname_key UNIQUE (email, fullname);
7017
7018
7019--
7020-- Name: gitusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7021--
7022
7023ALTER TABLE ONLY gitusers
7024 ADD CONSTRAINT gitusers_pkey PRIMARY KEY (id);
7025
7026
7027--
7028-- Name: knownremotes_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7029--
7030
7031ALTER TABLE ONLY knownremotes
7032 ADD CONSTRAINT knownremotes_pkey PRIMARY KEY (url);
7033
7034
7035--
7036-- Name: lockedreviews_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7037--
7038
7039ALTER TABLE ONLY lockedreviews
7040 ADD CONSTRAINT lockedreviews_pkey PRIMARY KEY (review);
7041
7042
7043--
7044-- Name: mergebases_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7045--
7046
7047ALTER TABLE ONLY mergebases
7048 ADD CONSTRAINT mergebases_pkey PRIMARY KEY (commit);
7049
7050
7051--
7052-- Name: mergereplays_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7053--
7054
7055ALTER TABLE ONLY mergereplays
7056 ADD CONSTRAINT mergereplays_pkey PRIMARY KEY (original);
7057
7058
7059--
7060-- Name: newsitems_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7061--
7062
7063ALTER TABLE ONLY newsitems
7064 ADD CONSTRAINT newsitems_pkey PRIMARY KEY (id);
7065
7066
7067--
7068-- Name: oauthstates_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7069--
7070
7071ALTER TABLE ONLY oauthstates
7072 ADD CONSTRAINT oauthstates_pkey PRIMARY KEY (state);
7073
7074
7075--
7076-- Name: preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7077--
7078
7079ALTER TABLE ONLY preferences
7080 ADD CONSTRAINT preferences_pkey PRIMARY KEY (item);
7081
7082
7083--
7084-- Name: reachable_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7085--
7086
7087ALTER TABLE ONLY reachable
7088 ADD CONSTRAINT reachable_pkey PRIMARY KEY (branch, commit);
7089
7090
7091--
7092-- Name: relevantcommits_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7093--
7094
7095ALTER TABLE ONLY relevantcommits
7096 ADD CONSTRAINT relevantcommits_pkey PRIMARY KEY (commit, parent, file, relevant);
7097
7098
7099--
7100-- Name: repositories_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7101--
7102
7103ALTER TABLE ONLY repositories
7104 ADD CONSTRAINT repositories_name_key UNIQUE (name);
7105
7106
7107--
7108-- Name: repositories_path_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7109--
7110
7111ALTER TABLE ONLY repositories
7112 ADD CONSTRAINT repositories_path_key UNIQUE (path);
7113
7114
7115--
7116-- Name: repositories_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7117--
7118
7119ALTER TABLE ONLY repositories
7120 ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
7121
7122
7123--
7124-- Name: reviewassignmentchanges_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7125--
7126
7127ALTER TABLE ONLY reviewassignmentchanges
7128 ADD CONSTRAINT reviewassignmentchanges_pkey PRIMARY KEY (transaction, file, uid);
7129
7130
7131--
7132-- Name: reviewassignmentstransactions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7133--
7134
7135ALTER TABLE ONLY reviewassignmentstransactions
7136 ADD CONSTRAINT reviewassignmentstransactions_pkey PRIMARY KEY (id);
7137
7138
7139--
7140-- Name: reviewchangesets_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7141--
7142
7143ALTER TABLE ONLY reviewchangesets
7144 ADD CONSTRAINT reviewchangesets_pkey PRIMARY KEY (review, changeset);
7145
7146
7147--
7148-- Name: reviewfiles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7149--
7150
7151ALTER TABLE ONLY reviewfiles
7152 ADD CONSTRAINT reviewfiles_pkey PRIMARY KEY (id);
7153
7154
7155--
7156-- Name: reviewfilters_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7157--
7158
7159ALTER TABLE ONLY reviewfilters
7160 ADD CONSTRAINT reviewfilters_pkey PRIMARY KEY (id);
7161
7162
7163--
7164-- Name: reviewmergeconfirmations_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7165--
7166
7167ALTER TABLE ONLY reviewmergeconfirmations
7168 ADD CONSTRAINT reviewmergeconfirmations_pkey PRIMARY KEY (id);
7169
7170
7171--
7172-- Name: reviewmergeconfirmations_review_uid_merge_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7173--
7174
7175ALTER TABLE ONLY reviewmergeconfirmations
7176 ADD CONSTRAINT reviewmergeconfirmations_review_uid_merge_key UNIQUE (review, uid, merge);
7177
7178
7179--
7180-- Name: reviewmergecontributions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7181--
7182
7183ALTER TABLE ONLY reviewmergecontributions
7184 ADD CONSTRAINT reviewmergecontributions_pkey PRIMARY KEY (id, merged);
7185
7186
7187--
7188-- Name: reviewmessageids_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7189--
7190
7191ALTER TABLE ONLY reviewmessageids
7192 ADD CONSTRAINT reviewmessageids_pkey PRIMARY KEY (uid, review);
7193
7194
7195--
7196-- Name: reviewrebases_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7197--
7198
7199ALTER TABLE ONLY reviewrebases
7200 ADD CONSTRAINT reviewrebases_pkey PRIMARY KEY (id);
7201
7202
7203--
7204-- Name: reviewrebases_review_old_head_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7205--
7206
7207ALTER TABLE ONLY reviewrebases
7208 ADD CONSTRAINT reviewrebases_review_old_head_key UNIQUE (review, old_head);
7209
7210
7211--
7212-- Name: reviewrecipientfilters_review_uid_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7213--
7214
7215ALTER TABLE ONLY reviewrecipientfilters
7216 ADD CONSTRAINT reviewrecipientfilters_review_uid_key UNIQUE (review, uid);
7217
7218
7219--
7220-- Name: reviews_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7221--
7222
7223ALTER TABLE ONLY reviews
7224 ADD CONSTRAINT reviews_pkey PRIMARY KEY (id);
7225
7226
7227--
7228-- Name: reviewuserfiles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7229--
7230
7231ALTER TABLE ONLY reviewuserfiles
7232 ADD CONSTRAINT reviewuserfiles_pkey PRIMARY KEY (file, uid);
7233
7234
7235--
7236-- Name: reviewusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7237--
7238
7239ALTER TABLE ONLY reviewusers
7240 ADD CONSTRAINT reviewusers_pkey PRIMARY KEY (review, uid);
7241
7242
7243--
7244-- Name: roles_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7245--
7246
7247ALTER TABLE ONLY roles
7248 ADD CONSTRAINT roles_pkey PRIMARY KEY (name);
7249
7250
7251--
7252-- Name: scheduledreviewbrancharchivals_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7253--
7254
7255ALTER TABLE ONLY scheduledreviewbrancharchivals
7256 ADD CONSTRAINT scheduledreviewbrancharchivals_pkey PRIMARY KEY (review);
7257
7258
7259--
7260-- Name: systemidentities_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7261--
7262
7263ALTER TABLE ONLY systemidentities
7264 ADD CONSTRAINT systemidentities_name_key UNIQUE (name);
7265
7266
7267--
7268-- Name: systemidentities_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7269--
7270
7271ALTER TABLE ONLY systemidentities
7272 ADD CONSTRAINT systemidentities_pkey PRIMARY KEY (key);
7273
7274
7275--
7276-- Name: tags_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7277--
7278
7279ALTER TABLE ONLY tags
7280 ADD CONSTRAINT tags_pkey PRIMARY KEY (id);
7281
7282
7283--
7284-- Name: tags_repository_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7285--
7286
7287ALTER TABLE ONLY tags
7288 ADD CONSTRAINT tags_repository_name_key UNIQUE (repository, name);
7289
7290
7291--
7292-- Name: timezones_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7293--
7294
7295ALTER TABLE ONLY timezones
7296 ADD CONSTRAINT timezones_pkey PRIMARY KEY (name);
7297
7298
7299--
7300-- Name: trackedbranches_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7301--
7302
7303ALTER TABLE ONLY trackedbranches
7304 ADD CONSTRAINT trackedbranches_pkey PRIMARY KEY (id);
7305
7306
7307--
7308-- Name: trackedbranches_repository_local_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7309--
7310
7311ALTER TABLE ONLY trackedbranches
7312 ADD CONSTRAINT trackedbranches_repository_local_name_key UNIQUE (repository, local_name);
7313
7314
7315--
7316-- Name: trackedbranchusers_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7317--
7318
7319ALTER TABLE ONLY trackedbranchusers
7320 ADD CONSTRAINT trackedbranchusers_pkey PRIMARY KEY (branch, uid);
7321
7322
7323--
7324-- Name: useremails_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7325--
7326
7327ALTER TABLE ONLY useremails
7328 ADD CONSTRAINT useremails_pkey PRIMARY KEY (id);
7329
7330
7331--
7332-- Name: useremails_uid_email_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7333--
7334
7335ALTER TABLE ONLY useremails
7336 ADD CONSTRAINT useremails_uid_email_key UNIQUE (uid, email);
7337
7338
7339--
7340-- Name: usergitemails_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7341--
7342
7343ALTER TABLE ONLY usergitemails
7344 ADD CONSTRAINT usergitemails_pkey PRIMARY KEY (email, uid);
7345
7346
7347--
7348-- Name: userresources_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7349--
7350
7351ALTER TABLE ONLY userresources
7352 ADD CONSTRAINT userresources_pkey PRIMARY KEY (uid, name, revision);
7353
7354
7355--
7356-- Name: users_name_key; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7357--
7358
7359ALTER TABLE ONLY users
7360 ADD CONSTRAINT users_name_key UNIQUE (name);
7361
7362
7363--
7364-- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7365--
7366
7367ALTER TABLE ONLY users
7368 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
7369
7370
7371--
7372-- Name: usersessions_pkey; Type: CONSTRAINT; Schema: public; Owner: critic; Tablespace:
7373--
7374
7375ALTER TABLE ONLY usersessions
7376 ADD CONSTRAINT usersessions_pkey PRIMARY KEY (key);
7377
7378
7379--
7380-- Name: batches_review_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7381--
7382
7383CREATE INDEX batches_review_uid ON batches USING btree (review, uid);
7384
7385
7386--
7387-- Name: changesets_child; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7388--
7389
7390CREATE INDEX changesets_child ON changesets USING btree (child);
7391
7392
7393--
7394-- Name: chunks_changeset_file; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7395--
7396
7397CREATE INDEX chunks_changeset_file ON chunks USING btree (changeset, file);
7398
7399
7400--
7401-- Name: codecontexts_sha1_first_last; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7402--
7403
7404CREATE INDEX codecontexts_sha1_first_last ON codecontexts USING btree (sha1, first_line, last_line);
7405
7406
7407--
7408-- Name: commentchainchanges_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7409--
7410
7411CREATE INDEX commentchainchanges_batch ON commentchainchanges USING btree (batch);
7412
7413
7414--
7415-- Name: commentchainchanges_chain; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7416--
7417
7418CREATE INDEX commentchainchanges_chain ON commentchainchanges USING btree (chain);
7419
7420
7421--
7422-- Name: commentchainlines_chain_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7423--
7424
7425CREATE INDEX commentchainlines_chain_sha1 ON commentchainlines USING btree (chain, sha1);
7426
7427
7428--
7429-- Name: commentchains_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7430--
7431
7432CREATE INDEX commentchains_batch ON commentchains USING btree (batch);
7433
7434
7435--
7436-- Name: commentchains_review_file; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7437--
7438
7439CREATE INDEX commentchains_review_file ON commentchains USING btree (review, file);
7440
7441
7442--
7443-- Name: commentchains_review_type_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7444--
7445
7446CREATE INDEX commentchains_review_type_state ON commentchains USING btree (review, type, state);
7447
7448
7449--
7450-- Name: commentmessageids_comment; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7451--
7452
7453CREATE INDEX commentmessageids_comment ON commentmessageids USING btree (comment);
7454
7455
7456--
7457-- Name: comments_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7458--
7459
7460CREATE INDEX comments_batch ON comments USING btree (batch);
7461
7462
7463--
7464-- Name: comments_chain_uid_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7465--
7466
7467CREATE INDEX comments_chain_uid_state ON comments USING btree (chain, uid, state);
7468
7469
7470--
7471-- Name: comments_id_chain; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7472--
7473
7474CREATE INDEX comments_id_chain ON comments USING btree (id, chain);
7475
7476
7477--
7478-- Name: commentstoread_comment; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7479--
7480
7481CREATE INDEX commentstoread_comment ON commentstoread USING btree (comment);
7482
7483
7484--
7485-- Name: edges_child; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7486--
7487
7488CREATE INDEX edges_child ON edges USING btree (child);
7489
7490
7491--
7492-- Name: edges_parent; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7493--
7494
7495CREATE INDEX edges_parent ON edges USING btree (parent);
7496
7497
7498--
7499-- Name: extensionfilterhookcommits_event; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7500--
7501
7502CREATE INDEX extensionfilterhookcommits_event ON extensionfilterhookcommits USING btree (event);
7503
7504
7505--
7506-- Name: extensionfilterhookfiles_event; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7507--
7508
7509CREATE INDEX extensionfilterhookfiles_event ON extensionfilterhookfiles USING btree (event);
7510
7511
7512--
7513-- Name: extensionhookfilters_repository; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7514--
7515
7516CREATE INDEX extensionhookfilters_repository ON extensionhookfilters USING btree (repository);
7517
7518
7519--
7520-- Name: extensionhookfilters_uid_extension; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7521--
7522
7523CREATE INDEX extensionhookfilters_uid_extension ON extensionhookfilters USING btree (uid, extension);
7524
7525
7526--
7527-- Name: extensionlog_extension_uid_category; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7528--
7529
7530CREATE INDEX extensionlog_extension_uid_category ON extensionlog USING btree (extension, uid, category);
7531
7532
7533--
7534-- Name: files_path_gin; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7535--
7536
7537CREATE INDEX files_path_gin ON files USING gin (string_to_array(path, '/'::text));
7538
7539
7540--
7541-- Name: files_path_md5; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7542--
7543
7544CREATE UNIQUE INDEX files_path_md5 ON files USING btree (md5(path));
7545
7546
7547--
7548-- Name: fileversions_new_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7549--
7550
7551CREATE INDEX fileversions_new_sha1 ON fileversions USING btree (file, new_sha1);
7552
7553
7554--
7555-- Name: fileversions_old_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7556--
7557
7558CREATE INDEX fileversions_old_sha1 ON fileversions USING btree (file, old_sha1);
7559
7560
7561--
7562-- Name: filters_uid_repository_path_md5; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7563--
7564
7565CREATE UNIQUE INDEX filters_uid_repository_path_md5 ON filters USING btree (uid, repository, md5(path));
7566
7567
7568--
7569-- Name: previousreachable_rebase; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7570--
7571
7572CREATE INDEX previousreachable_rebase ON previousreachable USING btree (rebase);
7573
7574
7575--
7576-- Name: reachable_branch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7577--
7578
7579CREATE INDEX reachable_branch ON reachable USING btree (branch);
7580
7581
7582--
7583-- Name: reachable_commit; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7584--
7585
7586CREATE INDEX reachable_commit ON reachable USING btree (commit);
7587
7588
7589--
7590-- Name: reviewfilechanges_batch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7591--
7592
7593CREATE INDEX reviewfilechanges_batch ON reviewfilechanges USING btree (batch);
7594
7595
7596--
7597-- Name: reviewfilechanges_file; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7598--
7599
7600CREATE INDEX reviewfilechanges_file ON reviewfilechanges USING btree (file);
7601
7602
7603--
7604-- Name: reviewfilechanges_time; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7605--
7606
7607CREATE INDEX reviewfilechanges_time ON reviewfilechanges USING btree ("time");
7608
7609
7610--
7611-- Name: reviewfilechanges_uid_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7612--
7613
7614CREATE INDEX reviewfilechanges_uid_state ON reviewfilechanges USING btree (uid, state);
7615
7616
7617--
7618-- Name: reviewfiles_review_changeset; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7619--
7620
7621CREATE INDEX reviewfiles_review_changeset ON reviewfiles USING btree (review, changeset);
7622
7623
7624--
7625-- Name: reviewfiles_review_state; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7626--
7627
7628CREATE INDEX reviewfiles_review_state ON reviewfiles USING btree (review, state);
7629
7630
7631--
7632-- Name: reviewfilters_review_uid_path_md5; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7633--
7634
7635CREATE UNIQUE INDEX reviewfilters_review_uid_path_md5 ON reviewfilters USING btree (review, uid, md5(path));
7636
7637
7638--
7639-- Name: reviewmessageids_review; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7640--
7641
7642CREATE INDEX reviewmessageids_review ON reviewmessageids USING btree (review);
7643
7644
7645--
7646-- Name: reviews_branch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7647--
7648
7649CREATE INDEX reviews_branch ON reviews USING btree (branch);
7650
7651
7652--
7653-- Name: reviewuserfiles_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7654--
7655
7656CREATE INDEX reviewuserfiles_uid ON reviewuserfiles USING btree (uid);
7657
7658
7659--
7660-- Name: reviewusers_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7661--
7662
7663CREATE INDEX reviewusers_uid ON reviewusers USING btree (uid);
7664
7665
7666--
7667-- Name: tags_repository_sha1; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7668--
7669
7670CREATE INDEX tags_repository_sha1 ON tags USING btree (repository, sha1);
7671
7672
7673--
7674-- Name: trackedbranchlog_branch; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7675--
7676
7677CREATE INDEX trackedbranchlog_branch ON trackedbranchlog USING btree (branch);
7678
7679
7680--
7681-- Name: userabsence_uid_until; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7682--
7683
7684CREATE INDEX userabsence_uid_until ON userabsence USING btree (uid, until);
7685
7686
7687--
7688-- Name: usergitemails_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7689--
7690
7691CREATE INDEX usergitemails_uid ON usergitemails USING btree (uid);
7692
7693
7694--
7695-- Name: userpreferences_item; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7696--
7697
7698CREATE UNIQUE INDEX userpreferences_item ON userpreferences USING btree (item) WHERE (((uid IS NULL) AND (repository IS NULL)) AND (filter IS NULL));
7699
7700
7701--
7702-- Name: userpreferences_item_repository; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7703--
7704
7705CREATE UNIQUE INDEX userpreferences_item_repository ON userpreferences USING btree (item, repository) WHERE (((uid IS NULL) AND (repository IS NOT NULL)) AND (filter IS NULL));
7706
7707
7708--
7709-- Name: userpreferences_item_uid; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7710--
7711
7712CREATE UNIQUE INDEX userpreferences_item_uid ON userpreferences USING btree (item, uid) WHERE (((uid IS NOT NULL) AND (repository IS NULL)) AND (filter IS NULL));
7713
7714
7715--
7716-- Name: userpreferences_item_uid_filter; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7717--
7718
7719CREATE UNIQUE INDEX userpreferences_item_uid_filter ON userpreferences USING btree (item, uid, filter) WHERE (((uid IS NOT NULL) AND (repository IS NULL)) AND (filter IS NOT NULL));
7720
7721
7722--
7723-- Name: userpreferences_item_uid_repository; Type: INDEX; Schema: public; Owner: critic; Tablespace:
7724--
7725
7726CREATE UNIQUE INDEX userpreferences_item_uid_repository ON userpreferences USING btree (item, uid, repository) WHERE (((uid IS NOT NULL) AND (repository IS NOT NULL)) AND (filter IS NULL));
7727
7728
7729--
7730-- Name: batches_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7731--
7732
7733ALTER TABLE ONLY batches
7734 ADD CONSTRAINT batches_comment_fkey FOREIGN KEY (comment) REFERENCES commentchains(id) ON DELETE CASCADE;
7735
7736
7737--
7738-- Name: batches_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7739--
7740
7741ALTER TABLE ONLY batches
7742 ADD CONSTRAINT batches_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
7743
7744
7745--
7746-- Name: batches_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7747--
7748
7749ALTER TABLE ONLY batches
7750 ADD CONSTRAINT batches_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
7751
7752
7753--
7754-- Name: branches_base_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7755--
7756
7757ALTER TABLE ONLY branches
7758 ADD CONSTRAINT branches_base_fkey FOREIGN KEY (base) REFERENCES branches(id);
7759
7760
7761--
7762-- Name: branches_head_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7763--
7764
7765ALTER TABLE ONLY branches
7766 ADD CONSTRAINT branches_head_fkey FOREIGN KEY (head) REFERENCES commits(id);
7767
7768
7769--
7770-- Name: branches_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7771--
7772
7773ALTER TABLE ONLY branches
7774 ADD CONSTRAINT branches_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
7775
7776
7777--
7778-- Name: branches_tail_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7779--
7780
7781ALTER TABLE ONLY branches
7782 ADD CONSTRAINT branches_tail_fkey FOREIGN KEY (tail) REFERENCES commits(id);
7783
7784
7785--
7786-- Name: changesets_child_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7787--
7788
7789ALTER TABLE ONLY changesets
7790 ADD CONSTRAINT changesets_child_fkey FOREIGN KEY (child) REFERENCES commits(id) ON DELETE CASCADE;
7791
7792
7793--
7794-- Name: changesets_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7795--
7796
7797ALTER TABLE ONLY changesets
7798 ADD CONSTRAINT changesets_parent_fkey FOREIGN KEY (parent) REFERENCES commits(id) ON DELETE CASCADE;
7799
7800
7801--
7802-- Name: checkbranchnotes_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7803--
7804
7805ALTER TABLE ONLY checkbranchnotes
7806 ADD CONSTRAINT checkbranchnotes_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
7807
7808
7809--
7810-- Name: checkbranchnotes_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7811--
7812
7813ALTER TABLE ONLY checkbranchnotes
7814 ADD CONSTRAINT checkbranchnotes_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE SET NULL;
7815
7816
7817--
7818-- Name: checkbranchnotes_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7819--
7820
7821ALTER TABLE ONLY checkbranchnotes
7822 ADD CONSTRAINT checkbranchnotes_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
7823
7824
7825--
7826-- Name: chunks_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7827--
7828
7829ALTER TABLE ONLY chunks
7830 ADD CONSTRAINT chunks_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
7831
7832
7833--
7834-- Name: chunks_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7835--
7836
7837ALTER TABLE ONLY chunks
7838 ADD CONSTRAINT chunks_file_fkey FOREIGN KEY (file) REFERENCES files(id);
7839
7840
7841--
7842-- Name: commentchainchanges_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7843--
7844
7845ALTER TABLE ONLY commentchainchanges
7846 ADD CONSTRAINT commentchainchanges_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id) ON DELETE CASCADE;
7847
7848
7849--
7850-- Name: commentchainchanges_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7851--
7852
7853ALTER TABLE ONLY commentchainchanges
7854 ADD CONSTRAINT commentchainchanges_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
7855
7856
7857--
7858-- Name: commentchainchanges_from_addressed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7859--
7860
7861ALTER TABLE ONLY commentchainchanges
7862 ADD CONSTRAINT commentchainchanges_from_addressed_by_fkey FOREIGN KEY (from_addressed_by) REFERENCES commits(id);
7863
7864
7865--
7866-- Name: commentchainchanges_from_last_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7867--
7868
7869ALTER TABLE ONLY commentchainchanges
7870 ADD CONSTRAINT commentchainchanges_from_last_commit_fkey FOREIGN KEY (from_last_commit) REFERENCES commits(id);
7871
7872
7873--
7874-- Name: commentchainchanges_to_addressed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7875--
7876
7877ALTER TABLE ONLY commentchainchanges
7878 ADD CONSTRAINT commentchainchanges_to_addressed_by_fkey FOREIGN KEY (to_addressed_by) REFERENCES commits(id);
7879
7880
7881--
7882-- Name: commentchainchanges_to_last_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7883--
7884
7885ALTER TABLE ONLY commentchainchanges
7886 ADD CONSTRAINT commentchainchanges_to_last_commit_fkey FOREIGN KEY (to_last_commit) REFERENCES commits(id);
7887
7888
7889--
7890-- Name: commentchainchanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7891--
7892
7893ALTER TABLE ONLY commentchainchanges
7894 ADD CONSTRAINT commentchainchanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
7895
7896
7897--
7898-- Name: commentchainlines_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7899--
7900
7901ALTER TABLE ONLY commentchainlines
7902 ADD CONSTRAINT commentchainlines_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
7903
7904
7905--
7906-- Name: commentchainlines_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7907--
7908
7909ALTER TABLE ONLY commentchainlines
7910 ADD CONSTRAINT commentchainlines_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
7911
7912
7913--
7914-- Name: commentchains_addressed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7915--
7916
7917ALTER TABLE ONLY commentchains
7918 ADD CONSTRAINT commentchains_addressed_by_fkey FOREIGN KEY (addressed_by) REFERENCES commits(id);
7919
7920
7921--
7922-- Name: commentchains_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7923--
7924
7925ALTER TABLE ONLY commentchains
7926 ADD CONSTRAINT commentchains_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id) ON DELETE CASCADE;
7927
7928
7929--
7930-- Name: commentchains_closed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7931--
7932
7933ALTER TABLE ONLY commentchains
7934 ADD CONSTRAINT commentchains_closed_by_fkey FOREIGN KEY (closed_by) REFERENCES users(id);
7935
7936
7937--
7938-- Name: commentchains_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7939--
7940
7941ALTER TABLE ONLY commentchains
7942 ADD CONSTRAINT commentchains_file_fkey FOREIGN KEY (file) REFERENCES files(id);
7943
7944
7945--
7946-- Name: commentchains_first_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7947--
7948
7949ALTER TABLE ONLY commentchains
7950 ADD CONSTRAINT commentchains_first_comment_fkey FOREIGN KEY (first_comment) REFERENCES comments(id);
7951
7952
7953--
7954-- Name: commentchains_first_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7955--
7956
7957ALTER TABLE ONLY commentchains
7958 ADD CONSTRAINT commentchains_first_commit_fkey FOREIGN KEY (first_commit) REFERENCES commits(id);
7959
7960
7961--
7962-- Name: commentchains_last_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7963--
7964
7965ALTER TABLE ONLY commentchains
7966 ADD CONSTRAINT commentchains_last_commit_fkey FOREIGN KEY (last_commit) REFERENCES commits(id);
7967
7968
7969--
7970-- Name: commentchains_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7971--
7972
7973ALTER TABLE ONLY commentchains
7974 ADD CONSTRAINT commentchains_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
7975
7976
7977--
7978-- Name: commentchains_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7979--
7980
7981ALTER TABLE ONLY commentchains
7982 ADD CONSTRAINT commentchains_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
7983
7984
7985--
7986-- Name: commentchainusers_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7987--
7988
7989ALTER TABLE ONLY commentchainusers
7990 ADD CONSTRAINT commentchainusers_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
7991
7992
7993--
7994-- Name: commentchainusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
7995--
7996
7997ALTER TABLE ONLY commentchainusers
7998 ADD CONSTRAINT commentchainusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
7999
8000
8001--
8002-- Name: commentmessageids_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8003--
8004
8005ALTER TABLE ONLY commentmessageids
8006 ADD CONSTRAINT commentmessageids_comment_fkey FOREIGN KEY (comment) REFERENCES comments(id) ON DELETE CASCADE;
8007
8008
8009--
8010-- Name: commentmessageids_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8011--
8012
8013ALTER TABLE ONLY commentmessageids
8014 ADD CONSTRAINT commentmessageids_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8015
8016
8017--
8018-- Name: comments_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8019--
8020
8021ALTER TABLE ONLY comments
8022 ADD CONSTRAINT comments_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id) ON DELETE CASCADE;
8023
8024
8025--
8026-- Name: comments_chain_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8027--
8028
8029ALTER TABLE ONLY comments
8030 ADD CONSTRAINT comments_chain_fkey FOREIGN KEY (chain) REFERENCES commentchains(id) ON DELETE CASCADE;
8031
8032
8033--
8034-- Name: comments_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8035--
8036
8037ALTER TABLE ONLY comments
8038 ADD CONSTRAINT comments_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8039
8040
8041--
8042-- Name: commentstoread_comment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8043--
8044
8045ALTER TABLE ONLY commentstoread
8046 ADD CONSTRAINT commentstoread_comment_fkey FOREIGN KEY (comment) REFERENCES comments(id) ON DELETE CASCADE;
8047
8048
8049--
8050-- Name: commentstoread_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8051--
8052
8053ALTER TABLE ONLY commentstoread
8054 ADD CONSTRAINT commentstoread_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8055
8056
8057--
8058-- Name: commits_author_gituser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8059--
8060
8061ALTER TABLE ONLY commits
8062 ADD CONSTRAINT commits_author_gituser_fkey FOREIGN KEY (author_gituser) REFERENCES gitusers(id);
8063
8064
8065--
8066-- Name: commits_commit_gituser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8067--
8068
8069ALTER TABLE ONLY commits
8070 ADD CONSTRAINT commits_commit_gituser_fkey FOREIGN KEY (commit_gituser) REFERENCES gitusers(id);
8071
8072
8073--
8074-- Name: customchangesets_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8075--
8076
8077ALTER TABLE ONLY customchangesets
8078 ADD CONSTRAINT customchangesets_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
8079
8080
8081--
8082-- Name: edges_child_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8083--
8084
8085ALTER TABLE ONLY edges
8086 ADD CONSTRAINT edges_child_fkey FOREIGN KEY (child) REFERENCES commits(id) ON DELETE CASCADE;
8087
8088
8089--
8090-- Name: edges_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8091--
8092
8093ALTER TABLE ONLY edges
8094 ADD CONSTRAINT edges_parent_fkey FOREIGN KEY (parent) REFERENCES commits(id) ON DELETE CASCADE;
8095
8096
8097--
8098-- Name: extensionfilterhookcommits_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8099--
8100
8101ALTER TABLE ONLY extensionfilterhookcommits
8102 ADD CONSTRAINT extensionfilterhookcommits_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id);
8103
8104
8105--
8106-- Name: extensionfilterhookcommits_event_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8107--
8108
8109ALTER TABLE ONLY extensionfilterhookcommits
8110 ADD CONSTRAINT extensionfilterhookcommits_event_fkey FOREIGN KEY (event) REFERENCES extensionfilterhookevents(id) ON DELETE CASCADE;
8111
8112
8113--
8114-- Name: extensionfilterhookevents_filter_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8115--
8116
8117ALTER TABLE ONLY extensionfilterhookevents
8118 ADD CONSTRAINT extensionfilterhookevents_filter_fkey FOREIGN KEY (filter) REFERENCES extensionhookfilters(id) ON DELETE CASCADE;
8119
8120
8121--
8122-- Name: extensionfilterhookevents_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8123--
8124
8125ALTER TABLE ONLY extensionfilterhookevents
8126 ADD CONSTRAINT extensionfilterhookevents_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8127
8128
8129--
8130-- Name: extensionfilterhookevents_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8131--
8132
8133ALTER TABLE ONLY extensionfilterhookevents
8134 ADD CONSTRAINT extensionfilterhookevents_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8135
8136
8137--
8138-- Name: extensionfilterhookfiles_event_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8139--
8140
8141ALTER TABLE ONLY extensionfilterhookfiles
8142 ADD CONSTRAINT extensionfilterhookfiles_event_fkey FOREIGN KEY (event) REFERENCES extensionfilterhookevents(id) ON DELETE CASCADE;
8143
8144
8145--
8146-- Name: extensionfilterhookfiles_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8147--
8148
8149ALTER TABLE ONLY extensionfilterhookfiles
8150 ADD CONSTRAINT extensionfilterhookfiles_file_fkey FOREIGN KEY (file) REFERENCES files(id);
8151
8152
8153--
8154-- Name: extensionfilterhookroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8155--
8156
8157ALTER TABLE ONLY extensionfilterhookroles
8158 ADD CONSTRAINT extensionfilterhookroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
8159
8160
8161--
8162-- Name: extensionhookfilters_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8163--
8164
8165ALTER TABLE ONLY extensionhookfilters
8166 ADD CONSTRAINT extensionhookfilters_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id) ON DELETE CASCADE;
8167
8168
8169--
8170-- Name: extensionhookfilters_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8171--
8172
8173ALTER TABLE ONLY extensionhookfilters
8174 ADD CONSTRAINT extensionhookfilters_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
8175
8176
8177--
8178-- Name: extensionhookfilters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8179--
8180
8181ALTER TABLE ONLY extensionhookfilters
8182 ADD CONSTRAINT extensionhookfilters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8183
8184
8185--
8186-- Name: extensioninjectroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8187--
8188
8189ALTER TABLE ONLY extensioninjectroles
8190 ADD CONSTRAINT extensioninjectroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
8191
8192
8193--
8194-- Name: extensioninstalls_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8195--
8196
8197ALTER TABLE ONLY extensioninstalls
8198 ADD CONSTRAINT extensioninstalls_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
8199
8200
8201--
8202-- Name: extensioninstalls_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8203--
8204
8205ALTER TABLE ONLY extensioninstalls
8206 ADD CONSTRAINT extensioninstalls_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8207
8208
8209--
8210-- Name: extensioninstalls_version_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8211--
8212
8213ALTER TABLE ONLY extensioninstalls
8214 ADD CONSTRAINT extensioninstalls_version_fkey FOREIGN KEY (version) REFERENCES extensionversions(id);
8215
8216
8217--
8218-- Name: extensionlog_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8219--
8220
8221ALTER TABLE ONLY extensionlog
8222 ADD CONSTRAINT extensionlog_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
8223
8224
8225--
8226-- Name: extensionlog_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8227--
8228
8229ALTER TABLE ONLY extensionlog
8230 ADD CONSTRAINT extensionlog_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8231
8232
8233--
8234-- Name: extensionpageroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8235--
8236
8237ALTER TABLE ONLY extensionpageroles
8238 ADD CONSTRAINT extensionpageroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
8239
8240
8241--
8242-- Name: extensionprocesscommitsroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8243--
8244
8245ALTER TABLE ONLY extensionprocesscommitsroles
8246 ADD CONSTRAINT extensionprocesscommitsroles_role_fkey FOREIGN KEY (role) REFERENCES extensionroles(id) ON DELETE CASCADE;
8247
8248
8249--
8250-- Name: extensionroles_version_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8251--
8252
8253ALTER TABLE ONLY extensionroles
8254 ADD CONSTRAINT extensionroles_version_fkey FOREIGN KEY (version) REFERENCES extensionversions(id);
8255
8256
8257--
8258-- Name: extensions_author_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8259--
8260
8261ALTER TABLE ONLY extensions
8262 ADD CONSTRAINT extensions_author_fkey FOREIGN KEY (author) REFERENCES users(id);
8263
8264
8265--
8266-- Name: extensionstorage_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8267--
8268
8269ALTER TABLE ONLY extensionstorage
8270 ADD CONSTRAINT extensionstorage_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
8271
8272
8273--
8274-- Name: extensionstorage_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8275--
8276
8277ALTER TABLE ONLY extensionstorage
8278 ADD CONSTRAINT extensionstorage_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8279
8280
8281--
8282-- Name: extensionversions_extension_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8283--
8284
8285ALTER TABLE ONLY extensionversions
8286 ADD CONSTRAINT extensionversions_extension_fkey FOREIGN KEY (extension) REFERENCES extensions(id);
8287
8288
8289--
8290-- Name: externalusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8291--
8292
8293ALTER TABLE ONLY externalusers
8294 ADD CONSTRAINT externalusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8295
8296
8297--
8298-- Name: fileversions_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8299--
8300
8301ALTER TABLE ONLY fileversions
8302 ADD CONSTRAINT fileversions_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
8303
8304
8305--
8306-- Name: fileversions_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8307--
8308
8309ALTER TABLE ONLY fileversions
8310 ADD CONSTRAINT fileversions_file_fkey FOREIGN KEY (file) REFERENCES files(id);
8311
8312
8313--
8314-- Name: filters_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8315--
8316
8317ALTER TABLE ONLY filters
8318 ADD CONSTRAINT filters_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
8319
8320
8321--
8322-- Name: filters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8323--
8324
8325ALTER TABLE ONLY filters
8326 ADD CONSTRAINT filters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8327
8328
8329--
8330-- Name: lockedreviews_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8331--
8332
8333ALTER TABLE ONLY lockedreviews
8334 ADD CONSTRAINT lockedreviews_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
8335
8336
8337--
8338-- Name: mergebases_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8339--
8340
8341ALTER TABLE ONLY mergebases
8342 ADD CONSTRAINT mergebases_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id) ON DELETE CASCADE;
8343
8344
8345--
8346-- Name: mergereplays_original_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8347--
8348
8349ALTER TABLE ONLY mergereplays
8350 ADD CONSTRAINT mergereplays_original_fkey FOREIGN KEY (original) REFERENCES commits(id) ON DELETE CASCADE;
8351
8352
8353--
8354-- Name: mergereplays_replay_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8355--
8356
8357ALTER TABLE ONLY mergereplays
8358 ADD CONSTRAINT mergereplays_replay_fkey FOREIGN KEY (replay) REFERENCES commits(id) ON DELETE CASCADE;
8359
8360
8361--
8362-- Name: newsread_item_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8363--
8364
8365ALTER TABLE ONLY newsread
8366 ADD CONSTRAINT newsread_item_fkey FOREIGN KEY (item) REFERENCES newsitems(id) ON DELETE CASCADE;
8367
8368
8369--
8370-- Name: newsread_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8371--
8372
8373ALTER TABLE ONLY newsread
8374 ADD CONSTRAINT newsread_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8375
8376
8377--
8378-- Name: previousreachable_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8379--
8380
8381ALTER TABLE ONLY previousreachable
8382 ADD CONSTRAINT previousreachable_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id);
8383
8384
8385--
8386-- Name: previousreachable_rebase_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8387--
8388
8389ALTER TABLE ONLY previousreachable
8390 ADD CONSTRAINT previousreachable_rebase_fkey FOREIGN KEY (rebase) REFERENCES reviewrebases(id) ON DELETE CASCADE;
8391
8392
8393--
8394-- Name: reachable_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8395--
8396
8397ALTER TABLE ONLY reachable
8398 ADD CONSTRAINT reachable_branch_fkey FOREIGN KEY (branch) REFERENCES branches(id) ON DELETE CASCADE;
8399
8400
8401--
8402-- Name: reachable_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8403--
8404
8405ALTER TABLE ONLY reachable
8406 ADD CONSTRAINT reachable_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id);
8407
8408
8409--
8410-- Name: relevantcommits_commit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8411--
8412
8413ALTER TABLE ONLY relevantcommits
8414 ADD CONSTRAINT relevantcommits_commit_fkey FOREIGN KEY (commit) REFERENCES commits(id) ON DELETE CASCADE;
8415
8416
8417--
8418-- Name: relevantcommits_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8419--
8420
8421ALTER TABLE ONLY relevantcommits
8422 ADD CONSTRAINT relevantcommits_file_fkey FOREIGN KEY (file) REFERENCES files(id);
8423
8424
8425--
8426-- Name: relevantcommits_relevant_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8427--
8428
8429ALTER TABLE ONLY relevantcommits
8430 ADD CONSTRAINT relevantcommits_relevant_fkey FOREIGN KEY (relevant) REFERENCES commits(id) ON DELETE CASCADE;
8431
8432
8433--
8434-- Name: repositories_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8435--
8436
8437ALTER TABLE ONLY repositories
8438 ADD CONSTRAINT repositories_parent_fkey FOREIGN KEY (parent) REFERENCES repositories(id);
8439
8440
8441--
8442-- Name: reviewassignmentchanges_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8443--
8444
8445ALTER TABLE ONLY reviewassignmentchanges
8446 ADD CONSTRAINT reviewassignmentchanges_file_fkey FOREIGN KEY (file) REFERENCES reviewfiles(id) ON DELETE CASCADE;
8447
8448
8449--
8450-- Name: reviewassignmentchanges_transaction_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8451--
8452
8453ALTER TABLE ONLY reviewassignmentchanges
8454 ADD CONSTRAINT reviewassignmentchanges_transaction_fkey FOREIGN KEY (transaction) REFERENCES reviewassignmentstransactions(id);
8455
8456
8457--
8458-- Name: reviewassignmentchanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8459--
8460
8461ALTER TABLE ONLY reviewassignmentchanges
8462 ADD CONSTRAINT reviewassignmentchanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8463
8464
8465--
8466-- Name: reviewassignmentstransactions_assigner_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8467--
8468
8469ALTER TABLE ONLY reviewassignmentstransactions
8470 ADD CONSTRAINT reviewassignmentstransactions_assigner_fkey FOREIGN KEY (assigner) REFERENCES users(id);
8471
8472
8473--
8474-- Name: reviewassignmentstransactions_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8475--
8476
8477ALTER TABLE ONLY reviewassignmentstransactions
8478 ADD CONSTRAINT reviewassignmentstransactions_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8479
8480
8481--
8482-- Name: reviewchangesets_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8483--
8484
8485ALTER TABLE ONLY reviewchangesets
8486 ADD CONSTRAINT reviewchangesets_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id);
8487
8488
8489--
8490-- Name: reviewchangesets_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8491--
8492
8493ALTER TABLE ONLY reviewchangesets
8494 ADD CONSTRAINT reviewchangesets_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8495
8496
8497--
8498-- Name: reviewfilechanges_batch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8499--
8500
8501ALTER TABLE ONLY reviewfilechanges
8502 ADD CONSTRAINT reviewfilechanges_batch_fkey FOREIGN KEY (batch) REFERENCES batches(id);
8503
8504
8505--
8506-- Name: reviewfilechanges_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8507--
8508
8509ALTER TABLE ONLY reviewfilechanges
8510 ADD CONSTRAINT reviewfilechanges_file_fkey FOREIGN KEY (file) REFERENCES reviewfiles(id);
8511
8512
8513--
8514-- Name: reviewfilechanges_file_fkey1; Type: FK CONSTRAINT; Schema: public; Owner: critic
8515--
8516
8517ALTER TABLE ONLY reviewfilechanges
8518 ADD CONSTRAINT reviewfilechanges_file_fkey1 FOREIGN KEY (file, uid) REFERENCES reviewuserfiles(file, uid) ON DELETE CASCADE;
8519
8520
8521--
8522-- Name: reviewfilechanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8523--
8524
8525ALTER TABLE ONLY reviewfilechanges
8526 ADD CONSTRAINT reviewfilechanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8527
8528
8529--
8530-- Name: reviewfiles_changeset_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8531--
8532
8533ALTER TABLE ONLY reviewfiles
8534 ADD CONSTRAINT reviewfiles_changeset_fkey FOREIGN KEY (changeset) REFERENCES changesets(id) ON DELETE CASCADE;
8535
8536
8537--
8538-- Name: reviewfiles_changeset_fkey1; Type: FK CONSTRAINT; Schema: public; Owner: critic
8539--
8540
8541ALTER TABLE ONLY reviewfiles
8542 ADD CONSTRAINT reviewfiles_changeset_fkey1 FOREIGN KEY (changeset, file) REFERENCES fileversions(changeset, file) ON DELETE CASCADE;
8543
8544
8545--
8546-- Name: reviewfiles_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8547--
8548
8549ALTER TABLE ONLY reviewfiles
8550 ADD CONSTRAINT reviewfiles_file_fkey FOREIGN KEY (file) REFERENCES files(id) ON DELETE CASCADE;
8551
8552
8553--
8554-- Name: reviewfiles_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8555--
8556
8557ALTER TABLE ONLY reviewfiles
8558 ADD CONSTRAINT reviewfiles_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8559
8560
8561--
8562-- Name: reviewfiles_review_fkey1; Type: FK CONSTRAINT; Schema: public; Owner: critic
8563--
8564
8565ALTER TABLE ONLY reviewfiles
8566 ADD CONSTRAINT reviewfiles_review_fkey1 FOREIGN KEY (review, changeset) REFERENCES reviewchangesets(review, changeset) ON DELETE CASCADE;
8567
8568
8569--
8570-- Name: reviewfiles_reviewer_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8571--
8572
8573ALTER TABLE ONLY reviewfiles
8574 ADD CONSTRAINT reviewfiles_reviewer_fkey FOREIGN KEY (reviewer) REFERENCES users(id) ON DELETE SET NULL;
8575
8576
8577--
8578-- Name: reviewfilterchanges_transaction_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8579--
8580
8581ALTER TABLE ONLY reviewfilterchanges
8582 ADD CONSTRAINT reviewfilterchanges_transaction_fkey FOREIGN KEY (transaction) REFERENCES reviewassignmentstransactions(id) ON DELETE CASCADE;
8583
8584
8585--
8586-- Name: reviewfilterchanges_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8587--
8588
8589ALTER TABLE ONLY reviewfilterchanges
8590 ADD CONSTRAINT reviewfilterchanges_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8591
8592
8593--
8594-- Name: reviewfilters_creator_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8595--
8596
8597ALTER TABLE ONLY reviewfilters
8598 ADD CONSTRAINT reviewfilters_creator_fkey FOREIGN KEY (creator) REFERENCES users(id) ON DELETE CASCADE;
8599
8600
8601--
8602-- Name: reviewfilters_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8603--
8604
8605ALTER TABLE ONLY reviewfilters
8606 ADD CONSTRAINT reviewfilters_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8607
8608
8609--
8610-- Name: reviewfilters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8611--
8612
8613ALTER TABLE ONLY reviewfilters
8614 ADD CONSTRAINT reviewfilters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8615
8616
8617--
8618-- Name: reviewmergeconfirmations_merge_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8619--
8620
8621ALTER TABLE ONLY reviewmergeconfirmations
8622 ADD CONSTRAINT reviewmergeconfirmations_merge_fkey FOREIGN KEY (merge) REFERENCES commits(id) ON DELETE CASCADE;
8623
8624
8625--
8626-- Name: reviewmergeconfirmations_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8627--
8628
8629ALTER TABLE ONLY reviewmergeconfirmations
8630 ADD CONSTRAINT reviewmergeconfirmations_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8631
8632
8633--
8634-- Name: reviewmergeconfirmations_tail_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8635--
8636
8637ALTER TABLE ONLY reviewmergeconfirmations
8638 ADD CONSTRAINT reviewmergeconfirmations_tail_fkey FOREIGN KEY (tail) REFERENCES commits(id) ON DELETE CASCADE;
8639
8640
8641--
8642-- Name: reviewmergeconfirmations_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8643--
8644
8645ALTER TABLE ONLY reviewmergeconfirmations
8646 ADD CONSTRAINT reviewmergeconfirmations_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8647
8648
8649--
8650-- Name: reviewmergecontributions_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8651--
8652
8653ALTER TABLE ONLY reviewmergecontributions
8654 ADD CONSTRAINT reviewmergecontributions_id_fkey FOREIGN KEY (id) REFERENCES reviewmergeconfirmations(id) ON DELETE CASCADE;
8655
8656
8657--
8658-- Name: reviewmergecontributions_merged_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8659--
8660
8661ALTER TABLE ONLY reviewmergecontributions
8662 ADD CONSTRAINT reviewmergecontributions_merged_fkey FOREIGN KEY (merged) REFERENCES commits(id) ON DELETE CASCADE;
8663
8664
8665--
8666-- Name: reviewmessageids_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8667--
8668
8669ALTER TABLE ONLY reviewmessageids
8670 ADD CONSTRAINT reviewmessageids_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8671
8672
8673--
8674-- Name: reviewmessageids_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8675--
8676
8677ALTER TABLE ONLY reviewmessageids
8678 ADD CONSTRAINT reviewmessageids_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8679
8680
8681--
8682-- Name: reviewrebases_equivalent_merge_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8683--
8684
8685ALTER TABLE ONLY reviewrebases
8686 ADD CONSTRAINT reviewrebases_equivalent_merge_fkey FOREIGN KEY (equivalent_merge) REFERENCES commits(id);
8687
8688
8689--
8690-- Name: reviewrebases_new_head_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8691--
8692
8693ALTER TABLE ONLY reviewrebases
8694 ADD CONSTRAINT reviewrebases_new_head_fkey FOREIGN KEY (new_head) REFERENCES commits(id);
8695
8696
8697--
8698-- Name: reviewrebases_new_upstream_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8699--
8700
8701ALTER TABLE ONLY reviewrebases
8702 ADD CONSTRAINT reviewrebases_new_upstream_fkey FOREIGN KEY (new_upstream) REFERENCES commits(id);
8703
8704
8705--
8706-- Name: reviewrebases_old_head_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8707--
8708
8709ALTER TABLE ONLY reviewrebases
8710 ADD CONSTRAINT reviewrebases_old_head_fkey FOREIGN KEY (old_head) REFERENCES commits(id);
8711
8712
8713--
8714-- Name: reviewrebases_old_upstream_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8715--
8716
8717ALTER TABLE ONLY reviewrebases
8718 ADD CONSTRAINT reviewrebases_old_upstream_fkey FOREIGN KEY (old_upstream) REFERENCES commits(id);
8719
8720
8721--
8722-- Name: reviewrebases_replayed_rebase_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8723--
8724
8725ALTER TABLE ONLY reviewrebases
8726 ADD CONSTRAINT reviewrebases_replayed_rebase_fkey FOREIGN KEY (replayed_rebase) REFERENCES commits(id);
8727
8728
8729--
8730-- Name: reviewrebases_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8731--
8732
8733ALTER TABLE ONLY reviewrebases
8734 ADD CONSTRAINT reviewrebases_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8735
8736
8737--
8738-- Name: reviewrebases_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8739--
8740
8741ALTER TABLE ONLY reviewrebases
8742 ADD CONSTRAINT reviewrebases_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8743
8744
8745--
8746-- Name: reviewrecipientfilters_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8747--
8748
8749ALTER TABLE ONLY reviewrecipientfilters
8750 ADD CONSTRAINT reviewrecipientfilters_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
8751
8752
8753--
8754-- Name: reviewrecipientfilters_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8755--
8756
8757ALTER TABLE ONLY reviewrecipientfilters
8758 ADD CONSTRAINT reviewrecipientfilters_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8759
8760
8761--
8762-- Name: reviews_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8763--
8764
8765ALTER TABLE ONLY reviews
8766 ADD CONSTRAINT reviews_branch_fkey FOREIGN KEY (branch) REFERENCES branches(id);
8767
8768
8769--
8770-- Name: reviews_closed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8771--
8772
8773ALTER TABLE ONLY reviews
8774 ADD CONSTRAINT reviews_closed_by_fkey FOREIGN KEY (closed_by) REFERENCES users(id);
8775
8776
8777--
8778-- Name: reviews_dropped_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8779--
8780
8781ALTER TABLE ONLY reviews
8782 ADD CONSTRAINT reviews_dropped_by_fkey FOREIGN KEY (dropped_by) REFERENCES users(id);
8783
8784
8785--
8786-- Name: reviews_origin_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8787--
8788
8789ALTER TABLE ONLY reviews
8790 ADD CONSTRAINT reviews_origin_fkey FOREIGN KEY (origin) REFERENCES branches(id) ON DELETE SET NULL;
8791
8792
8793--
8794-- Name: reviewuserfiles_file_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8795--
8796
8797ALTER TABLE ONLY reviewuserfiles
8798 ADD CONSTRAINT reviewuserfiles_file_fkey FOREIGN KEY (file) REFERENCES reviewfiles(id) ON DELETE CASCADE;
8799
8800
8801--
8802-- Name: reviewuserfiles_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8803--
8804
8805ALTER TABLE ONLY reviewuserfiles
8806 ADD CONSTRAINT reviewuserfiles_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8807
8808
8809--
8810-- Name: reviewusers_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8811--
8812
8813ALTER TABLE ONLY reviewusers
8814 ADD CONSTRAINT reviewusers_review_fkey FOREIGN KEY (review) REFERENCES reviews(id) ON DELETE CASCADE;
8815
8816
8817--
8818-- Name: reviewusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8819--
8820
8821ALTER TABLE ONLY reviewusers
8822 ADD CONSTRAINT reviewusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8823
8824
8825--
8826-- Name: scheduledreviewbrancharchivals_review_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8827--
8828
8829ALTER TABLE ONLY scheduledreviewbrancharchivals
8830 ADD CONSTRAINT scheduledreviewbrancharchivals_review_fkey FOREIGN KEY (review) REFERENCES reviews(id);
8831
8832
8833--
8834-- Name: tags_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8835--
8836
8837ALTER TABLE ONLY tags
8838 ADD CONSTRAINT tags_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
8839
8840
8841--
8842-- Name: trackedbranches_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8843--
8844
8845ALTER TABLE ONLY trackedbranches
8846 ADD CONSTRAINT trackedbranches_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id);
8847
8848
8849--
8850-- Name: trackedbranchlog_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8851--
8852
8853ALTER TABLE ONLY trackedbranchlog
8854 ADD CONSTRAINT trackedbranchlog_branch_fkey FOREIGN KEY (branch) REFERENCES trackedbranches(id) ON DELETE CASCADE;
8855
8856
8857--
8858-- Name: trackedbranchusers_branch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8859--
8860
8861ALTER TABLE ONLY trackedbranchusers
8862 ADD CONSTRAINT trackedbranchusers_branch_fkey FOREIGN KEY (branch) REFERENCES trackedbranches(id) ON DELETE CASCADE;
8863
8864
8865--
8866-- Name: trackedbranchusers_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8867--
8868
8869ALTER TABLE ONLY trackedbranchusers
8870 ADD CONSTRAINT trackedbranchusers_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8871
8872
8873--
8874-- Name: userabsence_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8875--
8876
8877ALTER TABLE ONLY userabsence
8878 ADD CONSTRAINT userabsence_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8879
8880
8881--
8882-- Name: useremails_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8883--
8884
8885ALTER TABLE ONLY useremails
8886 ADD CONSTRAINT useremails_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8887
8888
8889--
8890-- Name: usergitemails_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8891--
8892
8893ALTER TABLE ONLY usergitemails
8894 ADD CONSTRAINT usergitemails_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8895
8896
8897--
8898-- Name: userpreferences_filter_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8899--
8900
8901ALTER TABLE ONLY userpreferences
8902 ADD CONSTRAINT userpreferences_filter_fkey FOREIGN KEY (filter) REFERENCES filters(id) ON DELETE CASCADE;
8903
8904
8905--
8906-- Name: userpreferences_item_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8907--
8908
8909ALTER TABLE ONLY userpreferences
8910 ADD CONSTRAINT userpreferences_item_fkey FOREIGN KEY (item) REFERENCES preferences(item);
8911
8912
8913--
8914-- Name: userpreferences_repository_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8915--
8916
8917ALTER TABLE ONLY userpreferences
8918 ADD CONSTRAINT userpreferences_repository_fkey FOREIGN KEY (repository) REFERENCES repositories(id) ON DELETE CASCADE;
8919
8920
8921--
8922-- Name: userpreferences_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8923--
8924
8925ALTER TABLE ONLY userpreferences
8926 ADD CONSTRAINT userpreferences_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8927
8928
8929--
8930-- Name: userresources_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8931--
8932
8933ALTER TABLE ONLY userresources
8934 ADD CONSTRAINT userresources_uid_fkey FOREIGN KEY (uid) REFERENCES users(id) ON DELETE CASCADE;
8935
8936
8937--
8938-- Name: userroles_role_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8939--
8940
8941ALTER TABLE ONLY userroles
8942 ADD CONSTRAINT userroles_role_fkey FOREIGN KEY (role) REFERENCES roles(name);
8943
8944
8945--
8946-- Name: userroles_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8947--
8948
8949ALTER TABLE ONLY userroles
8950 ADD CONSTRAINT userroles_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8951
8952
8953--
8954-- Name: users_email_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8955--
8956
8957ALTER TABLE ONLY users
8958 ADD CONSTRAINT users_email_fkey FOREIGN KEY (email) REFERENCES useremails(id);
8959
8960
8961--
8962-- Name: usersessions_uid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: critic
8963--
8964
8965ALTER TABLE ONLY usersessions
8966 ADD CONSTRAINT usersessions_uid_fkey FOREIGN KEY (uid) REFERENCES users(id);
8967
8968
8969--
8970-- Name: public; Type: ACL; Schema: -; Owner: postgres
8971--
8972
8973REVOKE ALL ON SCHEMA public FROM PUBLIC;
8974REVOKE ALL ON SCHEMA public FROM postgres;
8975GRANT ALL ON SCHEMA public TO postgres;
8976GRANT ALL ON SCHEMA public TO PUBLIC;
8977
8978
8979--
8980-- PostgreSQL database dump complete
8981--