~eltonplima/protocolo/1.0

« back to all changes in this revision

Viewing changes to cadastro/sql/indicemeta.sql

  • Committer: Elton Pereira de Lima
  • Date: 2010-05-10 14:23:13 UTC
  • Revision ID: elton@ti-host01-20100510142313-l5kmsc1z6661pu2l
Removidos arquivos sql, todos os dados foram exportados para o fixtures(json).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
insert into indice_meta(indice_id, ano_id, tipo_percentual, percentual) values(
2
 
  (select id from indice where nome='Pessoal - Poder Executivo'),
3
 
  (select id from ano where ano='2010'),
4
 
  1,
5
 
  51.3
6
 
);
7
 
 
8
 
insert into indice_meta(indice_id, ano_id, tipo_percentual, percentual) values(
9
 
  (select id from indice where nome='Educação'),
10
 
  (select id from ano where ano='2010'),
11
 
  0,
12
 
  25.0
13
 
);
14
 
 
15
 
insert into indice_meta(indice_id, ano_id, tipo_percentual, percentual) values(
16
 
  (select id from indice where nome='Saúde'),
17
 
  (select id from ano where ano='2010'),
18
 
  0,
19
 
  15.0
20
 
);
21
 
 
22
 
insert into indice_meta(indice_id, ano_id, tipo_percentual, percentual) values(
23
 
  (select id from indice where nome='FUNDEB 60'),
24
 
  (select id from ano where ano='2010'),
25
 
  0,
26
 
  60.0
27
 
);
28
 
 
29
 
insert into indice_meta(indice_id, ano_id, tipo_percentual, percentual) values(
30
 
  (select id from indice where nome='Pessoal - Poder Legislativo'),
31
 
  (select id from ano where ano='2010'),
32
 
  1,
33
 
  5.7
34
 
);
35
 
 
36
 
 
37
 
 
38
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
39
 
  (select id from tipo_cliente where nome = 'Municípios'),
40
 
  (select id from ano where ano='2010'),
41
 
  (select id from mes where codigo='01')
42
 
);
43
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
44
 
  (select id from tipo_cliente where nome = 'Municípios'),
45
 
  (select id from ano where ano='2010'),
46
 
  (select id from mes where codigo='02')
47
 
);
48
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
49
 
  (select id from tipo_cliente where nome = 'Municípios'),
50
 
  (select id from ano where ano='2010'),
51
 
  (select id from mes where codigo='03')
52
 
);
53
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
54
 
  (select id from tipo_cliente where nome = 'Municípios'),
55
 
  (select id from ano where ano='2010'),
56
 
  (select id from mes where codigo='04')
57
 
);
58
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
59
 
  (select id from tipo_cliente where nome = 'Municípios'),
60
 
  (select id from ano where ano='2010'),
61
 
  (select id from mes where codigo='05')
62
 
);
63
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
64
 
  (select id from tipo_cliente where nome = 'Municípios'),
65
 
  (select id from ano where ano='2010'),
66
 
  (select id from mes where codigo='06')
67
 
);
68
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
69
 
  (select id from tipo_cliente where nome = 'Municípios'),
70
 
  (select id from ano where ano='2010'),
71
 
  (select id from mes where codigo='07')
72
 
);
73
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
74
 
  (select id from tipo_cliente where nome = 'Municípios'),
75
 
  (select id from ano where ano='2010'),
76
 
  (select id from mes where codigo='08')
77
 
);
78
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
79
 
  (select id from tipo_cliente where nome = 'Municípios'),
80
 
  (select id from ano where ano='2010'),
81
 
  (select id from mes where codigo='09')
82
 
);
83
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
84
 
  (select id from tipo_cliente where nome = 'Municípios'),
85
 
  (select id from ano where ano='2010'),
86
 
  (select id from mes where codigo='10')
87
 
);
88
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
89
 
  (select id from tipo_cliente where nome = 'Municípios'),
90
 
  (select id from ano where ano='2010'),
91
 
  (select id from mes where codigo='11')
92
 
);
93
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
94
 
  (select id from tipo_cliente where nome = 'Municípios'),
95
 
  (select id from ano where ano='2010'),
96
 
  (select id from mes where codigo='12')
97
 
);
98
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
99
 
  (select id from tipo_cliente where nome = 'Câmaras'),
100
 
  (select id from ano where ano='2010'),
101
 
  (select id from mes where codigo='01')
102
 
);
103
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
104
 
  (select id from tipo_cliente where nome = 'Câmaras'),
105
 
  (select id from ano where ano='2010'),
106
 
  (select id from mes where codigo='02')
107
 
);
108
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
109
 
  (select id from tipo_cliente where nome = 'Câmaras'),
110
 
  (select id from ano where ano='2010'),
111
 
  (select id from mes where codigo='03')
112
 
);
113
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
114
 
  (select id from tipo_cliente where nome = 'Câmaras'),
115
 
  (select id from ano where ano='2010'),
116
 
  (select id from mes where codigo='04')
117
 
);
118
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
119
 
  (select id from tipo_cliente where nome = 'Câmaras'),
120
 
  (select id from ano where ano='2010'),
121
 
  (select id from mes where codigo='05')
122
 
);
123
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
124
 
  (select id from tipo_cliente where nome = 'Câmaras'),
125
 
  (select id from ano where ano='2010'),
126
 
  (select id from mes where codigo='06')
127
 
);
128
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
129
 
  (select id from tipo_cliente where nome = 'Câmaras'),
130
 
  (select id from ano where ano='2010'),
131
 
  (select id from mes where codigo='07')
132
 
);
133
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
134
 
  (select id from tipo_cliente where nome = 'Câmaras'),
135
 
  (select id from ano where ano='2010'),
136
 
  (select id from mes where codigo='08')
137
 
);
138
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
139
 
  (select id from tipo_cliente where nome = 'Câmaras'),
140
 
  (select id from ano where ano='2010'),
141
 
  (select id from mes where codigo='09')
142
 
);
143
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
144
 
  (select id from tipo_cliente where nome = 'Câmaras'),
145
 
  (select id from ano where ano='2010'),
146
 
  (select id from mes where codigo='10')
147
 
);
148
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
149
 
  (select id from tipo_cliente where nome = 'Câmaras'),
150
 
  (select id from ano where ano='2010'),
151
 
  (select id from mes where codigo='11')
152
 
);
153
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
154
 
  (select id from tipo_cliente where nome = 'Câmaras'),
155
 
  (select id from ano where ano='2010'),
156
 
  (select id from mes where codigo='12')
157
 
);
158
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
159
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
160
 
  (select id from ano where ano='2010'),
161
 
  (select id from mes where codigo='01')
162
 
);
163
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
164
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
165
 
  (select id from ano where ano='2010'),
166
 
  (select id from mes where codigo='02')
167
 
);
168
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
169
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
170
 
  (select id from ano where ano='2010'),
171
 
  (select id from mes where codigo='03')
172
 
);
173
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
174
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
175
 
  (select id from ano where ano='2010'),
176
 
  (select id from mes where codigo='04')
177
 
);
178
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
179
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
180
 
  (select id from ano where ano='2010'),
181
 
  (select id from mes where codigo='05')
182
 
);
183
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
184
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
185
 
  (select id from ano where ano='2010'),
186
 
  (select id from mes where codigo='06')
187
 
);
188
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
189
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
190
 
  (select id from ano where ano='2010'),
191
 
  (select id from mes where codigo='07')
192
 
);
193
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
194
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
195
 
  (select id from ano where ano='2010'),
196
 
  (select id from mes where codigo='08')
197
 
);
198
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
199
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
200
 
  (select id from ano where ano='2010'),
201
 
  (select id from mes where codigo='09')
202
 
);
203
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
204
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
205
 
  (select id from ano where ano='2010'),
206
 
  (select id from mes where codigo='10')
207
 
);
208
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
209
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
210
 
  (select id from ano where ano='2010'),
211
 
  (select id from mes where codigo='11')
212
 
);
213
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
214
 
  (select id from tipo_cliente where nome = 'Outros órgãos'),
215
 
  (select id from ano where ano='2010'),
216
 
  (select id from mes where codigo='12')
217
 
);
218
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
219
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
220
 
  (select id from ano where ano='2010'),
221
 
  (select id from mes where codigo='01')
222
 
);
223
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
224
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
225
 
  (select id from ano where ano='2010'),
226
 
  (select id from mes where codigo='02')
227
 
);
228
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
229
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
230
 
  (select id from ano where ano='2010'),
231
 
  (select id from mes where codigo='03')
232
 
);
233
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
234
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
235
 
  (select id from ano where ano='2010'),
236
 
  (select id from mes where codigo='04')
237
 
);
238
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
239
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
240
 
  (select id from ano where ano='2010'),
241
 
  (select id from mes where codigo='05')
242
 
);
243
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
244
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
245
 
  (select id from ano where ano='2010'),
246
 
  (select id from mes where codigo='06')
247
 
);
248
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
249
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
250
 
  (select id from ano where ano='2010'),
251
 
  (select id from mes where codigo='07')
252
 
);
253
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
254
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
255
 
  (select id from ano where ano='2010'),
256
 
  (select id from mes where codigo='08')
257
 
);
258
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
259
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
260
 
  (select id from ano where ano='2010'),
261
 
  (select id from mes where codigo='09')
262
 
);
263
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
264
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
265
 
  (select id from ano where ano='2010'),
266
 
  (select id from mes where codigo='10')
267
 
);
268
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
269
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
270
 
  (select id from ano where ano='2010'),
271
 
  (select id from mes where codigo='11')
272
 
);
273
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
274
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde'),
275
 
  (select id from ano where ano='2010'),
276
 
  (select id from mes where codigo='12')
277
 
);
278
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
279
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
280
 
  (select id from ano where ano='2010'),
281
 
  (select id from mes where codigo='01')
282
 
);
283
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
284
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
285
 
  (select id from ano where ano='2010'),
286
 
  (select id from mes where codigo='02')
287
 
);
288
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
289
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
290
 
  (select id from ano where ano='2010'),
291
 
  (select id from mes where codigo='03')
292
 
);
293
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
294
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
295
 
  (select id from ano where ano='2010'),
296
 
  (select id from mes where codigo='04')
297
 
);
298
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
299
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
300
 
  (select id from ano where ano='2010'),
301
 
  (select id from mes where codigo='05')
302
 
);
303
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
304
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
305
 
  (select id from ano where ano='2010'),
306
 
  (select id from mes where codigo='06')
307
 
);
308
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
309
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
310
 
  (select id from ano where ano='2010'),
311
 
  (select id from mes where codigo='07')
312
 
);
313
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
314
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
315
 
  (select id from ano where ano='2010'),
316
 
  (select id from mes where codigo='08')
317
 
);
318
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
319
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
320
 
  (select id from ano where ano='2010'),
321
 
  (select id from mes where codigo='09')
322
 
);
323
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
324
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
325
 
  (select id from ano where ano='2010'),
326
 
  (select id from mes where codigo='10')
327
 
);
328
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
329
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
330
 
  (select id from ano where ano='2010'),
331
 
  (select id from mes where codigo='11')
332
 
);
333
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
334
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação'),
335
 
  (select id from ano where ano='2010'),
336
 
  (select id from mes where codigo='12')
337
 
);
338
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
339
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
340
 
  (select id from ano where ano='2010'),
341
 
  (select id from mes where codigo='01')
342
 
);
343
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
344
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
345
 
  (select id from ano where ano='2010'),
346
 
  (select id from mes where codigo='02')
347
 
);
348
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
349
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
350
 
  (select id from ano where ano='2010'),
351
 
  (select id from mes where codigo='03')
352
 
);
353
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
354
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
355
 
  (select id from ano where ano='2010'),
356
 
  (select id from mes where codigo='04')
357
 
);
358
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
359
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
360
 
  (select id from ano where ano='2010'),
361
 
  (select id from mes where codigo='05')
362
 
);
363
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
364
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
365
 
  (select id from ano where ano='2010'),
366
 
  (select id from mes where codigo='06')
367
 
);
368
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
369
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
370
 
  (select id from ano where ano='2010'),
371
 
  (select id from mes where codigo='07')
372
 
);
373
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
374
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
375
 
  (select id from ano where ano='2010'),
376
 
  (select id from mes where codigo='08')
377
 
);
378
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
379
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
380
 
  (select id from ano where ano='2010'),
381
 
  (select id from mes where codigo='09')
382
 
);
383
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
384
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
385
 
  (select id from ano where ano='2010'),
386
 
  (select id from mes where codigo='10')
387
 
);
388
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
389
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
390
 
  (select id from ano where ano='2010'),
391
 
  (select id from mes where codigo='11')
392
 
);
393
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
394
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social'),
395
 
  (select id from ano where ano='2010'),
396
 
  (select id from mes where codigo='12')
397
 
);
398
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
399
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
400
 
  (select id from ano where ano='2010'),
401
 
  (select id from mes where codigo='01')
402
 
);
403
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
404
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
405
 
  (select id from ano where ano='2010'),
406
 
  (select id from mes where codigo='02')
407
 
);
408
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
409
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
410
 
  (select id from ano where ano='2010'),
411
 
  (select id from mes where codigo='03')
412
 
);
413
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
414
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
415
 
  (select id from ano where ano='2010'),
416
 
  (select id from mes where codigo='04')
417
 
);
418
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
419
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
420
 
  (select id from ano where ano='2010'),
421
 
  (select id from mes where codigo='05')
422
 
);
423
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
424
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
425
 
  (select id from ano where ano='2010'),
426
 
  (select id from mes where codigo='06')
427
 
);
428
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
429
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
430
 
  (select id from ano where ano='2010'),
431
 
  (select id from mes where codigo='07')
432
 
);
433
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
434
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
435
 
  (select id from ano where ano='2010'),
436
 
  (select id from mes where codigo='08')
437
 
);
438
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
439
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
440
 
  (select id from ano where ano='2010'),
441
 
  (select id from mes where codigo='09')
442
 
);
443
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
444
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
445
 
  (select id from ano where ano='2010'),
446
 
  (select id from mes where codigo='10')
447
 
);
448
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
449
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
450
 
  (select id from ano where ano='2010'),
451
 
  (select id from mes where codigo='11')
452
 
);
453
 
insert into tipo_cliente_configuracao(tipo_cliente_id, ano_id, mes_id) values(
454
 
  (select id from tipo_cliente where nome = 'Institutos de previdência'),
455
 
  (select id from ano where ano='2010'),
456
 
  (select id from mes where codigo='12')
457
 
);
458
 
 
459
 
 
460
 
 
461
 
 
462
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
463
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
464
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
465
 
  (select id from ano where ano='2010') and mes_id =
466
 
  (select id from mes where codigo='01')), (select id from indice where nome='Pessoal - Poder Legislativo')
467
 
 
468
 
);
469
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
470
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
471
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
472
 
  (select id from ano where ano='2010') and mes_id =
473
 
  (select id from mes where codigo='02')), (select id from indice where nome='Pessoal - Poder Legislativo')
474
 
 
475
 
);
476
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
477
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
478
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
479
 
  (select id from ano where ano='2010') and mes_id =
480
 
  (select id from mes where codigo='03')), (select id from indice where nome='Pessoal - Poder Legislativo')
481
 
 
482
 
);
483
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
484
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
485
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
486
 
  (select id from ano where ano='2010') and mes_id =
487
 
  (select id from mes where codigo='04')), (select id from indice where nome='Pessoal - Poder Legislativo')
488
 
 
489
 
);
490
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
491
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
492
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
493
 
  (select id from ano where ano='2010') and mes_id =
494
 
  (select id from mes where codigo='05')), (select id from indice where nome='Pessoal - Poder Legislativo')
495
 
 
496
 
);
497
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
498
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
499
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
500
 
  (select id from ano where ano='2010') and mes_id =
501
 
  (select id from mes where codigo='06')), (select id from indice where nome='Pessoal - Poder Legislativo')
502
 
 
503
 
);
504
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
505
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
506
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
507
 
  (select id from ano where ano='2010') and mes_id =
508
 
  (select id from mes where codigo='07')), (select id from indice where nome='Pessoal - Poder Legislativo')
509
 
 
510
 
);
511
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
512
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
513
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
514
 
  (select id from ano where ano='2010') and mes_id =
515
 
  (select id from mes where codigo='08')), (select id from indice where nome='Pessoal - Poder Legislativo')
516
 
 
517
 
);
518
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
519
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
520
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
521
 
  (select id from ano where ano='2010') and mes_id =
522
 
  (select id from mes where codigo='09')), (select id from indice where nome='Pessoal - Poder Legislativo')
523
 
 
524
 
);
525
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
526
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
527
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
528
 
  (select id from ano where ano='2010') and mes_id =
529
 
  (select id from mes where codigo='10')), (select id from indice where nome='Pessoal - Poder Legislativo')
530
 
 
531
 
);
532
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
533
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
534
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
535
 
  (select id from ano where ano='2010') and mes_id =
536
 
  (select id from mes where codigo='11')), (select id from indice where nome='Pessoal - Poder Legislativo')
537
 
 
538
 
);
539
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
540
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
541
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
542
 
  (select id from ano where ano='2010') and mes_id =
543
 
  (select id from mes where codigo='12')), (select id from indice where nome='Pessoal - Poder Legislativo')
544
 
 
545
 
);
546
 
 
547
 
 
548
 
 
549
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
550
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
551
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
552
 
  (select id from ano where ano='2010') and mes_id =
553
 
  (select id from mes where codigo='01')), (select id from indice where nome='Educação')
554
 
 
555
 
);
556
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
557
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
558
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
559
 
  (select id from ano where ano='2010') and mes_id =
560
 
  (select id from mes where codigo='01')), (select id from indice where nome='Saúde')
561
 
 
562
 
);
563
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
564
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
565
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
566
 
  (select id from ano where ano='2010') and mes_id =
567
 
  (select id from mes where codigo='01')), (select id from indice where nome='FUNDEB 60')
568
 
 
569
 
);
570
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
571
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
572
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
573
 
  (select id from ano where ano='2010') and mes_id =
574
 
  (select id from mes where codigo='01')), (select id from indice where nome='Pessoal - Poder Executivo')
575
 
 
576
 
);
577
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
578
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
579
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
580
 
  (select id from ano where ano='2010') and mes_id =
581
 
  (select id from mes where codigo='02')), (select id from indice where nome='Educação')
582
 
 
583
 
);
584
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
585
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
586
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
587
 
  (select id from ano where ano='2010') and mes_id =
588
 
  (select id from mes where codigo='02')), (select id from indice where nome='Saúde')
589
 
 
590
 
);
591
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
592
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
593
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
594
 
  (select id from ano where ano='2010') and mes_id =
595
 
  (select id from mes where codigo='02')), (select id from indice where nome='FUNDEB 60')
596
 
 
597
 
);
598
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
599
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
600
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
601
 
  (select id from ano where ano='2010') and mes_id =
602
 
  (select id from mes where codigo='02')), (select id from indice where nome='Pessoal - Poder Executivo')
603
 
 
604
 
);
605
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
606
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
607
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
608
 
  (select id from ano where ano='2010') and mes_id =
609
 
  (select id from mes where codigo='03')), (select id from indice where nome='Educação')
610
 
 
611
 
);
612
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
613
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
614
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
615
 
  (select id from ano where ano='2010') and mes_id =
616
 
  (select id from mes where codigo='03')), (select id from indice where nome='Saúde')
617
 
 
618
 
);
619
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
620
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
621
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
622
 
  (select id from ano where ano='2010') and mes_id =
623
 
  (select id from mes where codigo='03')), (select id from indice where nome='FUNDEB 60')
624
 
 
625
 
);
626
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
627
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
628
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
629
 
  (select id from ano where ano='2010') and mes_id =
630
 
  (select id from mes where codigo='03')), (select id from indice where nome='Pessoal - Poder Executivo')
631
 
 
632
 
);
633
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
634
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
635
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
636
 
  (select id from ano where ano='2010') and mes_id =
637
 
  (select id from mes where codigo='04')), (select id from indice where nome='Educação')
638
 
 
639
 
);
640
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
641
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
642
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
643
 
  (select id from ano where ano='2010') and mes_id =
644
 
  (select id from mes where codigo='04')), (select id from indice where nome='Saúde')
645
 
 
646
 
);
647
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
648
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
649
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
650
 
  (select id from ano where ano='2010') and mes_id =
651
 
  (select id from mes where codigo='04')), (select id from indice where nome='FUNDEB 60')
652
 
 
653
 
);
654
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
655
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
656
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
657
 
  (select id from ano where ano='2010') and mes_id =
658
 
  (select id from mes where codigo='04')), (select id from indice where nome='Pessoal - Poder Executivo')
659
 
 
660
 
);
661
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
662
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
663
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
664
 
  (select id from ano where ano='2010') and mes_id =
665
 
  (select id from mes where codigo='05')), (select id from indice where nome='Educação')
666
 
 
667
 
);
668
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
669
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
670
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
671
 
  (select id from ano where ano='2010') and mes_id =
672
 
  (select id from mes where codigo='05')), (select id from indice where nome='Saúde')
673
 
 
674
 
);
675
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
676
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
677
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
678
 
  (select id from ano where ano='2010') and mes_id =
679
 
  (select id from mes where codigo='05')), (select id from indice where nome='FUNDEB 60')
680
 
 
681
 
);
682
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
683
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
684
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
685
 
  (select id from ano where ano='2010') and mes_id =
686
 
  (select id from mes where codigo='05')), (select id from indice where nome='Pessoal - Poder Executivo')
687
 
 
688
 
);
689
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
690
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
691
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
692
 
  (select id from ano where ano='2010') and mes_id =
693
 
  (select id from mes where codigo='06')), (select id from indice where nome='Educação')
694
 
 
695
 
);
696
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
697
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
698
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
699
 
  (select id from ano where ano='2010') and mes_id =
700
 
  (select id from mes where codigo='06')), (select id from indice where nome='Saúde')
701
 
 
702
 
);
703
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
704
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
705
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
706
 
  (select id from ano where ano='2010') and mes_id =
707
 
  (select id from mes where codigo='06')), (select id from indice where nome='FUNDEB 60')
708
 
 
709
 
);
710
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
711
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
712
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
713
 
  (select id from ano where ano='2010') and mes_id =
714
 
  (select id from mes where codigo='06')), (select id from indice where nome='Pessoal - Poder Executivo')
715
 
 
716
 
);
717
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
718
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
719
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
720
 
  (select id from ano where ano='2010') and mes_id =
721
 
  (select id from mes where codigo='07')), (select id from indice where nome='Educação')
722
 
 
723
 
);
724
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
725
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
726
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
727
 
  (select id from ano where ano='2010') and mes_id =
728
 
  (select id from mes where codigo='07')), (select id from indice where nome='Saúde')
729
 
 
730
 
);
731
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
732
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
733
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
734
 
  (select id from ano where ano='2010') and mes_id =
735
 
  (select id from mes where codigo='07')), (select id from indice where nome='FUNDEB 60')
736
 
 
737
 
);
738
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
739
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
740
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
741
 
  (select id from ano where ano='2010') and mes_id =
742
 
  (select id from mes where codigo='07')), (select id from indice where nome='Pessoal - Poder Executivo')
743
 
 
744
 
);
745
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
746
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
747
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
748
 
  (select id from ano where ano='2010') and mes_id =
749
 
  (select id from mes where codigo='08')), (select id from indice where nome='Educação')
750
 
 
751
 
);
752
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
753
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
754
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
755
 
  (select id from ano where ano='2010') and mes_id =
756
 
  (select id from mes where codigo='08')), (select id from indice where nome='Saúde')
757
 
 
758
 
);
759
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
760
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
761
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
762
 
  (select id from ano where ano='2010') and mes_id =
763
 
  (select id from mes where codigo='08')), (select id from indice where nome='FUNDEB 60')
764
 
 
765
 
);
766
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
767
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
768
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
769
 
  (select id from ano where ano='2010') and mes_id =
770
 
  (select id from mes where codigo='08')), (select id from indice where nome='Pessoal - Poder Executivo')
771
 
 
772
 
);
773
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
774
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
775
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
776
 
  (select id from ano where ano='2010') and mes_id =
777
 
  (select id from mes where codigo='09')), (select id from indice where nome='Educação')
778
 
 
779
 
);
780
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
781
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
782
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
783
 
  (select id from ano where ano='2010') and mes_id =
784
 
  (select id from mes where codigo='09')), (select id from indice where nome='Saúde')
785
 
 
786
 
);
787
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
788
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
789
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
790
 
  (select id from ano where ano='2010') and mes_id =
791
 
  (select id from mes where codigo='09')), (select id from indice where nome='FUNDEB 60')
792
 
 
793
 
);
794
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
795
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
796
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
797
 
  (select id from ano where ano='2010') and mes_id =
798
 
  (select id from mes where codigo='09')), (select id from indice where nome='Pessoal - Poder Executivo')
799
 
 
800
 
);
801
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
802
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
803
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
804
 
  (select id from ano where ano='2010') and mes_id =
805
 
  (select id from mes where codigo='10')), (select id from indice where nome='Educação')
806
 
 
807
 
);
808
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
809
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
810
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
811
 
  (select id from ano where ano='2010') and mes_id =
812
 
  (select id from mes where codigo='10')), (select id from indice where nome='Saúde')
813
 
 
814
 
);
815
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
816
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
817
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
818
 
  (select id from ano where ano='2010') and mes_id =
819
 
  (select id from mes where codigo='10')), (select id from indice where nome='FUNDEB 60')
820
 
 
821
 
);
822
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
823
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
824
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
825
 
  (select id from ano where ano='2010') and mes_id =
826
 
  (select id from mes where codigo='10')), (select id from indice where nome='Pessoal - Poder Executivo')
827
 
 
828
 
);
829
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
830
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
831
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
832
 
  (select id from ano where ano='2010') and mes_id =
833
 
  (select id from mes where codigo='11')), (select id from indice where nome='Educação')
834
 
 
835
 
);
836
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
837
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
838
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
839
 
  (select id from ano where ano='2010') and mes_id =
840
 
  (select id from mes where codigo='11')), (select id from indice where nome='Saúde')
841
 
 
842
 
);
843
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
844
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
845
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
846
 
  (select id from ano where ano='2010') and mes_id =
847
 
  (select id from mes where codigo='11')), (select id from indice where nome='FUNDEB 60')
848
 
 
849
 
);
850
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
851
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
852
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
853
 
  (select id from ano where ano='2010') and mes_id =
854
 
  (select id from mes where codigo='11')), (select id from indice where nome='Pessoal - Poder Executivo')
855
 
 
856
 
);
857
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
858
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
859
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
860
 
  (select id from ano where ano='2010') and mes_id =
861
 
  (select id from mes where codigo='12')), (select id from indice where nome='Educação')
862
 
 
863
 
);
864
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
865
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
866
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
867
 
  (select id from ano where ano='2010') and mes_id =
868
 
  (select id from mes where codigo='12')), (select id from indice where nome='Saúde')
869
 
 
870
 
);
871
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
872
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
873
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
874
 
  (select id from ano where ano='2010') and mes_id =
875
 
  (select id from mes where codigo='12')), (select id from indice where nome='FUNDEB 60')
876
 
 
877
 
);
878
 
insert into tipo_cliente_configuracao_indices(tipoclienteconfiguracao_id, indice_id) values(
879
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
880
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
881
 
  (select id from ano where ano='2010') and mes_id =
882
 
  (select id from mes where codigo='12')), (select id from indice where nome='Pessoal - Poder Executivo')
883
 
 
884
 
);
885
 
 
886
 
 
887
 
 
888
 
 
889
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
890
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
891
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
892
 
  (select id from ano where ano='2010') and mes_id =
893
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
894
 
 
895
 
);
896
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
897
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
898
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
899
 
  (select id from ano where ano='2010') and mes_id =
900
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
901
 
 
902
 
);
903
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
904
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
905
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
906
 
  (select id from ano where ano='2010') and mes_id =
907
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de empenho')
908
 
 
909
 
);
910
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
911
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
912
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
913
 
  (select id from ano where ano='2010') and mes_id =
914
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de cancelamento')
915
 
 
916
 
);
917
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
918
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
919
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
920
 
  (select id from ano where ano='2010') and mes_id =
921
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Decretos')
922
 
 
923
 
);
924
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
925
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
926
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
927
 
  (select id from ano where ano='2010') and mes_id =
928
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Conciliações')
929
 
 
930
 
);
931
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
932
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
933
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
934
 
  (select id from ano where ano='2010') and mes_id =
935
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Balancetes Mensais')
936
 
 
937
 
);
938
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
939
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
940
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
941
 
  (select id from ano where ano='2010') and mes_id =
942
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
943
 
 
944
 
);
945
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
946
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
947
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
948
 
  (select id from ano where ano='2010') and mes_id =
949
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
950
 
 
951
 
);
952
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
953
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
954
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
955
 
  (select id from ano where ano='2010') and mes_id =
956
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de empenho')
957
 
 
958
 
);
959
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
960
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
961
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
962
 
  (select id from ano where ano='2010') and mes_id =
963
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de cancelamento')
964
 
 
965
 
);
966
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
967
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
968
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
969
 
  (select id from ano where ano='2010') and mes_id =
970
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Decretos')
971
 
 
972
 
);
973
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
974
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
975
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
976
 
  (select id from ano where ano='2010') and mes_id =
977
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Conciliações')
978
 
 
979
 
);
980
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
981
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
982
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
983
 
  (select id from ano where ano='2010') and mes_id =
984
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Balancetes Mensais')
985
 
 
986
 
);
987
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
988
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
989
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
990
 
  (select id from ano where ano='2010') and mes_id =
991
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
992
 
 
993
 
);
994
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
995
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
996
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
997
 
  (select id from ano where ano='2010') and mes_id =
998
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
999
 
 
1000
 
);
1001
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1002
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1003
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1004
 
  (select id from ano where ano='2010') and mes_id =
1005
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de empenho')
1006
 
 
1007
 
);
1008
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1009
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1010
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1011
 
  (select id from ano where ano='2010') and mes_id =
1012
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1013
 
 
1014
 
);
1015
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1016
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1017
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1018
 
  (select id from ano where ano='2010') and mes_id =
1019
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Decretos')
1020
 
 
1021
 
);
1022
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1023
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1024
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1025
 
  (select id from ano where ano='2010') and mes_id =
1026
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Conciliações')
1027
 
 
1028
 
);
1029
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1030
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1031
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1032
 
  (select id from ano where ano='2010') and mes_id =
1033
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1034
 
 
1035
 
);
1036
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1037
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1038
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1039
 
  (select id from ano where ano='2010') and mes_id =
1040
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1041
 
 
1042
 
);
1043
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1044
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1045
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1046
 
  (select id from ano where ano='2010') and mes_id =
1047
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1048
 
 
1049
 
);
1050
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1051
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1052
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1053
 
  (select id from ano where ano='2010') and mes_id =
1054
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de empenho')
1055
 
 
1056
 
);
1057
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1058
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1059
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1060
 
  (select id from ano where ano='2010') and mes_id =
1061
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1062
 
 
1063
 
);
1064
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1065
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1066
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1067
 
  (select id from ano where ano='2010') and mes_id =
1068
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Decretos')
1069
 
 
1070
 
);
1071
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1072
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1073
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1074
 
  (select id from ano where ano='2010') and mes_id =
1075
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Conciliações')
1076
 
 
1077
 
);
1078
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1079
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1080
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1081
 
  (select id from ano where ano='2010') and mes_id =
1082
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1083
 
 
1084
 
);
1085
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1086
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1087
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1088
 
  (select id from ano where ano='2010') and mes_id =
1089
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1090
 
 
1091
 
);
1092
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1093
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1094
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1095
 
  (select id from ano where ano='2010') and mes_id =
1096
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1097
 
 
1098
 
);
1099
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1100
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1101
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1102
 
  (select id from ano where ano='2010') and mes_id =
1103
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de empenho')
1104
 
 
1105
 
);
1106
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1107
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1108
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1109
 
  (select id from ano where ano='2010') and mes_id =
1110
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1111
 
 
1112
 
);
1113
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1114
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1115
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1116
 
  (select id from ano where ano='2010') and mes_id =
1117
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Decretos')
1118
 
 
1119
 
);
1120
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1121
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1122
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1123
 
  (select id from ano where ano='2010') and mes_id =
1124
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Conciliações')
1125
 
 
1126
 
);
1127
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1128
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1129
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1130
 
  (select id from ano where ano='2010') and mes_id =
1131
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1132
 
 
1133
 
);
1134
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1135
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1136
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1137
 
  (select id from ano where ano='2010') and mes_id =
1138
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1139
 
 
1140
 
);
1141
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1142
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1143
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1144
 
  (select id from ano where ano='2010') and mes_id =
1145
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1146
 
 
1147
 
);
1148
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1149
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1150
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1151
 
  (select id from ano where ano='2010') and mes_id =
1152
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de empenho')
1153
 
 
1154
 
);
1155
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1156
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1157
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1158
 
  (select id from ano where ano='2010') and mes_id =
1159
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1160
 
 
1161
 
);
1162
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1163
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1164
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1165
 
  (select id from ano where ano='2010') and mes_id =
1166
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Decretos')
1167
 
 
1168
 
);
1169
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1170
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1171
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1172
 
  (select id from ano where ano='2010') and mes_id =
1173
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Conciliações')
1174
 
 
1175
 
);
1176
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1177
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1178
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1179
 
  (select id from ano where ano='2010') and mes_id =
1180
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1181
 
 
1182
 
);
1183
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1184
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1185
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1186
 
  (select id from ano where ano='2010') and mes_id =
1187
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1188
 
 
1189
 
);
1190
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1191
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1192
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1193
 
  (select id from ano where ano='2010') and mes_id =
1194
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1195
 
 
1196
 
);
1197
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1198
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1199
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1200
 
  (select id from ano where ano='2010') and mes_id =
1201
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de empenho')
1202
 
 
1203
 
);
1204
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1205
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1206
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1207
 
  (select id from ano where ano='2010') and mes_id =
1208
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1209
 
 
1210
 
);
1211
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1212
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1213
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1214
 
  (select id from ano where ano='2010') and mes_id =
1215
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Decretos')
1216
 
 
1217
 
);
1218
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1219
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1220
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1221
 
  (select id from ano where ano='2010') and mes_id =
1222
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Conciliações')
1223
 
 
1224
 
);
1225
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1226
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1227
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1228
 
  (select id from ano where ano='2010') and mes_id =
1229
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1230
 
 
1231
 
);
1232
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1233
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1234
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1235
 
  (select id from ano where ano='2010') and mes_id =
1236
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1237
 
 
1238
 
);
1239
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1240
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1241
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1242
 
  (select id from ano where ano='2010') and mes_id =
1243
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1244
 
 
1245
 
);
1246
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1247
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1248
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1249
 
  (select id from ano where ano='2010') and mes_id =
1250
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de empenho')
1251
 
 
1252
 
);
1253
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1254
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1255
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1256
 
  (select id from ano where ano='2010') and mes_id =
1257
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1258
 
 
1259
 
);
1260
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1261
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1262
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1263
 
  (select id from ano where ano='2010') and mes_id =
1264
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Decretos')
1265
 
 
1266
 
);
1267
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1268
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1269
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1270
 
  (select id from ano where ano='2010') and mes_id =
1271
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Conciliações')
1272
 
 
1273
 
);
1274
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1275
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1276
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1277
 
  (select id from ano where ano='2010') and mes_id =
1278
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1279
 
 
1280
 
);
1281
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1282
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1283
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1284
 
  (select id from ano where ano='2010') and mes_id =
1285
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1286
 
 
1287
 
);
1288
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1289
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1290
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1291
 
  (select id from ano where ano='2010') and mes_id =
1292
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1293
 
 
1294
 
);
1295
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1296
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1297
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1298
 
  (select id from ano where ano='2010') and mes_id =
1299
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de empenho')
1300
 
 
1301
 
);
1302
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1303
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1304
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1305
 
  (select id from ano where ano='2010') and mes_id =
1306
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1307
 
 
1308
 
);
1309
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1310
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1311
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1312
 
  (select id from ano where ano='2010') and mes_id =
1313
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Decretos')
1314
 
 
1315
 
);
1316
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1317
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1318
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1319
 
  (select id from ano where ano='2010') and mes_id =
1320
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Conciliações')
1321
 
 
1322
 
);
1323
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1324
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1325
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1326
 
  (select id from ano where ano='2010') and mes_id =
1327
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1328
 
 
1329
 
);
1330
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1331
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1332
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1333
 
  (select id from ano where ano='2010') and mes_id =
1334
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1335
 
 
1336
 
);
1337
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1338
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1339
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1340
 
  (select id from ano where ano='2010') and mes_id =
1341
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1342
 
 
1343
 
);
1344
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1345
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1346
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1347
 
  (select id from ano where ano='2010') and mes_id =
1348
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de empenho')
1349
 
 
1350
 
);
1351
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1352
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1353
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1354
 
  (select id from ano where ano='2010') and mes_id =
1355
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1356
 
 
1357
 
);
1358
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1359
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1360
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1361
 
  (select id from ano where ano='2010') and mes_id =
1362
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Decretos')
1363
 
 
1364
 
);
1365
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1366
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1367
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1368
 
  (select id from ano where ano='2010') and mes_id =
1369
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Conciliações')
1370
 
 
1371
 
);
1372
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1373
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1374
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1375
 
  (select id from ano where ano='2010') and mes_id =
1376
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1377
 
 
1378
 
);
1379
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1380
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1381
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1382
 
  (select id from ano where ano='2010') and mes_id =
1383
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1384
 
 
1385
 
);
1386
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1387
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1388
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1389
 
  (select id from ano where ano='2010') and mes_id =
1390
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1391
 
 
1392
 
);
1393
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1394
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1395
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1396
 
  (select id from ano where ano='2010') and mes_id =
1397
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de empenho')
1398
 
 
1399
 
);
1400
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1401
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1402
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1403
 
  (select id from ano where ano='2010') and mes_id =
1404
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1405
 
 
1406
 
);
1407
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1408
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1409
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1410
 
  (select id from ano where ano='2010') and mes_id =
1411
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Decretos')
1412
 
 
1413
 
);
1414
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1415
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1416
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1417
 
  (select id from ano where ano='2010') and mes_id =
1418
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Conciliações')
1419
 
 
1420
 
);
1421
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1422
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1423
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1424
 
  (select id from ano where ano='2010') and mes_id =
1425
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1426
 
 
1427
 
);
1428
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1429
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1430
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1431
 
  (select id from ano where ano='2010') and mes_id =
1432
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1433
 
 
1434
 
);
1435
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1436
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1437
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1438
 
  (select id from ano where ano='2010') and mes_id =
1439
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1440
 
 
1441
 
);
1442
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1443
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1444
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1445
 
  (select id from ano where ano='2010') and mes_id =
1446
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de empenho')
1447
 
 
1448
 
);
1449
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1450
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1451
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1452
 
  (select id from ano where ano='2010') and mes_id =
1453
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1454
 
 
1455
 
);
1456
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1457
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1458
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1459
 
  (select id from ano where ano='2010') and mes_id =
1460
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Decretos')
1461
 
 
1462
 
);
1463
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1464
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1465
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1466
 
  (select id from ano where ano='2010') and mes_id =
1467
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Conciliações')
1468
 
 
1469
 
);
1470
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1471
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1472
 
  (select id from tipo_cliente where nome = 'Municípios') and ano_id =
1473
 
  (select id from ano where ano='2010') and mes_id =
1474
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1475
 
 
1476
 
);
1477
 
 
1478
 
 
1479
 
 
1480
 
 
1481
 
 
1482
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1483
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1484
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1485
 
  (select id from ano where ano='2010') and mes_id =
1486
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1487
 
 
1488
 
);
1489
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1490
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1491
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1492
 
  (select id from ano where ano='2010') and mes_id =
1493
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1494
 
 
1495
 
);
1496
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1497
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1498
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1499
 
  (select id from ano where ano='2010') and mes_id =
1500
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1501
 
 
1502
 
);
1503
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1504
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1505
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1506
 
  (select id from ano where ano='2010') and mes_id =
1507
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de empenho')
1508
 
 
1509
 
);
1510
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1511
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1512
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1513
 
  (select id from ano where ano='2010') and mes_id =
1514
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1515
 
 
1516
 
);
1517
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1518
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1519
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1520
 
  (select id from ano where ano='2010') and mes_id =
1521
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Conciliações')
1522
 
 
1523
 
);
1524
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1525
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1526
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1527
 
  (select id from ano where ano='2010') and mes_id =
1528
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1529
 
 
1530
 
);
1531
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1532
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1533
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1534
 
  (select id from ano where ano='2010') and mes_id =
1535
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1536
 
 
1537
 
);
1538
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1539
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1540
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1541
 
  (select id from ano where ano='2010') and mes_id =
1542
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1543
 
 
1544
 
);
1545
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1546
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1547
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1548
 
  (select id from ano where ano='2010') and mes_id =
1549
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de empenho')
1550
 
 
1551
 
);
1552
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1553
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1554
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1555
 
  (select id from ano where ano='2010') and mes_id =
1556
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1557
 
 
1558
 
);
1559
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1560
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1561
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1562
 
  (select id from ano where ano='2010') and mes_id =
1563
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Conciliações')
1564
 
 
1565
 
);
1566
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1567
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1568
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1569
 
  (select id from ano where ano='2010') and mes_id =
1570
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1571
 
 
1572
 
);
1573
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1574
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1575
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1576
 
  (select id from ano where ano='2010') and mes_id =
1577
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1578
 
 
1579
 
);
1580
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1581
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1582
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1583
 
  (select id from ano where ano='2010') and mes_id =
1584
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1585
 
 
1586
 
);
1587
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1588
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1589
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1590
 
  (select id from ano where ano='2010') and mes_id =
1591
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de empenho')
1592
 
 
1593
 
);
1594
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1595
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1596
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1597
 
  (select id from ano where ano='2010') and mes_id =
1598
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1599
 
 
1600
 
);
1601
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1602
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1603
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1604
 
  (select id from ano where ano='2010') and mes_id =
1605
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Conciliações')
1606
 
 
1607
 
);
1608
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1609
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1610
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1611
 
  (select id from ano where ano='2010') and mes_id =
1612
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1613
 
 
1614
 
);
1615
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1616
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1617
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1618
 
  (select id from ano where ano='2010') and mes_id =
1619
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1620
 
 
1621
 
);
1622
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1623
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1624
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1625
 
  (select id from ano where ano='2010') and mes_id =
1626
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1627
 
 
1628
 
);
1629
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1630
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1631
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1632
 
  (select id from ano where ano='2010') and mes_id =
1633
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de empenho')
1634
 
 
1635
 
);
1636
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1637
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1638
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1639
 
  (select id from ano where ano='2010') and mes_id =
1640
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1641
 
 
1642
 
);
1643
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1644
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1645
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1646
 
  (select id from ano where ano='2010') and mes_id =
1647
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Conciliações')
1648
 
 
1649
 
);
1650
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1651
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1652
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1653
 
  (select id from ano where ano='2010') and mes_id =
1654
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1655
 
 
1656
 
);
1657
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1658
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1659
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1660
 
  (select id from ano where ano='2010') and mes_id =
1661
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1662
 
 
1663
 
);
1664
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1665
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1666
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1667
 
  (select id from ano where ano='2010') and mes_id =
1668
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1669
 
 
1670
 
);
1671
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1672
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1673
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1674
 
  (select id from ano where ano='2010') and mes_id =
1675
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de empenho')
1676
 
 
1677
 
);
1678
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1679
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1680
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1681
 
  (select id from ano where ano='2010') and mes_id =
1682
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1683
 
 
1684
 
);
1685
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1686
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1687
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1688
 
  (select id from ano where ano='2010') and mes_id =
1689
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Conciliações')
1690
 
 
1691
 
);
1692
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1693
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1694
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1695
 
  (select id from ano where ano='2010') and mes_id =
1696
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1697
 
 
1698
 
);
1699
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1700
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1701
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1702
 
  (select id from ano where ano='2010') and mes_id =
1703
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1704
 
 
1705
 
);
1706
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1707
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1708
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1709
 
  (select id from ano where ano='2010') and mes_id =
1710
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1711
 
 
1712
 
);
1713
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1714
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1715
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1716
 
  (select id from ano where ano='2010') and mes_id =
1717
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de empenho')
1718
 
 
1719
 
);
1720
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1721
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1722
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1723
 
  (select id from ano where ano='2010') and mes_id =
1724
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1725
 
 
1726
 
);
1727
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1728
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1729
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1730
 
  (select id from ano where ano='2010') and mes_id =
1731
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Conciliações')
1732
 
 
1733
 
);
1734
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1735
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1736
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1737
 
  (select id from ano where ano='2010') and mes_id =
1738
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1739
 
 
1740
 
);
1741
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1742
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1743
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1744
 
  (select id from ano where ano='2010') and mes_id =
1745
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1746
 
 
1747
 
);
1748
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1749
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1750
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1751
 
  (select id from ano where ano='2010') and mes_id =
1752
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1753
 
 
1754
 
);
1755
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1756
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1757
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1758
 
  (select id from ano where ano='2010') and mes_id =
1759
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de empenho')
1760
 
 
1761
 
);
1762
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1763
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1764
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1765
 
  (select id from ano where ano='2010') and mes_id =
1766
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1767
 
 
1768
 
);
1769
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1770
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1771
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1772
 
  (select id from ano where ano='2010') and mes_id =
1773
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Conciliações')
1774
 
 
1775
 
);
1776
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1777
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1778
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1779
 
  (select id from ano where ano='2010') and mes_id =
1780
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1781
 
 
1782
 
);
1783
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1784
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1785
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1786
 
  (select id from ano where ano='2010') and mes_id =
1787
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1788
 
 
1789
 
);
1790
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1791
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1792
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1793
 
  (select id from ano where ano='2010') and mes_id =
1794
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1795
 
 
1796
 
);
1797
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1798
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1799
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1800
 
  (select id from ano where ano='2010') and mes_id =
1801
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de empenho')
1802
 
 
1803
 
);
1804
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1805
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1806
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1807
 
  (select id from ano where ano='2010') and mes_id =
1808
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1809
 
 
1810
 
);
1811
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1812
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1813
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1814
 
  (select id from ano where ano='2010') and mes_id =
1815
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Conciliações')
1816
 
 
1817
 
);
1818
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1819
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1820
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1821
 
  (select id from ano where ano='2010') and mes_id =
1822
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1823
 
 
1824
 
);
1825
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1826
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1827
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1828
 
  (select id from ano where ano='2010') and mes_id =
1829
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1830
 
 
1831
 
);
1832
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1833
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1834
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1835
 
  (select id from ano where ano='2010') and mes_id =
1836
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1837
 
 
1838
 
);
1839
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1840
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1841
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1842
 
  (select id from ano where ano='2010') and mes_id =
1843
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de empenho')
1844
 
 
1845
 
);
1846
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1847
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1848
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1849
 
  (select id from ano where ano='2010') and mes_id =
1850
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1851
 
 
1852
 
);
1853
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1854
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1855
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1856
 
  (select id from ano where ano='2010') and mes_id =
1857
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Conciliações')
1858
 
 
1859
 
);
1860
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1861
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1862
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1863
 
  (select id from ano where ano='2010') and mes_id =
1864
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1865
 
 
1866
 
);
1867
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1868
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1869
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1870
 
  (select id from ano where ano='2010') and mes_id =
1871
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1872
 
 
1873
 
);
1874
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1875
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1876
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1877
 
  (select id from ano where ano='2010') and mes_id =
1878
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1879
 
 
1880
 
);
1881
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1882
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1883
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1884
 
  (select id from ano where ano='2010') and mes_id =
1885
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de empenho')
1886
 
 
1887
 
);
1888
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1889
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1890
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1891
 
  (select id from ano where ano='2010') and mes_id =
1892
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1893
 
 
1894
 
);
1895
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1896
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1897
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1898
 
  (select id from ano where ano='2010') and mes_id =
1899
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Conciliações')
1900
 
 
1901
 
);
1902
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1903
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1904
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1905
 
  (select id from ano where ano='2010') and mes_id =
1906
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1907
 
 
1908
 
);
1909
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1910
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1911
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1912
 
  (select id from ano where ano='2010') and mes_id =
1913
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1914
 
 
1915
 
);
1916
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1917
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1918
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1919
 
  (select id from ano where ano='2010') and mes_id =
1920
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1921
 
 
1922
 
);
1923
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1924
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1925
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1926
 
  (select id from ano where ano='2010') and mes_id =
1927
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de empenho')
1928
 
 
1929
 
);
1930
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1931
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1932
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1933
 
  (select id from ano where ano='2010') and mes_id =
1934
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1935
 
 
1936
 
);
1937
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1938
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1939
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1940
 
  (select id from ano where ano='2010') and mes_id =
1941
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Conciliações')
1942
 
 
1943
 
);
1944
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1945
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1946
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1947
 
  (select id from ano where ano='2010') and mes_id =
1948
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1949
 
 
1950
 
);
1951
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1952
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1953
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1954
 
  (select id from ano where ano='2010') and mes_id =
1955
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
1956
 
 
1957
 
);
1958
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1959
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1960
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1961
 
  (select id from ano where ano='2010') and mes_id =
1962
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
1963
 
 
1964
 
);
1965
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1966
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1967
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1968
 
  (select id from ano where ano='2010') and mes_id =
1969
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de empenho')
1970
 
 
1971
 
);
1972
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1973
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1974
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1975
 
  (select id from ano where ano='2010') and mes_id =
1976
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de cancelamento')
1977
 
 
1978
 
);
1979
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1980
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1981
 
  (select id from tipo_cliente where nome = 'Câmaras') and ano_id =
1982
 
  (select id from ano where ano='2010') and mes_id =
1983
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Conciliações')
1984
 
 
1985
 
);
1986
 
 
1987
 
 
1988
 
 
1989
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1990
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1991
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
1992
 
  (select id from ano where ano='2010') and mes_id =
1993
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Balancetes Mensais')
1994
 
 
1995
 
);
1996
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
1997
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
1998
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
1999
 
  (select id from ano where ano='2010') and mes_id =
2000
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de empenho')
2001
 
 
2002
 
);
2003
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2004
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2005
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2006
 
  (select id from ano where ano='2010') and mes_id =
2007
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2008
 
 
2009
 
);
2010
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2011
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2012
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2013
 
  (select id from ano where ano='2010') and mes_id =
2014
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Conciliações')
2015
 
 
2016
 
);
2017
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2018
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2019
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2020
 
  (select id from ano where ano='2010') and mes_id =
2021
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2022
 
 
2023
 
);
2024
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2025
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2026
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2027
 
  (select id from ano where ano='2010') and mes_id =
2028
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de empenho')
2029
 
 
2030
 
);
2031
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2032
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2033
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2034
 
  (select id from ano where ano='2010') and mes_id =
2035
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2036
 
 
2037
 
);
2038
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2039
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2040
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2041
 
  (select id from ano where ano='2010') and mes_id =
2042
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Conciliações')
2043
 
 
2044
 
);
2045
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2046
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2047
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2048
 
  (select id from ano where ano='2010') and mes_id =
2049
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2050
 
 
2051
 
);
2052
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2053
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2054
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2055
 
  (select id from ano where ano='2010') and mes_id =
2056
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de empenho')
2057
 
 
2058
 
);
2059
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2060
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2061
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2062
 
  (select id from ano where ano='2010') and mes_id =
2063
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2064
 
 
2065
 
);
2066
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2067
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2068
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2069
 
  (select id from ano where ano='2010') and mes_id =
2070
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Conciliações')
2071
 
 
2072
 
);
2073
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2074
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2075
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2076
 
  (select id from ano where ano='2010') and mes_id =
2077
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2078
 
 
2079
 
);
2080
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2081
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2082
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2083
 
  (select id from ano where ano='2010') and mes_id =
2084
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de empenho')
2085
 
 
2086
 
);
2087
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2088
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2089
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2090
 
  (select id from ano where ano='2010') and mes_id =
2091
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2092
 
 
2093
 
);
2094
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2095
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2096
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2097
 
  (select id from ano where ano='2010') and mes_id =
2098
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Conciliações')
2099
 
 
2100
 
);
2101
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2102
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2103
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2104
 
  (select id from ano where ano='2010') and mes_id =
2105
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2106
 
 
2107
 
);
2108
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2109
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2110
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2111
 
  (select id from ano where ano='2010') and mes_id =
2112
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de empenho')
2113
 
 
2114
 
);
2115
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2116
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2117
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2118
 
  (select id from ano where ano='2010') and mes_id =
2119
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2120
 
 
2121
 
);
2122
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2123
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2124
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2125
 
  (select id from ano where ano='2010') and mes_id =
2126
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Conciliações')
2127
 
 
2128
 
);
2129
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2130
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2131
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2132
 
  (select id from ano where ano='2010') and mes_id =
2133
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2134
 
 
2135
 
);
2136
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2137
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2138
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2139
 
  (select id from ano where ano='2010') and mes_id =
2140
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de empenho')
2141
 
 
2142
 
);
2143
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2144
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2145
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2146
 
  (select id from ano where ano='2010') and mes_id =
2147
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2148
 
 
2149
 
);
2150
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2151
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2152
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2153
 
  (select id from ano where ano='2010') and mes_id =
2154
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Conciliações')
2155
 
 
2156
 
);
2157
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2158
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2159
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2160
 
  (select id from ano where ano='2010') and mes_id =
2161
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2162
 
 
2163
 
);
2164
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2165
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2166
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2167
 
  (select id from ano where ano='2010') and mes_id =
2168
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de empenho')
2169
 
 
2170
 
);
2171
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2172
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2173
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2174
 
  (select id from ano where ano='2010') and mes_id =
2175
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2176
 
 
2177
 
);
2178
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2179
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2180
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2181
 
  (select id from ano where ano='2010') and mes_id =
2182
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Conciliações')
2183
 
 
2184
 
);
2185
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2186
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2187
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2188
 
  (select id from ano where ano='2010') and mes_id =
2189
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2190
 
 
2191
 
);
2192
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2193
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2194
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2195
 
  (select id from ano where ano='2010') and mes_id =
2196
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de empenho')
2197
 
 
2198
 
);
2199
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2200
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2201
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2202
 
  (select id from ano where ano='2010') and mes_id =
2203
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2204
 
 
2205
 
);
2206
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2207
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2208
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2209
 
  (select id from ano where ano='2010') and mes_id =
2210
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Conciliações')
2211
 
 
2212
 
);
2213
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2214
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2215
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2216
 
  (select id from ano where ano='2010') and mes_id =
2217
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2218
 
 
2219
 
);
2220
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2221
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2222
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2223
 
  (select id from ano where ano='2010') and mes_id =
2224
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de empenho')
2225
 
 
2226
 
);
2227
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2228
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2229
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2230
 
  (select id from ano where ano='2010') and mes_id =
2231
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2232
 
 
2233
 
);
2234
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2235
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2236
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2237
 
  (select id from ano where ano='2010') and mes_id =
2238
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Conciliações')
2239
 
 
2240
 
);
2241
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2242
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2243
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2244
 
  (select id from ano where ano='2010') and mes_id =
2245
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2246
 
 
2247
 
);
2248
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2249
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2250
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2251
 
  (select id from ano where ano='2010') and mes_id =
2252
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de empenho')
2253
 
 
2254
 
);
2255
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2256
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2257
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2258
 
  (select id from ano where ano='2010') and mes_id =
2259
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2260
 
 
2261
 
);
2262
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2263
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2264
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2265
 
  (select id from ano where ano='2010') and mes_id =
2266
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Conciliações')
2267
 
 
2268
 
);
2269
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2270
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2271
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2272
 
  (select id from ano where ano='2010') and mes_id =
2273
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2274
 
 
2275
 
);
2276
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2277
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2278
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2279
 
  (select id from ano where ano='2010') and mes_id =
2280
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de empenho')
2281
 
 
2282
 
);
2283
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2284
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2285
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2286
 
  (select id from ano where ano='2010') and mes_id =
2287
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2288
 
 
2289
 
);
2290
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2291
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2292
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2293
 
  (select id from ano where ano='2010') and mes_id =
2294
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Conciliações')
2295
 
 
2296
 
);
2297
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2298
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2299
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2300
 
  (select id from ano where ano='2010') and mes_id =
2301
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2302
 
 
2303
 
);
2304
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2305
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2306
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2307
 
  (select id from ano where ano='2010') and mes_id =
2308
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de empenho')
2309
 
 
2310
 
);
2311
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2312
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2313
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2314
 
  (select id from ano where ano='2010') and mes_id =
2315
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2316
 
 
2317
 
);
2318
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2319
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2320
 
  (select id from tipo_cliente where nome = 'Outros órgãos') and ano_id =
2321
 
  (select id from ano where ano='2010') and mes_id =
2322
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Conciliações')
2323
 
 
2324
 
);
2325
 
 
2326
 
 
2327
 
 
2328
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2329
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2330
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2331
 
  (select id from ano where ano='2010') and mes_id =
2332
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2333
 
 
2334
 
);
2335
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2336
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2337
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2338
 
  (select id from ano where ano='2010') and mes_id =
2339
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2340
 
 
2341
 
);
2342
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2343
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2344
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2345
 
  (select id from ano where ano='2010') and mes_id =
2346
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2347
 
 
2348
 
);
2349
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2350
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2351
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2352
 
  (select id from ano where ano='2010') and mes_id =
2353
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de empenho')
2354
 
 
2355
 
);
2356
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2357
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2358
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2359
 
  (select id from ano where ano='2010') and mes_id =
2360
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2361
 
 
2362
 
);
2363
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2364
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2365
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2366
 
  (select id from ano where ano='2010') and mes_id =
2367
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Conciliações')
2368
 
 
2369
 
);
2370
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2371
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2372
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2373
 
  (select id from ano where ano='2010') and mes_id =
2374
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2375
 
 
2376
 
);
2377
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2378
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2379
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2380
 
  (select id from ano where ano='2010') and mes_id =
2381
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2382
 
 
2383
 
);
2384
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2385
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2386
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2387
 
  (select id from ano where ano='2010') and mes_id =
2388
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2389
 
 
2390
 
);
2391
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2392
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2393
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2394
 
  (select id from ano where ano='2010') and mes_id =
2395
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de empenho')
2396
 
 
2397
 
);
2398
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2399
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2400
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2401
 
  (select id from ano where ano='2010') and mes_id =
2402
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2403
 
 
2404
 
);
2405
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2406
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2407
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2408
 
  (select id from ano where ano='2010') and mes_id =
2409
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Conciliações')
2410
 
 
2411
 
);
2412
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2413
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2414
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2415
 
  (select id from ano where ano='2010') and mes_id =
2416
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2417
 
 
2418
 
);
2419
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2420
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2421
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2422
 
  (select id from ano where ano='2010') and mes_id =
2423
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2424
 
 
2425
 
);
2426
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2427
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2428
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2429
 
  (select id from ano where ano='2010') and mes_id =
2430
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2431
 
 
2432
 
);
2433
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2434
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2435
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2436
 
  (select id from ano where ano='2010') and mes_id =
2437
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de empenho')
2438
 
 
2439
 
);
2440
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2441
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2442
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2443
 
  (select id from ano where ano='2010') and mes_id =
2444
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2445
 
 
2446
 
);
2447
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2448
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2449
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2450
 
  (select id from ano where ano='2010') and mes_id =
2451
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Conciliações')
2452
 
 
2453
 
);
2454
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2455
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2456
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2457
 
  (select id from ano where ano='2010') and mes_id =
2458
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2459
 
 
2460
 
);
2461
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2462
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2463
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2464
 
  (select id from ano where ano='2010') and mes_id =
2465
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2466
 
 
2467
 
);
2468
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2469
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2470
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2471
 
  (select id from ano where ano='2010') and mes_id =
2472
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2473
 
 
2474
 
);
2475
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2476
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2477
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2478
 
  (select id from ano where ano='2010') and mes_id =
2479
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de empenho')
2480
 
 
2481
 
);
2482
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2483
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2484
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2485
 
  (select id from ano where ano='2010') and mes_id =
2486
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2487
 
 
2488
 
);
2489
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2490
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2491
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2492
 
  (select id from ano where ano='2010') and mes_id =
2493
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Conciliações')
2494
 
 
2495
 
);
2496
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2497
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2498
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2499
 
  (select id from ano where ano='2010') and mes_id =
2500
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2501
 
 
2502
 
);
2503
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2504
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2505
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2506
 
  (select id from ano where ano='2010') and mes_id =
2507
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2508
 
 
2509
 
);
2510
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2511
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2512
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2513
 
  (select id from ano where ano='2010') and mes_id =
2514
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2515
 
 
2516
 
);
2517
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2518
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2519
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2520
 
  (select id from ano where ano='2010') and mes_id =
2521
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de empenho')
2522
 
 
2523
 
);
2524
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2525
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2526
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2527
 
  (select id from ano where ano='2010') and mes_id =
2528
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2529
 
 
2530
 
);
2531
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2532
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2533
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2534
 
  (select id from ano where ano='2010') and mes_id =
2535
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Conciliações')
2536
 
 
2537
 
);
2538
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2539
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2540
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2541
 
  (select id from ano where ano='2010') and mes_id =
2542
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2543
 
 
2544
 
);
2545
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2546
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2547
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2548
 
  (select id from ano where ano='2010') and mes_id =
2549
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2550
 
 
2551
 
);
2552
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2553
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2554
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2555
 
  (select id from ano where ano='2010') and mes_id =
2556
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2557
 
 
2558
 
);
2559
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2560
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2561
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2562
 
  (select id from ano where ano='2010') and mes_id =
2563
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de empenho')
2564
 
 
2565
 
);
2566
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2567
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2568
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2569
 
  (select id from ano where ano='2010') and mes_id =
2570
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2571
 
 
2572
 
);
2573
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2574
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2575
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2576
 
  (select id from ano where ano='2010') and mes_id =
2577
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Conciliações')
2578
 
 
2579
 
);
2580
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2581
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2582
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2583
 
  (select id from ano where ano='2010') and mes_id =
2584
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2585
 
 
2586
 
);
2587
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2588
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2589
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2590
 
  (select id from ano where ano='2010') and mes_id =
2591
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2592
 
 
2593
 
);
2594
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2595
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2596
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2597
 
  (select id from ano where ano='2010') and mes_id =
2598
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2599
 
 
2600
 
);
2601
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2602
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2603
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2604
 
  (select id from ano where ano='2010') and mes_id =
2605
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de empenho')
2606
 
 
2607
 
);
2608
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2609
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2610
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2611
 
  (select id from ano where ano='2010') and mes_id =
2612
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2613
 
 
2614
 
);
2615
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2616
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2617
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2618
 
  (select id from ano where ano='2010') and mes_id =
2619
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Conciliações')
2620
 
 
2621
 
);
2622
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2623
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2624
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2625
 
  (select id from ano where ano='2010') and mes_id =
2626
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2627
 
 
2628
 
);
2629
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2630
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2631
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2632
 
  (select id from ano where ano='2010') and mes_id =
2633
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2634
 
 
2635
 
);
2636
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2637
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2638
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2639
 
  (select id from ano where ano='2010') and mes_id =
2640
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2641
 
 
2642
 
);
2643
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2644
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2645
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2646
 
  (select id from ano where ano='2010') and mes_id =
2647
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de empenho')
2648
 
 
2649
 
);
2650
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2651
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2652
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2653
 
  (select id from ano where ano='2010') and mes_id =
2654
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2655
 
 
2656
 
);
2657
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2658
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2659
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2660
 
  (select id from ano where ano='2010') and mes_id =
2661
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Conciliações')
2662
 
 
2663
 
);
2664
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2665
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2666
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2667
 
  (select id from ano where ano='2010') and mes_id =
2668
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2669
 
 
2670
 
);
2671
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2672
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2673
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2674
 
  (select id from ano where ano='2010') and mes_id =
2675
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2676
 
 
2677
 
);
2678
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2679
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2680
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2681
 
  (select id from ano where ano='2010') and mes_id =
2682
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2683
 
 
2684
 
);
2685
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2686
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2687
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2688
 
  (select id from ano where ano='2010') and mes_id =
2689
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de empenho')
2690
 
 
2691
 
);
2692
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2693
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2694
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2695
 
  (select id from ano where ano='2010') and mes_id =
2696
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2697
 
 
2698
 
);
2699
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2700
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2701
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2702
 
  (select id from ano where ano='2010') and mes_id =
2703
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Conciliações')
2704
 
 
2705
 
);
2706
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2707
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2708
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2709
 
  (select id from ano where ano='2010') and mes_id =
2710
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2711
 
 
2712
 
);
2713
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2714
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2715
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2716
 
  (select id from ano where ano='2010') and mes_id =
2717
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2718
 
 
2719
 
);
2720
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2721
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2722
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2723
 
  (select id from ano where ano='2010') and mes_id =
2724
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2725
 
 
2726
 
);
2727
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2728
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2729
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2730
 
  (select id from ano where ano='2010') and mes_id =
2731
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de empenho')
2732
 
 
2733
 
);
2734
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2735
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2736
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2737
 
  (select id from ano where ano='2010') and mes_id =
2738
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2739
 
 
2740
 
);
2741
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2742
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2743
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2744
 
  (select id from ano where ano='2010') and mes_id =
2745
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Conciliações')
2746
 
 
2747
 
);
2748
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2749
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2750
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2751
 
  (select id from ano where ano='2010') and mes_id =
2752
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2753
 
 
2754
 
);
2755
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2756
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2757
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2758
 
  (select id from ano where ano='2010') and mes_id =
2759
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2760
 
 
2761
 
);
2762
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2763
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2764
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2765
 
  (select id from ano where ano='2010') and mes_id =
2766
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2767
 
 
2768
 
);
2769
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2770
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2771
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2772
 
  (select id from ano where ano='2010') and mes_id =
2773
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de empenho')
2774
 
 
2775
 
);
2776
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2777
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2778
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2779
 
  (select id from ano where ano='2010') and mes_id =
2780
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2781
 
 
2782
 
);
2783
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2784
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2785
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2786
 
  (select id from ano where ano='2010') and mes_id =
2787
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Conciliações')
2788
 
 
2789
 
);
2790
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2791
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2792
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2793
 
  (select id from ano where ano='2010') and mes_id =
2794
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2795
 
 
2796
 
);
2797
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2798
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2799
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2800
 
  (select id from ano where ano='2010') and mes_id =
2801
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Relatórios LRF - RREO')
2802
 
 
2803
 
);
2804
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2805
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2806
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2807
 
  (select id from ano where ano='2010') and mes_id =
2808
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Relatórios LRF - RGF')
2809
 
 
2810
 
);
2811
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2812
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2813
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2814
 
  (select id from ano where ano='2010') and mes_id =
2815
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de empenho')
2816
 
 
2817
 
);
2818
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2819
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2820
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2821
 
  (select id from ano where ano='2010') and mes_id =
2822
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2823
 
 
2824
 
);
2825
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2826
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2827
 
  (select id from tipo_cliente where nome = 'Institutos de previdência') and ano_id =
2828
 
  (select id from ano where ano='2010') and mes_id =
2829
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Conciliações')
2830
 
 
2831
 
);
2832
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2833
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2834
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2835
 
  (select id from ano where ano='2010') and mes_id =
2836
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2837
 
 
2838
 
);
2839
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2840
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2841
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2842
 
  (select id from ano where ano='2010') and mes_id =
2843
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de empenho')
2844
 
 
2845
 
);
2846
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2847
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2848
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2849
 
  (select id from ano where ano='2010') and mes_id =
2850
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2851
 
 
2852
 
);
2853
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2854
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2855
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2856
 
  (select id from ano where ano='2010') and mes_id =
2857
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Conciliações')
2858
 
 
2859
 
);
2860
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2861
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2862
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2863
 
  (select id from ano where ano='2010') and mes_id =
2864
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2865
 
 
2866
 
);
2867
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2868
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2869
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2870
 
  (select id from ano where ano='2010') and mes_id =
2871
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de empenho')
2872
 
 
2873
 
);
2874
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2875
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2876
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2877
 
  (select id from ano where ano='2010') and mes_id =
2878
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2879
 
 
2880
 
);
2881
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2882
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2883
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2884
 
  (select id from ano where ano='2010') and mes_id =
2885
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Conciliações')
2886
 
 
2887
 
);
2888
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2889
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2890
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2891
 
  (select id from ano where ano='2010') and mes_id =
2892
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2893
 
 
2894
 
);
2895
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2896
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2897
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2898
 
  (select id from ano where ano='2010') and mes_id =
2899
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de empenho')
2900
 
 
2901
 
);
2902
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2903
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2904
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2905
 
  (select id from ano where ano='2010') and mes_id =
2906
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2907
 
 
2908
 
);
2909
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2910
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2911
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2912
 
  (select id from ano where ano='2010') and mes_id =
2913
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Conciliações')
2914
 
 
2915
 
);
2916
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2917
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2918
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2919
 
  (select id from ano where ano='2010') and mes_id =
2920
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2921
 
 
2922
 
);
2923
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2924
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2925
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2926
 
  (select id from ano where ano='2010') and mes_id =
2927
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de empenho')
2928
 
 
2929
 
);
2930
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2931
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2932
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2933
 
  (select id from ano where ano='2010') and mes_id =
2934
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2935
 
 
2936
 
);
2937
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2938
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2939
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2940
 
  (select id from ano where ano='2010') and mes_id =
2941
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Conciliações')
2942
 
 
2943
 
);
2944
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2945
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2946
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2947
 
  (select id from ano where ano='2010') and mes_id =
2948
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2949
 
 
2950
 
);
2951
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2952
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2953
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2954
 
  (select id from ano where ano='2010') and mes_id =
2955
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de empenho')
2956
 
 
2957
 
);
2958
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2959
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2960
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2961
 
  (select id from ano where ano='2010') and mes_id =
2962
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2963
 
 
2964
 
);
2965
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2966
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2967
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2968
 
  (select id from ano where ano='2010') and mes_id =
2969
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Conciliações')
2970
 
 
2971
 
);
2972
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2973
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2974
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2975
 
  (select id from ano where ano='2010') and mes_id =
2976
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Balancetes Mensais')
2977
 
 
2978
 
);
2979
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2980
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2981
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2982
 
  (select id from ano where ano='2010') and mes_id =
2983
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de empenho')
2984
 
 
2985
 
);
2986
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2987
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2988
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2989
 
  (select id from ano where ano='2010') and mes_id =
2990
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de cancelamento')
2991
 
 
2992
 
);
2993
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
2994
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
2995
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
2996
 
  (select id from ano where ano='2010') and mes_id =
2997
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Conciliações')
2998
 
 
2999
 
);
3000
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3001
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3002
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3003
 
  (select id from ano where ano='2010') and mes_id =
3004
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3005
 
 
3006
 
);
3007
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3008
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3009
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3010
 
  (select id from ano where ano='2010') and mes_id =
3011
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de empenho')
3012
 
 
3013
 
);
3014
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3015
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3016
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3017
 
  (select id from ano where ano='2010') and mes_id =
3018
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3019
 
 
3020
 
);
3021
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3022
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3023
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3024
 
  (select id from ano where ano='2010') and mes_id =
3025
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Conciliações')
3026
 
 
3027
 
);
3028
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3029
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3030
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3031
 
  (select id from ano where ano='2010') and mes_id =
3032
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3033
 
 
3034
 
);
3035
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3036
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3037
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3038
 
  (select id from ano where ano='2010') and mes_id =
3039
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de empenho')
3040
 
 
3041
 
);
3042
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3043
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3044
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3045
 
  (select id from ano where ano='2010') and mes_id =
3046
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3047
 
 
3048
 
);
3049
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3050
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3051
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3052
 
  (select id from ano where ano='2010') and mes_id =
3053
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Conciliações')
3054
 
 
3055
 
);
3056
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3057
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3058
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3059
 
  (select id from ano where ano='2010') and mes_id =
3060
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3061
 
 
3062
 
);
3063
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3064
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3065
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3066
 
  (select id from ano where ano='2010') and mes_id =
3067
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de empenho')
3068
 
 
3069
 
);
3070
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3071
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3072
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3073
 
  (select id from ano where ano='2010') and mes_id =
3074
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3075
 
 
3076
 
);
3077
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3078
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3079
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3080
 
  (select id from ano where ano='2010') and mes_id =
3081
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Conciliações')
3082
 
 
3083
 
);
3084
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3085
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3086
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3087
 
  (select id from ano where ano='2010') and mes_id =
3088
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3089
 
 
3090
 
);
3091
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3092
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3093
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3094
 
  (select id from ano where ano='2010') and mes_id =
3095
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de empenho')
3096
 
 
3097
 
);
3098
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3099
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3100
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3101
 
  (select id from ano where ano='2010') and mes_id =
3102
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3103
 
 
3104
 
);
3105
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3106
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3107
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3108
 
  (select id from ano where ano='2010') and mes_id =
3109
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Conciliações')
3110
 
 
3111
 
);
3112
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3113
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3114
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3115
 
  (select id from ano where ano='2010') and mes_id =
3116
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3117
 
 
3118
 
);
3119
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3120
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3121
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3122
 
  (select id from ano where ano='2010') and mes_id =
3123
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de empenho')
3124
 
 
3125
 
);
3126
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3127
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3128
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3129
 
  (select id from ano where ano='2010') and mes_id =
3130
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3131
 
 
3132
 
);
3133
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3134
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3135
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3136
 
  (select id from ano where ano='2010') and mes_id =
3137
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Conciliações')
3138
 
 
3139
 
);
3140
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3141
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3142
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3143
 
  (select id from ano where ano='2010') and mes_id =
3144
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3145
 
 
3146
 
);
3147
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3148
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3149
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3150
 
  (select id from ano where ano='2010') and mes_id =
3151
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de empenho')
3152
 
 
3153
 
);
3154
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3155
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3156
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3157
 
  (select id from ano where ano='2010') and mes_id =
3158
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3159
 
 
3160
 
);
3161
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3162
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3163
 
  (select id from tipo_cliente where nome = 'Fundos municipais de saúde') and ano_id =
3164
 
  (select id from ano where ano='2010') and mes_id =
3165
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Conciliações')
3166
 
 
3167
 
);
3168
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3169
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3170
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3171
 
  (select id from ano where ano='2010') and mes_id =
3172
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3173
 
 
3174
 
);
3175
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3176
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3177
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3178
 
  (select id from ano where ano='2010') and mes_id =
3179
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de empenho')
3180
 
 
3181
 
);
3182
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3183
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3184
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3185
 
  (select id from ano where ano='2010') and mes_id =
3186
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3187
 
 
3188
 
);
3189
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3190
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3191
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3192
 
  (select id from ano where ano='2010') and mes_id =
3193
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Conciliações')
3194
 
 
3195
 
);
3196
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3197
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3198
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3199
 
  (select id from ano where ano='2010') and mes_id =
3200
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3201
 
 
3202
 
);
3203
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3204
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3205
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3206
 
  (select id from ano where ano='2010') and mes_id =
3207
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de empenho')
3208
 
 
3209
 
);
3210
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3211
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3212
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3213
 
  (select id from ano where ano='2010') and mes_id =
3214
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3215
 
 
3216
 
);
3217
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3218
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3219
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3220
 
  (select id from ano where ano='2010') and mes_id =
3221
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Conciliações')
3222
 
 
3223
 
);
3224
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3225
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3226
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3227
 
  (select id from ano where ano='2010') and mes_id =
3228
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3229
 
 
3230
 
);
3231
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3232
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3233
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3234
 
  (select id from ano where ano='2010') and mes_id =
3235
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de empenho')
3236
 
 
3237
 
);
3238
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3239
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3240
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3241
 
  (select id from ano where ano='2010') and mes_id =
3242
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3243
 
 
3244
 
);
3245
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3246
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3247
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3248
 
  (select id from ano where ano='2010') and mes_id =
3249
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Conciliações')
3250
 
 
3251
 
);
3252
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3253
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3254
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3255
 
  (select id from ano where ano='2010') and mes_id =
3256
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3257
 
 
3258
 
);
3259
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3260
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3261
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3262
 
  (select id from ano where ano='2010') and mes_id =
3263
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de empenho')
3264
 
 
3265
 
);
3266
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3267
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3268
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3269
 
  (select id from ano where ano='2010') and mes_id =
3270
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3271
 
 
3272
 
);
3273
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3274
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3275
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3276
 
  (select id from ano where ano='2010') and mes_id =
3277
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Conciliações')
3278
 
 
3279
 
);
3280
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3281
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3282
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3283
 
  (select id from ano where ano='2010') and mes_id =
3284
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3285
 
 
3286
 
);
3287
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3288
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3289
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3290
 
  (select id from ano where ano='2010') and mes_id =
3291
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de empenho')
3292
 
 
3293
 
);
3294
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3295
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3296
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3297
 
  (select id from ano where ano='2010') and mes_id =
3298
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3299
 
 
3300
 
);
3301
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3302
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3303
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3304
 
  (select id from ano where ano='2010') and mes_id =
3305
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Conciliações')
3306
 
 
3307
 
);
3308
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3309
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3310
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3311
 
  (select id from ano where ano='2010') and mes_id =
3312
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3313
 
 
3314
 
);
3315
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3316
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3317
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3318
 
  (select id from ano where ano='2010') and mes_id =
3319
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de empenho')
3320
 
 
3321
 
);
3322
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3323
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3324
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3325
 
  (select id from ano where ano='2010') and mes_id =
3326
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3327
 
 
3328
 
);
3329
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3330
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3331
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3332
 
  (select id from ano where ano='2010') and mes_id =
3333
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Conciliações')
3334
 
 
3335
 
);
3336
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3337
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3338
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3339
 
  (select id from ano where ano='2010') and mes_id =
3340
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3341
 
 
3342
 
);
3343
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3344
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3345
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3346
 
  (select id from ano where ano='2010') and mes_id =
3347
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de empenho')
3348
 
 
3349
 
);
3350
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3351
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3352
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3353
 
  (select id from ano where ano='2010') and mes_id =
3354
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3355
 
 
3356
 
);
3357
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3358
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3359
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3360
 
  (select id from ano where ano='2010') and mes_id =
3361
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Conciliações')
3362
 
 
3363
 
);
3364
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3365
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3366
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3367
 
  (select id from ano where ano='2010') and mes_id =
3368
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3369
 
 
3370
 
);
3371
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3372
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3373
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3374
 
  (select id from ano where ano='2010') and mes_id =
3375
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de empenho')
3376
 
 
3377
 
);
3378
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3379
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3380
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3381
 
  (select id from ano where ano='2010') and mes_id =
3382
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3383
 
 
3384
 
);
3385
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3386
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3387
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3388
 
  (select id from ano where ano='2010') and mes_id =
3389
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Conciliações')
3390
 
 
3391
 
);
3392
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3393
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3394
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3395
 
  (select id from ano where ano='2010') and mes_id =
3396
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3397
 
 
3398
 
);
3399
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3400
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3401
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3402
 
  (select id from ano where ano='2010') and mes_id =
3403
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de empenho')
3404
 
 
3405
 
);
3406
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3407
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3408
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3409
 
  (select id from ano where ano='2010') and mes_id =
3410
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3411
 
 
3412
 
);
3413
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3414
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3415
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3416
 
  (select id from ano where ano='2010') and mes_id =
3417
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Conciliações')
3418
 
 
3419
 
);
3420
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3421
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3422
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3423
 
  (select id from ano where ano='2010') and mes_id =
3424
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3425
 
 
3426
 
);
3427
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3428
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3429
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3430
 
  (select id from ano where ano='2010') and mes_id =
3431
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de empenho')
3432
 
 
3433
 
);
3434
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3435
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3436
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3437
 
  (select id from ano where ano='2010') and mes_id =
3438
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3439
 
 
3440
 
);
3441
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3442
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3443
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3444
 
  (select id from ano where ano='2010') and mes_id =
3445
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Conciliações')
3446
 
 
3447
 
);
3448
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3449
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3450
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3451
 
  (select id from ano where ano='2010') and mes_id =
3452
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3453
 
 
3454
 
);
3455
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3456
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3457
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3458
 
  (select id from ano where ano='2010') and mes_id =
3459
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de empenho')
3460
 
 
3461
 
);
3462
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3463
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3464
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3465
 
  (select id from ano where ano='2010') and mes_id =
3466
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3467
 
 
3468
 
);
3469
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3470
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3471
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3472
 
  (select id from ano where ano='2010') and mes_id =
3473
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Conciliações')
3474
 
 
3475
 
);
3476
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3477
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3478
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3479
 
  (select id from ano where ano='2010') and mes_id =
3480
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3481
 
 
3482
 
);
3483
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3484
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3485
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3486
 
  (select id from ano where ano='2010') and mes_id =
3487
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de empenho')
3488
 
 
3489
 
);
3490
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3491
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3492
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3493
 
  (select id from ano where ano='2010') and mes_id =
3494
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3495
 
 
3496
 
);
3497
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3498
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3499
 
  (select id from tipo_cliente where nome = 'Fundos municipais de educação') and ano_id =
3500
 
  (select id from ano where ano='2010') and mes_id =
3501
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Conciliações')
3502
 
 
3503
 
);
3504
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3505
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3506
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3507
 
  (select id from ano where ano='2010') and mes_id =
3508
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3509
 
 
3510
 
);
3511
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3512
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3513
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3514
 
  (select id from ano where ano='2010') and mes_id =
3515
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de empenho')
3516
 
 
3517
 
);
3518
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3519
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3520
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3521
 
  (select id from ano where ano='2010') and mes_id =
3522
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3523
 
 
3524
 
);
3525
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3526
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3527
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3528
 
  (select id from ano where ano='2010') and mes_id =
3529
 
  (select id from mes where codigo='01')), (select id from tipo_relatorio where nome='Conciliações')
3530
 
 
3531
 
);
3532
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3533
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3534
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3535
 
  (select id from ano where ano='2010') and mes_id =
3536
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3537
 
 
3538
 
);
3539
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3540
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3541
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3542
 
  (select id from ano where ano='2010') and mes_id =
3543
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de empenho')
3544
 
 
3545
 
);
3546
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3547
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3548
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3549
 
  (select id from ano where ano='2010') and mes_id =
3550
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3551
 
 
3552
 
);
3553
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3554
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3555
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3556
 
  (select id from ano where ano='2010') and mes_id =
3557
 
  (select id from mes where codigo='02')), (select id from tipo_relatorio where nome='Conciliações')
3558
 
 
3559
 
);
3560
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3561
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3562
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3563
 
  (select id from ano where ano='2010') and mes_id =
3564
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3565
 
 
3566
 
);
3567
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3568
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3569
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3570
 
  (select id from ano where ano='2010') and mes_id =
3571
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de empenho')
3572
 
 
3573
 
);
3574
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3575
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3576
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3577
 
  (select id from ano where ano='2010') and mes_id =
3578
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3579
 
 
3580
 
);
3581
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3582
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3583
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3584
 
  (select id from ano where ano='2010') and mes_id =
3585
 
  (select id from mes where codigo='03')), (select id from tipo_relatorio where nome='Conciliações')
3586
 
 
3587
 
);
3588
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3589
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3590
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3591
 
  (select id from ano where ano='2010') and mes_id =
3592
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3593
 
 
3594
 
);
3595
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3596
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3597
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3598
 
  (select id from ano where ano='2010') and mes_id =
3599
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de empenho')
3600
 
 
3601
 
);
3602
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3603
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3604
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3605
 
  (select id from ano where ano='2010') and mes_id =
3606
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3607
 
 
3608
 
);
3609
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3610
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3611
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3612
 
  (select id from ano where ano='2010') and mes_id =
3613
 
  (select id from mes where codigo='04')), (select id from tipo_relatorio where nome='Conciliações')
3614
 
 
3615
 
);
3616
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3617
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3618
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3619
 
  (select id from ano where ano='2010') and mes_id =
3620
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3621
 
 
3622
 
);
3623
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3624
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3625
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3626
 
  (select id from ano where ano='2010') and mes_id =
3627
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de empenho')
3628
 
 
3629
 
);
3630
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3631
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3632
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3633
 
  (select id from ano where ano='2010') and mes_id =
3634
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3635
 
 
3636
 
);
3637
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3638
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3639
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3640
 
  (select id from ano where ano='2010') and mes_id =
3641
 
  (select id from mes where codigo='05')), (select id from tipo_relatorio where nome='Conciliações')
3642
 
 
3643
 
);
3644
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3645
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3646
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3647
 
  (select id from ano where ano='2010') and mes_id =
3648
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3649
 
 
3650
 
);
3651
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3652
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3653
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3654
 
  (select id from ano where ano='2010') and mes_id =
3655
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de empenho')
3656
 
 
3657
 
);
3658
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3659
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3660
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3661
 
  (select id from ano where ano='2010') and mes_id =
3662
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3663
 
 
3664
 
);
3665
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3666
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3667
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3668
 
  (select id from ano where ano='2010') and mes_id =
3669
 
  (select id from mes where codigo='06')), (select id from tipo_relatorio where nome='Conciliações')
3670
 
 
3671
 
);
3672
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3673
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3674
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3675
 
  (select id from ano where ano='2010') and mes_id =
3676
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3677
 
 
3678
 
);
3679
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3680
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3681
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3682
 
  (select id from ano where ano='2010') and mes_id =
3683
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de empenho')
3684
 
 
3685
 
);
3686
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3687
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3688
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3689
 
  (select id from ano where ano='2010') and mes_id =
3690
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3691
 
 
3692
 
);
3693
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3694
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3695
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3696
 
  (select id from ano where ano='2010') and mes_id =
3697
 
  (select id from mes where codigo='07')), (select id from tipo_relatorio where nome='Conciliações')
3698
 
 
3699
 
);
3700
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3701
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3702
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3703
 
  (select id from ano where ano='2010') and mes_id =
3704
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3705
 
 
3706
 
);
3707
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3708
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3709
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3710
 
  (select id from ano where ano='2010') and mes_id =
3711
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de empenho')
3712
 
 
3713
 
);
3714
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3715
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3716
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3717
 
  (select id from ano where ano='2010') and mes_id =
3718
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3719
 
 
3720
 
);
3721
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3722
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3723
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3724
 
  (select id from ano where ano='2010') and mes_id =
3725
 
  (select id from mes where codigo='08')), (select id from tipo_relatorio where nome='Conciliações')
3726
 
 
3727
 
);
3728
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3729
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3730
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3731
 
  (select id from ano where ano='2010') and mes_id =
3732
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3733
 
 
3734
 
);
3735
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3736
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3737
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3738
 
  (select id from ano where ano='2010') and mes_id =
3739
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de empenho')
3740
 
 
3741
 
);
3742
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3743
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3744
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3745
 
  (select id from ano where ano='2010') and mes_id =
3746
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3747
 
 
3748
 
);
3749
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3750
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3751
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3752
 
  (select id from ano where ano='2010') and mes_id =
3753
 
  (select id from mes where codigo='09')), (select id from tipo_relatorio where nome='Conciliações')
3754
 
 
3755
 
);
3756
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3757
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3758
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3759
 
  (select id from ano where ano='2010') and mes_id =
3760
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3761
 
 
3762
 
);
3763
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3764
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3765
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3766
 
  (select id from ano where ano='2010') and mes_id =
3767
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de empenho')
3768
 
 
3769
 
);
3770
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3771
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3772
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3773
 
  (select id from ano where ano='2010') and mes_id =
3774
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3775
 
 
3776
 
);
3777
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3778
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3779
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3780
 
  (select id from ano where ano='2010') and mes_id =
3781
 
  (select id from mes where codigo='10')), (select id from tipo_relatorio where nome='Conciliações')
3782
 
 
3783
 
);
3784
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3785
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3786
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3787
 
  (select id from ano where ano='2010') and mes_id =
3788
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3789
 
 
3790
 
);
3791
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3792
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3793
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3794
 
  (select id from ano where ano='2010') and mes_id =
3795
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de empenho')
3796
 
 
3797
 
);
3798
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3799
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3800
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3801
 
  (select id from ano where ano='2010') and mes_id =
3802
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3803
 
 
3804
 
);
3805
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3806
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3807
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3808
 
  (select id from ano where ano='2010') and mes_id =
3809
 
  (select id from mes where codigo='11')), (select id from tipo_relatorio where nome='Conciliações')
3810
 
 
3811
 
);
3812
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3813
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3814
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3815
 
  (select id from ano where ano='2010') and mes_id =
3816
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Balancetes Mensais')
3817
 
 
3818
 
);
3819
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3820
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3821
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3822
 
  (select id from ano where ano='2010') and mes_id =
3823
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de empenho')
3824
 
 
3825
 
);
3826
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3827
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3828
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3829
 
  (select id from ano where ano='2010') and mes_id =
3830
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Notas de cancelamento')
3831
 
 
3832
 
);
3833
 
insert into tipo_cliente_configuracao_tipos_relatorio(tipoclienteconfiguracao_id, tiporelatorio_id) values(
3834
 
  (select id from tipo_cliente_configuracao where tipo_cliente_id =
3835
 
  (select id from tipo_cliente where nome = 'Fundos municipais de assistência social') and ano_id =
3836
 
  (select id from ano where ano='2010') and mes_id =
3837
 
  (select id from mes where codigo='12')), (select id from tipo_relatorio where nome='Conciliações')
3838
 
 
3839
 
);
3840