-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx-default.conf
5515 lines (5513 loc) · 504 KB
/
nginx-default.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
server {
listen 8080;
server_name localhost;
rewrite ^/ticket/1$ https://github.com/openstreetmap/trac-tickets/issues/1 permanent;
rewrite ^/ticket/2$ https://github.com/openstreetmap/trac-tickets/issues/2 permanent;
rewrite ^/ticket/3$ https://github.com/openstreetmap/trac-tickets/issues/3 permanent;
rewrite ^/ticket/4$ https://github.com/openstreetmap/trac-tickets/issues/4 permanent;
rewrite ^/ticket/5$ https://github.com/openstreetmap/trac-tickets/issues/5 permanent;
rewrite ^/ticket/6$ https://github.com/openstreetmap/trac-tickets/issues/6 permanent;
rewrite ^/ticket/7$ https://github.com/openstreetmap/trac-tickets/issues/7 permanent;
rewrite ^/ticket/8$ https://github.com/openstreetmap/trac-tickets/issues/8 permanent;
rewrite ^/ticket/9$ https://github.com/openstreetmap/trac-tickets/issues/9 permanent;
rewrite ^/ticket/10$ https://github.com/openstreetmap/trac-tickets/issues/10 permanent;
rewrite ^/ticket/11$ https://github.com/openstreetmap/trac-tickets/issues/11 permanent;
rewrite ^/ticket/12$ https://github.com/openstreetmap/trac-tickets/issues/12 permanent;
rewrite ^/ticket/13$ https://github.com/openstreetmap/trac-tickets/issues/13 permanent;
rewrite ^/ticket/14$ https://github.com/openstreetmap/trac-tickets/issues/14 permanent;
rewrite ^/ticket/15$ https://github.com/openstreetmap/trac-tickets/issues/15 permanent;
rewrite ^/ticket/16$ https://github.com/openstreetmap/trac-tickets/issues/16 permanent;
rewrite ^/ticket/17$ https://github.com/openstreetmap/trac-tickets/issues/17 permanent;
rewrite ^/ticket/18$ https://github.com/openstreetmap/trac-tickets/issues/18 permanent;
rewrite ^/ticket/19$ https://github.com/openstreetmap/trac-tickets/issues/19 permanent;
rewrite ^/ticket/20$ https://github.com/openstreetmap/trac-tickets/issues/20 permanent;
rewrite ^/ticket/21$ https://github.com/openstreetmap/trac-tickets/issues/21 permanent;
rewrite ^/ticket/22$ https://github.com/openstreetmap/trac-tickets/issues/22 permanent;
rewrite ^/ticket/23$ https://github.com/openstreetmap/trac-tickets/issues/23 permanent;
rewrite ^/ticket/24$ https://github.com/openstreetmap/trac-tickets/issues/24 permanent;
rewrite ^/ticket/25$ https://github.com/openstreetmap/trac-tickets/issues/25 permanent;
rewrite ^/ticket/26$ https://github.com/openstreetmap/trac-tickets/issues/26 permanent;
rewrite ^/ticket/27$ https://github.com/openstreetmap/trac-tickets/issues/27 permanent;
rewrite ^/ticket/28$ https://github.com/openstreetmap/trac-tickets/issues/28 permanent;
rewrite ^/ticket/29$ https://github.com/openstreetmap/trac-tickets/issues/29 permanent;
rewrite ^/ticket/30$ https://github.com/openstreetmap/trac-tickets/issues/30 permanent;
rewrite ^/ticket/31$ https://github.com/openstreetmap/trac-tickets/issues/31 permanent;
rewrite ^/ticket/32$ https://github.com/openstreetmap/trac-tickets/issues/32 permanent;
rewrite ^/ticket/33$ https://github.com/openstreetmap/trac-tickets/issues/33 permanent;
rewrite ^/ticket/34$ https://github.com/openstreetmap/trac-tickets/issues/34 permanent;
rewrite ^/ticket/35$ https://github.com/openstreetmap/trac-tickets/issues/35 permanent;
rewrite ^/ticket/36$ https://github.com/openstreetmap/trac-tickets/issues/36 permanent;
rewrite ^/ticket/37$ https://github.com/openstreetmap/trac-tickets/issues/37 permanent;
rewrite ^/ticket/38$ https://github.com/openstreetmap/trac-tickets/issues/38 permanent;
rewrite ^/ticket/39$ https://github.com/openstreetmap/trac-tickets/issues/39 permanent;
rewrite ^/ticket/40$ https://github.com/openstreetmap/trac-tickets/issues/40 permanent;
rewrite ^/ticket/41$ https://github.com/openstreetmap/trac-tickets/issues/41 permanent;
rewrite ^/ticket/42$ https://github.com/openstreetmap/trac-tickets/issues/42 permanent;
rewrite ^/ticket/43$ https://github.com/openstreetmap/trac-tickets/issues/43 permanent;
rewrite ^/ticket/44$ https://github.com/openstreetmap/trac-tickets/issues/44 permanent;
rewrite ^/ticket/45$ https://github.com/openstreetmap/trac-tickets/issues/45 permanent;
rewrite ^/ticket/46$ https://github.com/openstreetmap/trac-tickets/issues/46 permanent;
rewrite ^/ticket/47$ https://github.com/openstreetmap/trac-tickets/issues/47 permanent;
rewrite ^/ticket/48$ https://github.com/openstreetmap/trac-tickets/issues/48 permanent;
rewrite ^/ticket/49$ https://github.com/openstreetmap/trac-tickets/issues/49 permanent;
rewrite ^/ticket/50$ https://github.com/openstreetmap/trac-tickets/issues/50 permanent;
rewrite ^/ticket/51$ https://github.com/openstreetmap/trac-tickets/issues/51 permanent;
rewrite ^/ticket/52$ https://github.com/openstreetmap/trac-tickets/issues/52 permanent;
rewrite ^/ticket/53$ https://github.com/openstreetmap/trac-tickets/issues/53 permanent;
rewrite ^/ticket/54$ https://github.com/openstreetmap/trac-tickets/issues/54 permanent;
rewrite ^/ticket/55$ https://github.com/openstreetmap/trac-tickets/issues/55 permanent;
rewrite ^/ticket/56$ https://github.com/openstreetmap/trac-tickets/issues/56 permanent;
rewrite ^/ticket/57$ https://github.com/openstreetmap/trac-tickets/issues/57 permanent;
rewrite ^/ticket/58$ https://github.com/openstreetmap/trac-tickets/issues/58 permanent;
rewrite ^/ticket/59$ https://github.com/openstreetmap/trac-tickets/issues/59 permanent;
rewrite ^/ticket/60$ https://github.com/openstreetmap/trac-tickets/issues/60 permanent;
rewrite ^/ticket/61$ https://github.com/openstreetmap/trac-tickets/issues/61 permanent;
rewrite ^/ticket/62$ https://github.com/openstreetmap/trac-tickets/issues/62 permanent;
rewrite ^/ticket/63$ https://github.com/openstreetmap/trac-tickets/issues/63 permanent;
rewrite ^/ticket/64$ https://github.com/openstreetmap/trac-tickets/issues/64 permanent;
rewrite ^/ticket/65$ https://github.com/openstreetmap/trac-tickets/issues/65 permanent;
rewrite ^/ticket/66$ https://github.com/openstreetmap/trac-tickets/issues/66 permanent;
rewrite ^/ticket/67$ https://github.com/openstreetmap/trac-tickets/issues/67 permanent;
rewrite ^/ticket/68$ https://github.com/openstreetmap/trac-tickets/issues/68 permanent;
rewrite ^/ticket/69$ https://github.com/openstreetmap/trac-tickets/issues/69 permanent;
rewrite ^/ticket/70$ https://github.com/openstreetmap/trac-tickets/issues/70 permanent;
rewrite ^/ticket/71$ https://github.com/openstreetmap/trac-tickets/issues/71 permanent;
rewrite ^/ticket/72$ https://github.com/openstreetmap/trac-tickets/issues/72 permanent;
rewrite ^/ticket/73$ https://github.com/openstreetmap/trac-tickets/issues/73 permanent;
rewrite ^/ticket/74$ https://github.com/openstreetmap/trac-tickets/issues/74 permanent;
rewrite ^/ticket/75$ https://github.com/openstreetmap/trac-tickets/issues/75 permanent;
rewrite ^/ticket/76$ https://github.com/openstreetmap/trac-tickets/issues/76 permanent;
rewrite ^/ticket/77$ https://github.com/openstreetmap/trac-tickets/issues/77 permanent;
rewrite ^/ticket/78$ https://github.com/openstreetmap/trac-tickets/issues/78 permanent;
rewrite ^/ticket/79$ https://github.com/openstreetmap/trac-tickets/issues/79 permanent;
rewrite ^/ticket/80$ https://github.com/openstreetmap/trac-tickets/issues/80 permanent;
rewrite ^/ticket/81$ https://github.com/openstreetmap/trac-tickets/issues/81 permanent;
rewrite ^/ticket/82$ https://github.com/openstreetmap/trac-tickets/issues/82 permanent;
rewrite ^/ticket/83$ https://github.com/openstreetmap/trac-tickets/issues/83 permanent;
rewrite ^/ticket/84$ https://github.com/openstreetmap/trac-tickets/issues/84 permanent;
rewrite ^/ticket/85$ https://github.com/openstreetmap/trac-tickets/issues/85 permanent;
rewrite ^/ticket/86$ https://github.com/openstreetmap/trac-tickets/issues/86 permanent;
rewrite ^/ticket/87$ https://github.com/openstreetmap/trac-tickets/issues/87 permanent;
rewrite ^/ticket/88$ https://github.com/openstreetmap/trac-tickets/issues/88 permanent;
rewrite ^/ticket/89$ https://github.com/openstreetmap/trac-tickets/issues/89 permanent;
rewrite ^/ticket/90$ https://github.com/openstreetmap/trac-tickets/issues/90 permanent;
rewrite ^/ticket/91$ https://github.com/openstreetmap/trac-tickets/issues/91 permanent;
rewrite ^/ticket/92$ https://github.com/openstreetmap/trac-tickets/issues/92 permanent;
rewrite ^/ticket/93$ https://github.com/openstreetmap/trac-tickets/issues/93 permanent;
rewrite ^/ticket/94$ https://github.com/openstreetmap/trac-tickets/issues/94 permanent;
rewrite ^/ticket/95$ https://github.com/openstreetmap/trac-tickets/issues/95 permanent;
rewrite ^/ticket/96$ https://github.com/openstreetmap/trac-tickets/issues/96 permanent;
rewrite ^/ticket/97$ https://github.com/openstreetmap/trac-tickets/issues/97 permanent;
rewrite ^/ticket/98$ https://github.com/openstreetmap/trac-tickets/issues/98 permanent;
rewrite ^/ticket/99$ https://github.com/openstreetmap/trac-tickets/issues/99 permanent;
rewrite ^/ticket/100$ https://github.com/openstreetmap/trac-tickets/issues/100 permanent;
rewrite ^/ticket/101$ https://github.com/openstreetmap/trac-tickets/issues/101 permanent;
rewrite ^/ticket/102$ https://github.com/openstreetmap/trac-tickets/issues/102 permanent;
rewrite ^/ticket/103$ https://github.com/openstreetmap/trac-tickets/issues/103 permanent;
rewrite ^/ticket/104$ https://github.com/openstreetmap/trac-tickets/issues/104 permanent;
rewrite ^/ticket/105$ https://github.com/openstreetmap/trac-tickets/issues/105 permanent;
rewrite ^/ticket/106$ https://github.com/openstreetmap/trac-tickets/issues/106 permanent;
rewrite ^/ticket/107$ https://github.com/openstreetmap/trac-tickets/issues/107 permanent;
rewrite ^/ticket/108$ https://github.com/openstreetmap/trac-tickets/issues/108 permanent;
rewrite ^/ticket/109$ https://github.com/openstreetmap/trac-tickets/issues/109 permanent;
rewrite ^/ticket/110$ https://github.com/openstreetmap/trac-tickets/issues/110 permanent;
rewrite ^/ticket/111$ https://github.com/openstreetmap/trac-tickets/issues/111 permanent;
rewrite ^/ticket/112$ https://github.com/openstreetmap/trac-tickets/issues/112 permanent;
rewrite ^/ticket/113$ https://github.com/openstreetmap/trac-tickets/issues/113 permanent;
rewrite ^/ticket/114$ https://github.com/openstreetmap/trac-tickets/issues/114 permanent;
rewrite ^/ticket/115$ https://github.com/openstreetmap/trac-tickets/issues/115 permanent;
rewrite ^/ticket/116$ https://github.com/openstreetmap/trac-tickets/issues/116 permanent;
rewrite ^/ticket/117$ https://github.com/openstreetmap/trac-tickets/issues/117 permanent;
rewrite ^/ticket/118$ https://github.com/openstreetmap/trac-tickets/issues/118 permanent;
rewrite ^/ticket/119$ https://github.com/openstreetmap/trac-tickets/issues/119 permanent;
rewrite ^/ticket/120$ https://github.com/openstreetmap/trac-tickets/issues/120 permanent;
rewrite ^/ticket/121$ https://github.com/openstreetmap/trac-tickets/issues/121 permanent;
rewrite ^/ticket/122$ https://github.com/openstreetmap/trac-tickets/issues/122 permanent;
rewrite ^/ticket/123$ https://github.com/openstreetmap/trac-tickets/issues/123 permanent;
rewrite ^/ticket/124$ https://github.com/openstreetmap/trac-tickets/issues/124 permanent;
rewrite ^/ticket/125$ https://github.com/openstreetmap/trac-tickets/issues/125 permanent;
rewrite ^/ticket/126$ https://github.com/openstreetmap/trac-tickets/issues/126 permanent;
rewrite ^/ticket/127$ https://github.com/openstreetmap/trac-tickets/issues/127 permanent;
rewrite ^/ticket/128$ https://github.com/openstreetmap/trac-tickets/issues/128 permanent;
rewrite ^/ticket/129$ https://github.com/openstreetmap/trac-tickets/issues/129 permanent;
rewrite ^/ticket/130$ https://github.com/openstreetmap/trac-tickets/issues/130 permanent;
rewrite ^/ticket/131$ https://github.com/openstreetmap/trac-tickets/issues/131 permanent;
rewrite ^/ticket/132$ https://github.com/openstreetmap/trac-tickets/issues/132 permanent;
rewrite ^/ticket/133$ https://github.com/openstreetmap/trac-tickets/issues/133 permanent;
rewrite ^/ticket/134$ https://github.com/openstreetmap/trac-tickets/issues/134 permanent;
rewrite ^/ticket/135$ https://github.com/openstreetmap/trac-tickets/issues/135 permanent;
rewrite ^/ticket/136$ https://github.com/openstreetmap/trac-tickets/issues/136 permanent;
rewrite ^/ticket/137$ https://github.com/openstreetmap/trac-tickets/issues/137 permanent;
rewrite ^/ticket/138$ https://github.com/openstreetmap/trac-tickets/issues/138 permanent;
rewrite ^/ticket/139$ https://github.com/openstreetmap/trac-tickets/issues/139 permanent;
rewrite ^/ticket/140$ https://github.com/openstreetmap/trac-tickets/issues/140 permanent;
rewrite ^/ticket/141$ https://github.com/openstreetmap/trac-tickets/issues/141 permanent;
rewrite ^/ticket/142$ https://github.com/openstreetmap/trac-tickets/issues/142 permanent;
rewrite ^/ticket/143$ https://github.com/openstreetmap/trac-tickets/issues/143 permanent;
rewrite ^/ticket/144$ https://github.com/openstreetmap/trac-tickets/issues/144 permanent;
rewrite ^/ticket/145$ https://github.com/openstreetmap/trac-tickets/issues/145 permanent;
rewrite ^/ticket/146$ https://github.com/openstreetmap/trac-tickets/issues/146 permanent;
rewrite ^/ticket/147$ https://github.com/openstreetmap/trac-tickets/issues/147 permanent;
rewrite ^/ticket/148$ https://github.com/openstreetmap/trac-tickets/issues/148 permanent;
rewrite ^/ticket/149$ https://github.com/openstreetmap/trac-tickets/issues/149 permanent;
rewrite ^/ticket/150$ https://github.com/openstreetmap/trac-tickets/issues/150 permanent;
rewrite ^/ticket/151$ https://github.com/openstreetmap/trac-tickets/issues/151 permanent;
rewrite ^/ticket/152$ https://github.com/openstreetmap/trac-tickets/issues/152 permanent;
rewrite ^/ticket/153$ https://github.com/openstreetmap/trac-tickets/issues/153 permanent;
rewrite ^/ticket/154$ https://github.com/openstreetmap/trac-tickets/issues/154 permanent;
rewrite ^/ticket/155$ https://github.com/openstreetmap/trac-tickets/issues/155 permanent;
rewrite ^/ticket/156$ https://github.com/openstreetmap/trac-tickets/issues/156 permanent;
rewrite ^/ticket/157$ https://github.com/openstreetmap/trac-tickets/issues/157 permanent;
rewrite ^/ticket/158$ https://github.com/openstreetmap/trac-tickets/issues/158 permanent;
rewrite ^/ticket/159$ https://github.com/openstreetmap/trac-tickets/issues/159 permanent;
rewrite ^/ticket/160$ https://github.com/openstreetmap/trac-tickets/issues/160 permanent;
rewrite ^/ticket/161$ https://github.com/openstreetmap/trac-tickets/issues/161 permanent;
rewrite ^/ticket/162$ https://github.com/openstreetmap/trac-tickets/issues/162 permanent;
rewrite ^/ticket/163$ https://github.com/openstreetmap/trac-tickets/issues/163 permanent;
rewrite ^/ticket/164$ https://github.com/openstreetmap/trac-tickets/issues/164 permanent;
rewrite ^/ticket/165$ https://github.com/openstreetmap/trac-tickets/issues/165 permanent;
rewrite ^/ticket/166$ https://github.com/openstreetmap/trac-tickets/issues/166 permanent;
rewrite ^/ticket/167$ https://github.com/openstreetmap/trac-tickets/issues/167 permanent;
rewrite ^/ticket/168$ https://github.com/openstreetmap/trac-tickets/issues/168 permanent;
rewrite ^/ticket/169$ https://github.com/openstreetmap/trac-tickets/issues/169 permanent;
rewrite ^/ticket/170$ https://github.com/openstreetmap/trac-tickets/issues/170 permanent;
rewrite ^/ticket/171$ https://github.com/openstreetmap/trac-tickets/issues/171 permanent;
rewrite ^/ticket/172$ https://github.com/openstreetmap/trac-tickets/issues/172 permanent;
rewrite ^/ticket/173$ https://github.com/openstreetmap/trac-tickets/issues/173 permanent;
rewrite ^/ticket/174$ https://github.com/openstreetmap/trac-tickets/issues/174 permanent;
rewrite ^/ticket/175$ https://github.com/openstreetmap/trac-tickets/issues/175 permanent;
rewrite ^/ticket/176$ https://github.com/openstreetmap/trac-tickets/issues/176 permanent;
rewrite ^/ticket/177$ https://github.com/openstreetmap/trac-tickets/issues/177 permanent;
rewrite ^/ticket/178$ https://github.com/openstreetmap/trac-tickets/issues/178 permanent;
rewrite ^/ticket/179$ https://github.com/openstreetmap/trac-tickets/issues/179 permanent;
rewrite ^/ticket/180$ https://github.com/openstreetmap/trac-tickets/issues/180 permanent;
rewrite ^/ticket/181$ https://github.com/openstreetmap/trac-tickets/issues/181 permanent;
rewrite ^/ticket/182$ https://github.com/openstreetmap/trac-tickets/issues/182 permanent;
rewrite ^/ticket/183$ https://github.com/openstreetmap/trac-tickets/issues/183 permanent;
rewrite ^/ticket/184$ https://github.com/openstreetmap/trac-tickets/issues/184 permanent;
rewrite ^/ticket/185$ https://github.com/openstreetmap/trac-tickets/issues/185 permanent;
rewrite ^/ticket/186$ https://github.com/openstreetmap/trac-tickets/issues/186 permanent;
rewrite ^/ticket/187$ https://github.com/openstreetmap/trac-tickets/issues/187 permanent;
rewrite ^/ticket/188$ https://github.com/openstreetmap/trac-tickets/issues/188 permanent;
rewrite ^/ticket/189$ https://github.com/openstreetmap/trac-tickets/issues/189 permanent;
rewrite ^/ticket/190$ https://github.com/openstreetmap/trac-tickets/issues/190 permanent;
rewrite ^/ticket/191$ https://github.com/openstreetmap/trac-tickets/issues/191 permanent;
rewrite ^/ticket/192$ https://github.com/openstreetmap/trac-tickets/issues/192 permanent;
rewrite ^/ticket/193$ https://github.com/openstreetmap/trac-tickets/issues/193 permanent;
rewrite ^/ticket/194$ https://github.com/openstreetmap/trac-tickets/issues/194 permanent;
rewrite ^/ticket/195$ https://github.com/openstreetmap/trac-tickets/issues/195 permanent;
rewrite ^/ticket/196$ https://github.com/openstreetmap/trac-tickets/issues/196 permanent;
rewrite ^/ticket/197$ https://github.com/openstreetmap/trac-tickets/issues/197 permanent;
rewrite ^/ticket/198$ https://github.com/openstreetmap/trac-tickets/issues/198 permanent;
rewrite ^/ticket/199$ https://github.com/openstreetmap/trac-tickets/issues/199 permanent;
rewrite ^/ticket/200$ https://github.com/openstreetmap/trac-tickets/issues/200 permanent;
rewrite ^/ticket/201$ https://github.com/openstreetmap/trac-tickets/issues/201 permanent;
rewrite ^/ticket/202$ https://github.com/openstreetmap/trac-tickets/issues/202 permanent;
rewrite ^/ticket/203$ https://github.com/openstreetmap/trac-tickets/issues/203 permanent;
rewrite ^/ticket/204$ https://github.com/openstreetmap/trac-tickets/issues/204 permanent;
rewrite ^/ticket/205$ https://github.com/openstreetmap/trac-tickets/issues/205 permanent;
rewrite ^/ticket/206$ https://github.com/openstreetmap/trac-tickets/issues/206 permanent;
rewrite ^/ticket/207$ https://github.com/openstreetmap/trac-tickets/issues/207 permanent;
rewrite ^/ticket/208$ https://github.com/openstreetmap/trac-tickets/issues/208 permanent;
rewrite ^/ticket/209$ https://github.com/openstreetmap/trac-tickets/issues/209 permanent;
rewrite ^/ticket/210$ https://github.com/openstreetmap/trac-tickets/issues/210 permanent;
rewrite ^/ticket/211$ https://github.com/openstreetmap/trac-tickets/issues/211 permanent;
rewrite ^/ticket/212$ https://github.com/openstreetmap/trac-tickets/issues/212 permanent;
rewrite ^/ticket/213$ https://github.com/openstreetmap/trac-tickets/issues/213 permanent;
rewrite ^/ticket/214$ https://github.com/openstreetmap/trac-tickets/issues/214 permanent;
rewrite ^/ticket/215$ https://github.com/openstreetmap/trac-tickets/issues/215 permanent;
rewrite ^/ticket/216$ https://github.com/openstreetmap/trac-tickets/issues/216 permanent;
rewrite ^/ticket/217$ https://github.com/openstreetmap/trac-tickets/issues/217 permanent;
rewrite ^/ticket/218$ https://github.com/openstreetmap/trac-tickets/issues/218 permanent;
rewrite ^/ticket/219$ https://github.com/openstreetmap/trac-tickets/issues/219 permanent;
rewrite ^/ticket/220$ https://github.com/openstreetmap/trac-tickets/issues/220 permanent;
rewrite ^/ticket/221$ https://github.com/openstreetmap/trac-tickets/issues/221 permanent;
rewrite ^/ticket/222$ https://github.com/openstreetmap/trac-tickets/issues/222 permanent;
rewrite ^/ticket/223$ https://github.com/openstreetmap/trac-tickets/issues/223 permanent;
rewrite ^/ticket/224$ https://github.com/openstreetmap/trac-tickets/issues/224 permanent;
rewrite ^/ticket/225$ https://github.com/openstreetmap/trac-tickets/issues/225 permanent;
rewrite ^/ticket/226$ https://github.com/openstreetmap/trac-tickets/issues/226 permanent;
rewrite ^/ticket/227$ https://github.com/openstreetmap/trac-tickets/issues/227 permanent;
rewrite ^/ticket/228$ https://github.com/openstreetmap/trac-tickets/issues/228 permanent;
rewrite ^/ticket/229$ https://github.com/openstreetmap/trac-tickets/issues/229 permanent;
rewrite ^/ticket/230$ https://github.com/openstreetmap/trac-tickets/issues/230 permanent;
rewrite ^/ticket/231$ https://github.com/openstreetmap/trac-tickets/issues/231 permanent;
rewrite ^/ticket/232$ https://github.com/openstreetmap/trac-tickets/issues/232 permanent;
rewrite ^/ticket/233$ https://github.com/openstreetmap/trac-tickets/issues/233 permanent;
rewrite ^/ticket/234$ https://github.com/openstreetmap/trac-tickets/issues/234 permanent;
rewrite ^/ticket/235$ https://github.com/openstreetmap/trac-tickets/issues/235 permanent;
rewrite ^/ticket/236$ https://github.com/openstreetmap/trac-tickets/issues/236 permanent;
rewrite ^/ticket/237$ https://github.com/openstreetmap/trac-tickets/issues/237 permanent;
rewrite ^/ticket/238$ https://github.com/openstreetmap/trac-tickets/issues/238 permanent;
rewrite ^/ticket/239$ https://github.com/openstreetmap/trac-tickets/issues/239 permanent;
rewrite ^/ticket/240$ https://github.com/openstreetmap/trac-tickets/issues/240 permanent;
rewrite ^/ticket/241$ https://github.com/openstreetmap/trac-tickets/issues/241 permanent;
rewrite ^/ticket/242$ https://github.com/openstreetmap/trac-tickets/issues/242 permanent;
rewrite ^/ticket/243$ https://github.com/openstreetmap/trac-tickets/issues/243 permanent;
rewrite ^/ticket/244$ https://github.com/openstreetmap/trac-tickets/issues/244 permanent;
rewrite ^/ticket/245$ https://github.com/openstreetmap/trac-tickets/issues/245 permanent;
rewrite ^/ticket/246$ https://github.com/openstreetmap/trac-tickets/issues/246 permanent;
rewrite ^/ticket/247$ https://github.com/openstreetmap/trac-tickets/issues/247 permanent;
rewrite ^/ticket/248$ https://github.com/openstreetmap/trac-tickets/issues/248 permanent;
rewrite ^/ticket/249$ https://github.com/openstreetmap/trac-tickets/issues/249 permanent;
rewrite ^/ticket/250$ https://github.com/openstreetmap/trac-tickets/issues/250 permanent;
rewrite ^/ticket/251$ https://github.com/openstreetmap/trac-tickets/issues/251 permanent;
rewrite ^/ticket/252$ https://github.com/openstreetmap/trac-tickets/issues/252 permanent;
rewrite ^/ticket/253$ https://github.com/openstreetmap/trac-tickets/issues/253 permanent;
rewrite ^/ticket/254$ https://github.com/openstreetmap/trac-tickets/issues/254 permanent;
rewrite ^/ticket/255$ https://github.com/openstreetmap/trac-tickets/issues/255 permanent;
rewrite ^/ticket/256$ https://github.com/openstreetmap/trac-tickets/issues/256 permanent;
rewrite ^/ticket/257$ https://github.com/openstreetmap/trac-tickets/issues/257 permanent;
rewrite ^/ticket/258$ https://github.com/openstreetmap/trac-tickets/issues/258 permanent;
rewrite ^/ticket/259$ https://github.com/openstreetmap/trac-tickets/issues/259 permanent;
rewrite ^/ticket/260$ https://github.com/openstreetmap/trac-tickets/issues/260 permanent;
rewrite ^/ticket/261$ https://github.com/openstreetmap/trac-tickets/issues/261 permanent;
rewrite ^/ticket/262$ https://github.com/openstreetmap/trac-tickets/issues/262 permanent;
rewrite ^/ticket/263$ https://github.com/openstreetmap/trac-tickets/issues/263 permanent;
rewrite ^/ticket/264$ https://github.com/openstreetmap/trac-tickets/issues/264 permanent;
rewrite ^/ticket/265$ https://github.com/openstreetmap/trac-tickets/issues/265 permanent;
rewrite ^/ticket/266$ https://github.com/openstreetmap/trac-tickets/issues/266 permanent;
rewrite ^/ticket/267$ https://github.com/openstreetmap/trac-tickets/issues/267 permanent;
rewrite ^/ticket/268$ https://github.com/openstreetmap/trac-tickets/issues/268 permanent;
rewrite ^/ticket/269$ https://github.com/openstreetmap/trac-tickets/issues/269 permanent;
rewrite ^/ticket/270$ https://github.com/openstreetmap/trac-tickets/issues/270 permanent;
rewrite ^/ticket/271$ https://github.com/openstreetmap/trac-tickets/issues/271 permanent;
rewrite ^/ticket/272$ https://github.com/openstreetmap/trac-tickets/issues/272 permanent;
rewrite ^/ticket/273$ https://github.com/openstreetmap/trac-tickets/issues/273 permanent;
rewrite ^/ticket/274$ https://github.com/openstreetmap/trac-tickets/issues/274 permanent;
rewrite ^/ticket/275$ https://github.com/openstreetmap/trac-tickets/issues/275 permanent;
rewrite ^/ticket/276$ https://github.com/openstreetmap/trac-tickets/issues/276 permanent;
rewrite ^/ticket/277$ https://github.com/openstreetmap/trac-tickets/issues/277 permanent;
rewrite ^/ticket/278$ https://github.com/openstreetmap/trac-tickets/issues/278 permanent;
rewrite ^/ticket/279$ https://github.com/openstreetmap/trac-tickets/issues/279 permanent;
rewrite ^/ticket/280$ https://github.com/openstreetmap/trac-tickets/issues/280 permanent;
rewrite ^/ticket/281$ https://github.com/openstreetmap/trac-tickets/issues/281 permanent;
rewrite ^/ticket/282$ https://github.com/openstreetmap/trac-tickets/issues/282 permanent;
rewrite ^/ticket/283$ https://github.com/openstreetmap/trac-tickets/issues/283 permanent;
rewrite ^/ticket/284$ https://github.com/openstreetmap/trac-tickets/issues/284 permanent;
rewrite ^/ticket/285$ https://github.com/openstreetmap/trac-tickets/issues/285 permanent;
rewrite ^/ticket/286$ https://github.com/openstreetmap/trac-tickets/issues/286 permanent;
rewrite ^/ticket/287$ https://github.com/openstreetmap/trac-tickets/issues/287 permanent;
rewrite ^/ticket/288$ https://github.com/openstreetmap/trac-tickets/issues/288 permanent;
rewrite ^/ticket/289$ https://github.com/openstreetmap/trac-tickets/issues/289 permanent;
rewrite ^/ticket/290$ https://github.com/openstreetmap/trac-tickets/issues/290 permanent;
rewrite ^/ticket/291$ https://github.com/openstreetmap/trac-tickets/issues/291 permanent;
rewrite ^/ticket/292$ https://github.com/openstreetmap/trac-tickets/issues/292 permanent;
rewrite ^/ticket/293$ https://github.com/openstreetmap/trac-tickets/issues/293 permanent;
rewrite ^/ticket/294$ https://github.com/openstreetmap/trac-tickets/issues/294 permanent;
rewrite ^/ticket/295$ https://github.com/openstreetmap/trac-tickets/issues/295 permanent;
rewrite ^/ticket/296$ https://github.com/openstreetmap/trac-tickets/issues/296 permanent;
rewrite ^/ticket/297$ https://github.com/openstreetmap/trac-tickets/issues/297 permanent;
rewrite ^/ticket/298$ https://github.com/openstreetmap/trac-tickets/issues/298 permanent;
rewrite ^/ticket/299$ https://github.com/openstreetmap/trac-tickets/issues/299 permanent;
rewrite ^/ticket/300$ https://github.com/openstreetmap/trac-tickets/issues/300 permanent;
rewrite ^/ticket/301$ https://github.com/openstreetmap/trac-tickets/issues/301 permanent;
rewrite ^/ticket/302$ https://github.com/openstreetmap/trac-tickets/issues/302 permanent;
rewrite ^/ticket/303$ https://github.com/openstreetmap/trac-tickets/issues/303 permanent;
rewrite ^/ticket/304$ https://github.com/openstreetmap/trac-tickets/issues/304 permanent;
rewrite ^/ticket/305$ https://github.com/openstreetmap/trac-tickets/issues/305 permanent;
rewrite ^/ticket/306$ https://github.com/openstreetmap/trac-tickets/issues/306 permanent;
rewrite ^/ticket/307$ https://github.com/openstreetmap/trac-tickets/issues/307 permanent;
rewrite ^/ticket/308$ https://github.com/openstreetmap/trac-tickets/issues/308 permanent;
rewrite ^/ticket/309$ https://github.com/openstreetmap/trac-tickets/issues/309 permanent;
rewrite ^/ticket/310$ https://github.com/openstreetmap/trac-tickets/issues/310 permanent;
rewrite ^/ticket/311$ https://github.com/openstreetmap/trac-tickets/issues/311 permanent;
rewrite ^/ticket/312$ https://github.com/openstreetmap/trac-tickets/issues/312 permanent;
rewrite ^/ticket/313$ https://github.com/openstreetmap/trac-tickets/issues/313 permanent;
rewrite ^/ticket/314$ https://github.com/openstreetmap/trac-tickets/issues/314 permanent;
rewrite ^/ticket/315$ https://github.com/openstreetmap/trac-tickets/issues/315 permanent;
rewrite ^/ticket/316$ https://github.com/openstreetmap/trac-tickets/issues/316 permanent;
rewrite ^/ticket/317$ https://github.com/openstreetmap/trac-tickets/issues/317 permanent;
rewrite ^/ticket/318$ https://github.com/openstreetmap/trac-tickets/issues/318 permanent;
rewrite ^/ticket/319$ https://github.com/openstreetmap/trac-tickets/issues/319 permanent;
rewrite ^/ticket/320$ https://github.com/openstreetmap/trac-tickets/issues/320 permanent;
rewrite ^/ticket/321$ https://github.com/openstreetmap/trac-tickets/issues/321 permanent;
rewrite ^/ticket/322$ https://github.com/openstreetmap/trac-tickets/issues/322 permanent;
rewrite ^/ticket/323$ https://github.com/openstreetmap/trac-tickets/issues/323 permanent;
rewrite ^/ticket/324$ https://github.com/openstreetmap/trac-tickets/issues/324 permanent;
rewrite ^/ticket/325$ https://github.com/openstreetmap/trac-tickets/issues/325 permanent;
rewrite ^/ticket/326$ https://github.com/openstreetmap/trac-tickets/issues/326 permanent;
rewrite ^/ticket/327$ https://github.com/openstreetmap/trac-tickets/issues/327 permanent;
rewrite ^/ticket/328$ https://github.com/openstreetmap/trac-tickets/issues/328 permanent;
rewrite ^/ticket/329$ https://github.com/openstreetmap/trac-tickets/issues/329 permanent;
rewrite ^/ticket/330$ https://github.com/openstreetmap/trac-tickets/issues/330 permanent;
rewrite ^/ticket/331$ https://github.com/openstreetmap/trac-tickets/issues/331 permanent;
rewrite ^/ticket/332$ https://github.com/openstreetmap/trac-tickets/issues/332 permanent;
rewrite ^/ticket/333$ https://github.com/openstreetmap/trac-tickets/issues/333 permanent;
rewrite ^/ticket/334$ https://github.com/openstreetmap/trac-tickets/issues/334 permanent;
rewrite ^/ticket/335$ https://github.com/openstreetmap/trac-tickets/issues/335 permanent;
rewrite ^/ticket/336$ https://github.com/openstreetmap/trac-tickets/issues/336 permanent;
rewrite ^/ticket/337$ https://github.com/openstreetmap/trac-tickets/issues/337 permanent;
rewrite ^/ticket/338$ https://github.com/openstreetmap/trac-tickets/issues/338 permanent;
rewrite ^/ticket/339$ https://github.com/openstreetmap/trac-tickets/issues/339 permanent;
rewrite ^/ticket/340$ https://github.com/openstreetmap/trac-tickets/issues/340 permanent;
rewrite ^/ticket/341$ https://github.com/openstreetmap/trac-tickets/issues/341 permanent;
rewrite ^/ticket/342$ https://github.com/openstreetmap/trac-tickets/issues/342 permanent;
rewrite ^/ticket/343$ https://github.com/openstreetmap/trac-tickets/issues/343 permanent;
rewrite ^/ticket/344$ https://github.com/openstreetmap/trac-tickets/issues/344 permanent;
rewrite ^/ticket/345$ https://github.com/openstreetmap/trac-tickets/issues/345 permanent;
rewrite ^/ticket/346$ https://github.com/openstreetmap/trac-tickets/issues/346 permanent;
rewrite ^/ticket/347$ https://github.com/openstreetmap/trac-tickets/issues/347 permanent;
rewrite ^/ticket/348$ https://github.com/openstreetmap/trac-tickets/issues/348 permanent;
rewrite ^/ticket/349$ https://github.com/openstreetmap/trac-tickets/issues/349 permanent;
rewrite ^/ticket/350$ https://github.com/openstreetmap/trac-tickets/issues/350 permanent;
rewrite ^/ticket/351$ https://github.com/openstreetmap/trac-tickets/issues/351 permanent;
rewrite ^/ticket/352$ https://github.com/openstreetmap/trac-tickets/issues/352 permanent;
rewrite ^/ticket/353$ https://github.com/openstreetmap/trac-tickets/issues/353 permanent;
rewrite ^/ticket/354$ https://github.com/openstreetmap/trac-tickets/issues/354 permanent;
rewrite ^/ticket/355$ https://github.com/openstreetmap/trac-tickets/issues/355 permanent;
rewrite ^/ticket/356$ https://github.com/openstreetmap/trac-tickets/issues/356 permanent;
rewrite ^/ticket/357$ https://github.com/openstreetmap/trac-tickets/issues/357 permanent;
rewrite ^/ticket/358$ https://github.com/openstreetmap/trac-tickets/issues/358 permanent;
rewrite ^/ticket/359$ https://github.com/openstreetmap/trac-tickets/issues/359 permanent;
rewrite ^/ticket/360$ https://github.com/openstreetmap/trac-tickets/issues/360 permanent;
rewrite ^/ticket/361$ https://github.com/openstreetmap/trac-tickets/issues/361 permanent;
rewrite ^/ticket/362$ https://github.com/openstreetmap/trac-tickets/issues/362 permanent;
rewrite ^/ticket/363$ https://github.com/openstreetmap/trac-tickets/issues/363 permanent;
rewrite ^/ticket/364$ https://github.com/openstreetmap/trac-tickets/issues/364 permanent;
rewrite ^/ticket/365$ https://github.com/openstreetmap/trac-tickets/issues/365 permanent;
rewrite ^/ticket/366$ https://github.com/openstreetmap/trac-tickets/issues/366 permanent;
rewrite ^/ticket/367$ https://github.com/openstreetmap/trac-tickets/issues/367 permanent;
rewrite ^/ticket/368$ https://github.com/openstreetmap/trac-tickets/issues/368 permanent;
rewrite ^/ticket/369$ https://github.com/openstreetmap/trac-tickets/issues/369 permanent;
rewrite ^/ticket/370$ https://github.com/openstreetmap/trac-tickets/issues/370 permanent;
rewrite ^/ticket/371$ https://github.com/openstreetmap/trac-tickets/issues/371 permanent;
rewrite ^/ticket/372$ https://github.com/openstreetmap/trac-tickets/issues/372 permanent;
rewrite ^/ticket/373$ https://github.com/openstreetmap/trac-tickets/issues/373 permanent;
rewrite ^/ticket/374$ https://github.com/openstreetmap/trac-tickets/issues/374 permanent;
rewrite ^/ticket/375$ https://github.com/openstreetmap/trac-tickets/issues/375 permanent;
rewrite ^/ticket/376$ https://github.com/openstreetmap/trac-tickets/issues/376 permanent;
rewrite ^/ticket/377$ https://github.com/openstreetmap/trac-tickets/issues/377 permanent;
rewrite ^/ticket/378$ https://github.com/openstreetmap/trac-tickets/issues/378 permanent;
rewrite ^/ticket/379$ https://github.com/openstreetmap/trac-tickets/issues/379 permanent;
rewrite ^/ticket/380$ https://github.com/openstreetmap/trac-tickets/issues/380 permanent;
rewrite ^/ticket/381$ https://github.com/openstreetmap/trac-tickets/issues/381 permanent;
rewrite ^/ticket/382$ https://github.com/openstreetmap/trac-tickets/issues/382 permanent;
rewrite ^/ticket/383$ https://github.com/openstreetmap/trac-tickets/issues/383 permanent;
rewrite ^/ticket/384$ https://github.com/openstreetmap/trac-tickets/issues/384 permanent;
rewrite ^/ticket/385$ https://github.com/openstreetmap/trac-tickets/issues/385 permanent;
rewrite ^/ticket/386$ https://github.com/openstreetmap/trac-tickets/issues/386 permanent;
rewrite ^/ticket/387$ https://github.com/openstreetmap/trac-tickets/issues/387 permanent;
rewrite ^/ticket/388$ https://github.com/openstreetmap/trac-tickets/issues/388 permanent;
rewrite ^/ticket/389$ https://github.com/openstreetmap/trac-tickets/issues/389 permanent;
rewrite ^/ticket/390$ https://github.com/openstreetmap/trac-tickets/issues/390 permanent;
rewrite ^/ticket/391$ https://github.com/openstreetmap/trac-tickets/issues/391 permanent;
rewrite ^/ticket/392$ https://github.com/openstreetmap/trac-tickets/issues/392 permanent;
rewrite ^/ticket/393$ https://github.com/openstreetmap/trac-tickets/issues/393 permanent;
rewrite ^/ticket/394$ https://github.com/openstreetmap/trac-tickets/issues/394 permanent;
rewrite ^/ticket/395$ https://github.com/openstreetmap/trac-tickets/issues/395 permanent;
rewrite ^/ticket/396$ https://github.com/openstreetmap/trac-tickets/issues/396 permanent;
rewrite ^/ticket/397$ https://github.com/openstreetmap/trac-tickets/issues/397 permanent;
rewrite ^/ticket/398$ https://github.com/openstreetmap/trac-tickets/issues/398 permanent;
rewrite ^/ticket/399$ https://github.com/openstreetmap/trac-tickets/issues/399 permanent;
rewrite ^/ticket/400$ https://github.com/openstreetmap/trac-tickets/issues/400 permanent;
rewrite ^/ticket/401$ https://github.com/openstreetmap/trac-tickets/issues/401 permanent;
rewrite ^/ticket/402$ https://github.com/openstreetmap/trac-tickets/issues/402 permanent;
rewrite ^/ticket/403$ https://github.com/openstreetmap/trac-tickets/issues/403 permanent;
rewrite ^/ticket/404$ https://github.com/openstreetmap/trac-tickets/issues/404 permanent;
rewrite ^/ticket/405$ https://github.com/openstreetmap/trac-tickets/issues/405 permanent;
rewrite ^/ticket/406$ https://github.com/openstreetmap/trac-tickets/issues/406 permanent;
rewrite ^/ticket/407$ https://github.com/openstreetmap/trac-tickets/issues/407 permanent;
rewrite ^/ticket/408$ https://github.com/openstreetmap/trac-tickets/issues/408 permanent;
rewrite ^/ticket/409$ https://github.com/openstreetmap/trac-tickets/issues/409 permanent;
rewrite ^/ticket/410$ https://github.com/openstreetmap/trac-tickets/issues/410 permanent;
rewrite ^/ticket/411$ https://github.com/openstreetmap/trac-tickets/issues/411 permanent;
rewrite ^/ticket/412$ https://github.com/openstreetmap/trac-tickets/issues/412 permanent;
rewrite ^/ticket/413$ https://github.com/openstreetmap/trac-tickets/issues/413 permanent;
rewrite ^/ticket/414$ https://github.com/openstreetmap/trac-tickets/issues/414 permanent;
rewrite ^/ticket/415$ https://github.com/openstreetmap/trac-tickets/issues/415 permanent;
rewrite ^/ticket/416$ https://github.com/openstreetmap/trac-tickets/issues/416 permanent;
rewrite ^/ticket/417$ https://github.com/openstreetmap/trac-tickets/issues/417 permanent;
rewrite ^/ticket/418$ https://github.com/openstreetmap/trac-tickets/issues/418 permanent;
rewrite ^/ticket/419$ https://github.com/openstreetmap/trac-tickets/issues/419 permanent;
rewrite ^/ticket/420$ https://github.com/openstreetmap/trac-tickets/issues/420 permanent;
rewrite ^/ticket/421$ https://github.com/openstreetmap/trac-tickets/issues/421 permanent;
rewrite ^/ticket/422$ https://github.com/openstreetmap/trac-tickets/issues/422 permanent;
rewrite ^/ticket/423$ https://github.com/openstreetmap/trac-tickets/issues/423 permanent;
rewrite ^/ticket/424$ https://github.com/openstreetmap/trac-tickets/issues/424 permanent;
rewrite ^/ticket/425$ https://github.com/openstreetmap/trac-tickets/issues/425 permanent;
rewrite ^/ticket/426$ https://github.com/openstreetmap/trac-tickets/issues/426 permanent;
rewrite ^/ticket/427$ https://github.com/openstreetmap/trac-tickets/issues/427 permanent;
rewrite ^/ticket/428$ https://github.com/openstreetmap/trac-tickets/issues/428 permanent;
rewrite ^/ticket/429$ https://github.com/openstreetmap/trac-tickets/issues/429 permanent;
rewrite ^/ticket/430$ https://github.com/openstreetmap/trac-tickets/issues/430 permanent;
rewrite ^/ticket/431$ https://github.com/openstreetmap/trac-tickets/issues/431 permanent;
rewrite ^/ticket/432$ https://github.com/openstreetmap/trac-tickets/issues/432 permanent;
rewrite ^/ticket/433$ https://github.com/openstreetmap/trac-tickets/issues/433 permanent;
rewrite ^/ticket/434$ https://github.com/openstreetmap/trac-tickets/issues/434 permanent;
rewrite ^/ticket/435$ https://github.com/openstreetmap/trac-tickets/issues/435 permanent;
rewrite ^/ticket/436$ https://github.com/openstreetmap/trac-tickets/issues/436 permanent;
rewrite ^/ticket/437$ https://github.com/openstreetmap/trac-tickets/issues/437 permanent;
rewrite ^/ticket/438$ https://github.com/openstreetmap/trac-tickets/issues/438 permanent;
rewrite ^/ticket/439$ https://github.com/openstreetmap/trac-tickets/issues/439 permanent;
rewrite ^/ticket/440$ https://github.com/openstreetmap/trac-tickets/issues/440 permanent;
rewrite ^/ticket/441$ https://github.com/openstreetmap/trac-tickets/issues/441 permanent;
rewrite ^/ticket/442$ https://github.com/openstreetmap/trac-tickets/issues/442 permanent;
rewrite ^/ticket/443$ https://github.com/openstreetmap/trac-tickets/issues/443 permanent;
rewrite ^/ticket/444$ https://github.com/openstreetmap/trac-tickets/issues/444 permanent;
rewrite ^/ticket/445$ https://github.com/openstreetmap/trac-tickets/issues/445 permanent;
rewrite ^/ticket/446$ https://github.com/openstreetmap/trac-tickets/issues/446 permanent;
rewrite ^/ticket/447$ https://github.com/openstreetmap/trac-tickets/issues/447 permanent;
rewrite ^/ticket/448$ https://github.com/openstreetmap/trac-tickets/issues/448 permanent;
rewrite ^/ticket/449$ https://github.com/openstreetmap/trac-tickets/issues/449 permanent;
rewrite ^/ticket/450$ https://github.com/openstreetmap/trac-tickets/issues/450 permanent;
rewrite ^/ticket/451$ https://github.com/openstreetmap/trac-tickets/issues/451 permanent;
rewrite ^/ticket/452$ https://github.com/openstreetmap/trac-tickets/issues/452 permanent;
rewrite ^/ticket/453$ https://github.com/openstreetmap/trac-tickets/issues/453 permanent;
rewrite ^/ticket/454$ https://github.com/openstreetmap/trac-tickets/issues/454 permanent;
rewrite ^/ticket/455$ https://github.com/openstreetmap/trac-tickets/issues/455 permanent;
rewrite ^/ticket/456$ https://github.com/openstreetmap/trac-tickets/issues/456 permanent;
rewrite ^/ticket/457$ https://github.com/openstreetmap/trac-tickets/issues/457 permanent;
rewrite ^/ticket/458$ https://github.com/openstreetmap/trac-tickets/issues/458 permanent;
rewrite ^/ticket/459$ https://github.com/openstreetmap/trac-tickets/issues/459 permanent;
rewrite ^/ticket/460$ https://github.com/openstreetmap/trac-tickets/issues/460 permanent;
rewrite ^/ticket/461$ https://github.com/openstreetmap/trac-tickets/issues/461 permanent;
rewrite ^/ticket/462$ https://github.com/openstreetmap/trac-tickets/issues/462 permanent;
rewrite ^/ticket/463$ https://github.com/openstreetmap/trac-tickets/issues/463 permanent;
rewrite ^/ticket/464$ https://github.com/openstreetmap/trac-tickets/issues/464 permanent;
rewrite ^/ticket/465$ https://github.com/openstreetmap/trac-tickets/issues/465 permanent;
rewrite ^/ticket/466$ https://github.com/openstreetmap/trac-tickets/issues/466 permanent;
rewrite ^/ticket/467$ https://github.com/openstreetmap/trac-tickets/issues/467 permanent;
rewrite ^/ticket/468$ https://github.com/openstreetmap/trac-tickets/issues/468 permanent;
rewrite ^/ticket/469$ https://github.com/openstreetmap/trac-tickets/issues/469 permanent;
rewrite ^/ticket/470$ https://github.com/openstreetmap/trac-tickets/issues/470 permanent;
rewrite ^/ticket/471$ https://github.com/openstreetmap/trac-tickets/issues/471 permanent;
rewrite ^/ticket/472$ https://github.com/openstreetmap/trac-tickets/issues/472 permanent;
rewrite ^/ticket/473$ https://github.com/openstreetmap/trac-tickets/issues/473 permanent;
rewrite ^/ticket/474$ https://github.com/openstreetmap/trac-tickets/issues/474 permanent;
rewrite ^/ticket/475$ https://github.com/openstreetmap/trac-tickets/issues/475 permanent;
rewrite ^/ticket/476$ https://github.com/openstreetmap/trac-tickets/issues/476 permanent;
rewrite ^/ticket/477$ https://github.com/openstreetmap/trac-tickets/issues/477 permanent;
rewrite ^/ticket/478$ https://github.com/openstreetmap/trac-tickets/issues/478 permanent;
rewrite ^/ticket/479$ https://github.com/openstreetmap/trac-tickets/issues/479 permanent;
rewrite ^/ticket/480$ https://github.com/openstreetmap/trac-tickets/issues/480 permanent;
rewrite ^/ticket/481$ https://github.com/openstreetmap/trac-tickets/issues/481 permanent;
rewrite ^/ticket/482$ https://github.com/openstreetmap/trac-tickets/issues/482 permanent;
rewrite ^/ticket/483$ https://github.com/openstreetmap/trac-tickets/issues/483 permanent;
rewrite ^/ticket/484$ https://github.com/openstreetmap/trac-tickets/issues/484 permanent;
rewrite ^/ticket/485$ https://github.com/openstreetmap/trac-tickets/issues/485 permanent;
rewrite ^/ticket/486$ https://github.com/openstreetmap/trac-tickets/issues/486 permanent;
rewrite ^/ticket/487$ https://github.com/openstreetmap/trac-tickets/issues/487 permanent;
rewrite ^/ticket/488$ https://github.com/openstreetmap/trac-tickets/issues/488 permanent;
rewrite ^/ticket/489$ https://github.com/openstreetmap/trac-tickets/issues/489 permanent;
rewrite ^/ticket/490$ https://github.com/openstreetmap/trac-tickets/issues/490 permanent;
rewrite ^/ticket/491$ https://github.com/openstreetmap/trac-tickets/issues/491 permanent;
rewrite ^/ticket/492$ https://github.com/openstreetmap/trac-tickets/issues/492 permanent;
rewrite ^/ticket/493$ https://github.com/openstreetmap/trac-tickets/issues/493 permanent;
rewrite ^/ticket/494$ https://github.com/openstreetmap/trac-tickets/issues/494 permanent;
rewrite ^/ticket/495$ https://github.com/openstreetmap/trac-tickets/issues/495 permanent;
rewrite ^/ticket/496$ https://github.com/openstreetmap/trac-tickets/issues/496 permanent;
rewrite ^/ticket/497$ https://github.com/openstreetmap/trac-tickets/issues/497 permanent;
rewrite ^/ticket/498$ https://github.com/openstreetmap/trac-tickets/issues/498 permanent;
rewrite ^/ticket/499$ https://github.com/openstreetmap/trac-tickets/issues/499 permanent;
rewrite ^/ticket/500$ https://github.com/openstreetmap/trac-tickets/issues/500 permanent;
rewrite ^/ticket/501$ https://github.com/openstreetmap/trac-tickets/issues/501 permanent;
rewrite ^/ticket/502$ https://github.com/openstreetmap/trac-tickets/issues/502 permanent;
rewrite ^/ticket/503$ https://github.com/openstreetmap/trac-tickets/issues/503 permanent;
rewrite ^/ticket/504$ https://github.com/openstreetmap/trac-tickets/issues/504 permanent;
rewrite ^/ticket/505$ https://github.com/openstreetmap/trac-tickets/issues/505 permanent;
rewrite ^/ticket/506$ https://github.com/openstreetmap/trac-tickets/issues/506 permanent;
rewrite ^/ticket/507$ https://github.com/openstreetmap/trac-tickets/issues/507 permanent;
rewrite ^/ticket/508$ https://github.com/openstreetmap/trac-tickets/issues/508 permanent;
rewrite ^/ticket/509$ https://github.com/openstreetmap/trac-tickets/issues/509 permanent;
rewrite ^/ticket/510$ https://github.com/openstreetmap/trac-tickets/issues/510 permanent;
rewrite ^/ticket/511$ https://github.com/openstreetmap/trac-tickets/issues/511 permanent;
rewrite ^/ticket/512$ https://github.com/openstreetmap/trac-tickets/issues/512 permanent;
rewrite ^/ticket/513$ https://github.com/openstreetmap/trac-tickets/issues/513 permanent;
rewrite ^/ticket/514$ https://github.com/openstreetmap/trac-tickets/issues/514 permanent;
rewrite ^/ticket/515$ https://github.com/openstreetmap/trac-tickets/issues/515 permanent;
rewrite ^/ticket/516$ https://github.com/openstreetmap/trac-tickets/issues/516 permanent;
rewrite ^/ticket/517$ https://github.com/openstreetmap/trac-tickets/issues/517 permanent;
rewrite ^/ticket/518$ https://github.com/openstreetmap/trac-tickets/issues/518 permanent;
rewrite ^/ticket/519$ https://github.com/openstreetmap/trac-tickets/issues/519 permanent;
rewrite ^/ticket/520$ https://github.com/openstreetmap/trac-tickets/issues/520 permanent;
rewrite ^/ticket/521$ https://github.com/openstreetmap/trac-tickets/issues/521 permanent;
rewrite ^/ticket/522$ https://github.com/openstreetmap/trac-tickets/issues/522 permanent;
rewrite ^/ticket/523$ https://github.com/openstreetmap/trac-tickets/issues/523 permanent;
rewrite ^/ticket/524$ https://github.com/openstreetmap/trac-tickets/issues/524 permanent;
rewrite ^/ticket/525$ https://github.com/openstreetmap/trac-tickets/issues/525 permanent;
rewrite ^/ticket/526$ https://github.com/openstreetmap/trac-tickets/issues/526 permanent;
rewrite ^/ticket/527$ https://github.com/openstreetmap/trac-tickets/issues/527 permanent;
rewrite ^/ticket/528$ https://github.com/openstreetmap/trac-tickets/issues/528 permanent;
rewrite ^/ticket/529$ https://github.com/openstreetmap/trac-tickets/issues/529 permanent;
rewrite ^/ticket/530$ https://github.com/openstreetmap/trac-tickets/issues/530 permanent;
rewrite ^/ticket/531$ https://github.com/openstreetmap/trac-tickets/issues/531 permanent;
rewrite ^/ticket/532$ https://github.com/openstreetmap/trac-tickets/issues/532 permanent;
rewrite ^/ticket/533$ https://github.com/openstreetmap/trac-tickets/issues/533 permanent;
rewrite ^/ticket/534$ https://github.com/openstreetmap/trac-tickets/issues/534 permanent;
rewrite ^/ticket/535$ https://github.com/openstreetmap/trac-tickets/issues/535 permanent;
rewrite ^/ticket/536$ https://github.com/openstreetmap/trac-tickets/issues/536 permanent;
rewrite ^/ticket/537$ https://github.com/openstreetmap/trac-tickets/issues/537 permanent;
rewrite ^/ticket/538$ https://github.com/openstreetmap/trac-tickets/issues/538 permanent;
rewrite ^/ticket/539$ https://github.com/openstreetmap/trac-tickets/issues/539 permanent;
rewrite ^/ticket/540$ https://github.com/openstreetmap/trac-tickets/issues/540 permanent;
rewrite ^/ticket/541$ https://github.com/openstreetmap/trac-tickets/issues/541 permanent;
rewrite ^/ticket/542$ https://github.com/openstreetmap/trac-tickets/issues/542 permanent;
rewrite ^/ticket/543$ https://github.com/openstreetmap/trac-tickets/issues/543 permanent;
rewrite ^/ticket/544$ https://github.com/openstreetmap/trac-tickets/issues/544 permanent;
rewrite ^/ticket/545$ https://github.com/openstreetmap/trac-tickets/issues/545 permanent;
rewrite ^/ticket/546$ https://github.com/openstreetmap/trac-tickets/issues/546 permanent;
rewrite ^/ticket/547$ https://github.com/openstreetmap/trac-tickets/issues/547 permanent;
rewrite ^/ticket/548$ https://github.com/openstreetmap/trac-tickets/issues/548 permanent;
rewrite ^/ticket/549$ https://github.com/openstreetmap/trac-tickets/issues/549 permanent;
rewrite ^/ticket/550$ https://github.com/openstreetmap/trac-tickets/issues/550 permanent;
rewrite ^/ticket/551$ https://github.com/openstreetmap/trac-tickets/issues/551 permanent;
rewrite ^/ticket/552$ https://github.com/openstreetmap/trac-tickets/issues/552 permanent;
rewrite ^/ticket/553$ https://github.com/openstreetmap/trac-tickets/issues/553 permanent;
rewrite ^/ticket/554$ https://github.com/openstreetmap/trac-tickets/issues/554 permanent;
rewrite ^/ticket/555$ https://github.com/openstreetmap/trac-tickets/issues/555 permanent;
rewrite ^/ticket/556$ https://github.com/openstreetmap/trac-tickets/issues/556 permanent;
rewrite ^/ticket/557$ https://github.com/openstreetmap/trac-tickets/issues/557 permanent;
rewrite ^/ticket/558$ https://github.com/openstreetmap/trac-tickets/issues/558 permanent;
rewrite ^/ticket/559$ https://github.com/openstreetmap/trac-tickets/issues/559 permanent;
rewrite ^/ticket/560$ https://github.com/openstreetmap/trac-tickets/issues/560 permanent;
rewrite ^/ticket/561$ https://github.com/openstreetmap/trac-tickets/issues/561 permanent;
rewrite ^/ticket/562$ https://github.com/openstreetmap/trac-tickets/issues/562 permanent;
rewrite ^/ticket/563$ https://github.com/openstreetmap/trac-tickets/issues/563 permanent;
rewrite ^/ticket/564$ https://github.com/openstreetmap/trac-tickets/issues/564 permanent;
rewrite ^/ticket/565$ https://github.com/openstreetmap/trac-tickets/issues/565 permanent;
rewrite ^/ticket/566$ https://github.com/openstreetmap/trac-tickets/issues/566 permanent;
rewrite ^/ticket/567$ https://github.com/openstreetmap/trac-tickets/issues/567 permanent;
rewrite ^/ticket/568$ https://github.com/openstreetmap/trac-tickets/issues/568 permanent;
rewrite ^/ticket/569$ https://github.com/openstreetmap/trac-tickets/issues/569 permanent;
rewrite ^/ticket/570$ https://github.com/openstreetmap/trac-tickets/issues/570 permanent;
rewrite ^/ticket/571$ https://github.com/openstreetmap/trac-tickets/issues/571 permanent;
rewrite ^/ticket/572$ https://github.com/openstreetmap/trac-tickets/issues/572 permanent;
rewrite ^/ticket/573$ https://github.com/openstreetmap/trac-tickets/issues/573 permanent;
rewrite ^/ticket/574$ https://github.com/openstreetmap/trac-tickets/issues/574 permanent;
rewrite ^/ticket/575$ https://github.com/openstreetmap/trac-tickets/issues/575 permanent;
rewrite ^/ticket/576$ https://github.com/openstreetmap/trac-tickets/issues/576 permanent;
rewrite ^/ticket/577$ https://github.com/openstreetmap/trac-tickets/issues/577 permanent;
rewrite ^/ticket/578$ https://github.com/openstreetmap/trac-tickets/issues/578 permanent;
rewrite ^/ticket/579$ https://github.com/openstreetmap/trac-tickets/issues/579 permanent;
rewrite ^/ticket/580$ https://github.com/openstreetmap/trac-tickets/issues/580 permanent;
rewrite ^/ticket/581$ https://github.com/openstreetmap/trac-tickets/issues/581 permanent;
rewrite ^/ticket/582$ https://github.com/openstreetmap/trac-tickets/issues/582 permanent;
rewrite ^/ticket/583$ https://github.com/openstreetmap/trac-tickets/issues/583 permanent;
rewrite ^/ticket/584$ https://github.com/openstreetmap/trac-tickets/issues/584 permanent;
rewrite ^/ticket/585$ https://github.com/openstreetmap/trac-tickets/issues/585 permanent;
rewrite ^/ticket/586$ https://github.com/openstreetmap/trac-tickets/issues/586 permanent;
rewrite ^/ticket/587$ https://github.com/openstreetmap/trac-tickets/issues/587 permanent;
rewrite ^/ticket/588$ https://github.com/openstreetmap/trac-tickets/issues/588 permanent;
rewrite ^/ticket/589$ https://github.com/openstreetmap/trac-tickets/issues/589 permanent;
rewrite ^/ticket/590$ https://github.com/openstreetmap/trac-tickets/issues/590 permanent;
rewrite ^/ticket/591$ https://github.com/openstreetmap/trac-tickets/issues/591 permanent;
rewrite ^/ticket/592$ https://github.com/openstreetmap/trac-tickets/issues/592 permanent;
rewrite ^/ticket/593$ https://github.com/openstreetmap/trac-tickets/issues/593 permanent;
rewrite ^/ticket/594$ https://github.com/openstreetmap/trac-tickets/issues/594 permanent;
rewrite ^/ticket/595$ https://github.com/openstreetmap/trac-tickets/issues/595 permanent;
rewrite ^/ticket/596$ https://github.com/openstreetmap/trac-tickets/issues/596 permanent;
rewrite ^/ticket/597$ https://github.com/openstreetmap/trac-tickets/issues/597 permanent;
rewrite ^/ticket/598$ https://github.com/openstreetmap/trac-tickets/issues/598 permanent;
rewrite ^/ticket/599$ https://github.com/openstreetmap/trac-tickets/issues/599 permanent;
rewrite ^/ticket/600$ https://github.com/openstreetmap/trac-tickets/issues/600 permanent;
rewrite ^/ticket/601$ https://github.com/openstreetmap/trac-tickets/issues/601 permanent;
rewrite ^/ticket/602$ https://github.com/openstreetmap/trac-tickets/issues/602 permanent;
rewrite ^/ticket/603$ https://github.com/openstreetmap/trac-tickets/issues/603 permanent;
rewrite ^/ticket/604$ https://github.com/openstreetmap/trac-tickets/issues/604 permanent;
rewrite ^/ticket/605$ https://github.com/openstreetmap/trac-tickets/issues/605 permanent;
rewrite ^/ticket/606$ https://github.com/openstreetmap/trac-tickets/issues/606 permanent;
rewrite ^/ticket/607$ https://github.com/openstreetmap/trac-tickets/issues/607 permanent;
rewrite ^/ticket/608$ https://github.com/openstreetmap/trac-tickets/issues/608 permanent;
rewrite ^/ticket/609$ https://github.com/openstreetmap/trac-tickets/issues/609 permanent;
rewrite ^/ticket/610$ https://github.com/openstreetmap/trac-tickets/issues/610 permanent;
rewrite ^/ticket/611$ https://github.com/openstreetmap/trac-tickets/issues/611 permanent;
rewrite ^/ticket/612$ https://github.com/openstreetmap/trac-tickets/issues/612 permanent;
rewrite ^/ticket/613$ https://github.com/openstreetmap/trac-tickets/issues/613 permanent;
rewrite ^/ticket/614$ https://github.com/openstreetmap/trac-tickets/issues/614 permanent;
rewrite ^/ticket/615$ https://github.com/openstreetmap/trac-tickets/issues/615 permanent;
rewrite ^/ticket/616$ https://github.com/openstreetmap/trac-tickets/issues/616 permanent;
rewrite ^/ticket/617$ https://github.com/openstreetmap/trac-tickets/issues/617 permanent;
rewrite ^/ticket/618$ https://github.com/openstreetmap/trac-tickets/issues/618 permanent;
rewrite ^/ticket/619$ https://github.com/openstreetmap/trac-tickets/issues/619 permanent;
rewrite ^/ticket/620$ https://github.com/openstreetmap/trac-tickets/issues/620 permanent;
rewrite ^/ticket/621$ https://github.com/openstreetmap/trac-tickets/issues/621 permanent;
rewrite ^/ticket/622$ https://github.com/openstreetmap/trac-tickets/issues/622 permanent;
rewrite ^/ticket/623$ https://github.com/openstreetmap/trac-tickets/issues/623 permanent;
rewrite ^/ticket/624$ https://github.com/openstreetmap/trac-tickets/issues/624 permanent;
rewrite ^/ticket/625$ https://github.com/openstreetmap/trac-tickets/issues/625 permanent;
rewrite ^/ticket/626$ https://github.com/openstreetmap/trac-tickets/issues/626 permanent;
rewrite ^/ticket/627$ https://github.com/openstreetmap/trac-tickets/issues/627 permanent;
rewrite ^/ticket/628$ https://github.com/openstreetmap/trac-tickets/issues/628 permanent;
rewrite ^/ticket/629$ https://github.com/openstreetmap/trac-tickets/issues/629 permanent;
rewrite ^/ticket/630$ https://github.com/openstreetmap/trac-tickets/issues/630 permanent;
rewrite ^/ticket/631$ https://github.com/openstreetmap/trac-tickets/issues/631 permanent;
rewrite ^/ticket/632$ https://github.com/openstreetmap/trac-tickets/issues/632 permanent;
rewrite ^/ticket/633$ https://github.com/openstreetmap/trac-tickets/issues/633 permanent;
rewrite ^/ticket/634$ https://github.com/openstreetmap/trac-tickets/issues/634 permanent;
rewrite ^/ticket/635$ https://github.com/openstreetmap/trac-tickets/issues/635 permanent;
rewrite ^/ticket/636$ https://github.com/openstreetmap/trac-tickets/issues/636 permanent;
rewrite ^/ticket/637$ https://github.com/openstreetmap/trac-tickets/issues/637 permanent;
rewrite ^/ticket/638$ https://github.com/openstreetmap/trac-tickets/issues/638 permanent;
rewrite ^/ticket/639$ https://github.com/openstreetmap/trac-tickets/issues/639 permanent;
rewrite ^/ticket/640$ https://github.com/openstreetmap/trac-tickets/issues/640 permanent;
rewrite ^/ticket/641$ https://github.com/openstreetmap/trac-tickets/issues/641 permanent;
rewrite ^/ticket/642$ https://github.com/openstreetmap/trac-tickets/issues/642 permanent;
rewrite ^/ticket/643$ https://github.com/openstreetmap/trac-tickets/issues/643 permanent;
rewrite ^/ticket/644$ https://github.com/openstreetmap/trac-tickets/issues/644 permanent;
rewrite ^/ticket/645$ https://github.com/openstreetmap/trac-tickets/issues/645 permanent;
rewrite ^/ticket/646$ https://github.com/openstreetmap/trac-tickets/issues/646 permanent;
rewrite ^/ticket/647$ https://github.com/openstreetmap/trac-tickets/issues/647 permanent;
rewrite ^/ticket/648$ https://github.com/openstreetmap/trac-tickets/issues/648 permanent;
rewrite ^/ticket/649$ https://github.com/openstreetmap/trac-tickets/issues/649 permanent;
rewrite ^/ticket/650$ https://github.com/openstreetmap/trac-tickets/issues/650 permanent;
rewrite ^/ticket/651$ https://github.com/openstreetmap/trac-tickets/issues/651 permanent;
rewrite ^/ticket/652$ https://github.com/openstreetmap/trac-tickets/issues/652 permanent;
rewrite ^/ticket/653$ https://github.com/openstreetmap/trac-tickets/issues/653 permanent;
rewrite ^/ticket/654$ https://github.com/openstreetmap/trac-tickets/issues/654 permanent;
rewrite ^/ticket/655$ https://github.com/openstreetmap/trac-tickets/issues/655 permanent;
rewrite ^/ticket/656$ https://github.com/openstreetmap/trac-tickets/issues/656 permanent;
rewrite ^/ticket/657$ https://github.com/openstreetmap/trac-tickets/issues/657 permanent;
rewrite ^/ticket/658$ https://github.com/openstreetmap/trac-tickets/issues/658 permanent;
rewrite ^/ticket/659$ https://github.com/openstreetmap/trac-tickets/issues/659 permanent;
rewrite ^/ticket/660$ https://github.com/openstreetmap/trac-tickets/issues/660 permanent;
rewrite ^/ticket/661$ https://github.com/openstreetmap/trac-tickets/issues/661 permanent;
rewrite ^/ticket/662$ https://github.com/openstreetmap/trac-tickets/issues/662 permanent;
rewrite ^/ticket/663$ https://github.com/openstreetmap/trac-tickets/issues/663 permanent;
rewrite ^/ticket/664$ https://github.com/openstreetmap/trac-tickets/issues/664 permanent;
rewrite ^/ticket/665$ https://github.com/openstreetmap/trac-tickets/issues/665 permanent;
rewrite ^/ticket/666$ https://github.com/openstreetmap/trac-tickets/issues/666 permanent;
rewrite ^/ticket/667$ https://github.com/openstreetmap/trac-tickets/issues/667 permanent;
rewrite ^/ticket/668$ https://github.com/openstreetmap/trac-tickets/issues/668 permanent;
rewrite ^/ticket/669$ https://github.com/openstreetmap/trac-tickets/issues/669 permanent;
rewrite ^/ticket/670$ https://github.com/openstreetmap/trac-tickets/issues/670 permanent;
rewrite ^/ticket/671$ https://github.com/openstreetmap/trac-tickets/issues/671 permanent;
rewrite ^/ticket/672$ https://github.com/openstreetmap/trac-tickets/issues/672 permanent;
rewrite ^/ticket/673$ https://github.com/openstreetmap/trac-tickets/issues/673 permanent;
rewrite ^/ticket/674$ https://github.com/openstreetmap/trac-tickets/issues/674 permanent;
rewrite ^/ticket/675$ https://github.com/openstreetmap/trac-tickets/issues/675 permanent;
rewrite ^/ticket/676$ https://github.com/openstreetmap/trac-tickets/issues/676 permanent;
rewrite ^/ticket/677$ https://github.com/openstreetmap/trac-tickets/issues/677 permanent;
rewrite ^/ticket/678$ https://github.com/openstreetmap/trac-tickets/issues/678 permanent;
rewrite ^/ticket/679$ https://github.com/openstreetmap/trac-tickets/issues/679 permanent;
rewrite ^/ticket/680$ https://github.com/openstreetmap/trac-tickets/issues/680 permanent;
rewrite ^/ticket/681$ https://github.com/openstreetmap/trac-tickets/issues/681 permanent;
rewrite ^/ticket/682$ https://github.com/openstreetmap/trac-tickets/issues/682 permanent;
rewrite ^/ticket/683$ https://github.com/openstreetmap/trac-tickets/issues/683 permanent;
rewrite ^/ticket/684$ https://github.com/openstreetmap/trac-tickets/issues/684 permanent;
rewrite ^/ticket/685$ https://github.com/openstreetmap/trac-tickets/issues/685 permanent;
rewrite ^/ticket/686$ https://github.com/openstreetmap/trac-tickets/issues/686 permanent;
rewrite ^/ticket/687$ https://github.com/openstreetmap/trac-tickets/issues/687 permanent;
rewrite ^/ticket/688$ https://github.com/openstreetmap/trac-tickets/issues/688 permanent;
rewrite ^/ticket/689$ https://github.com/openstreetmap/trac-tickets/issues/689 permanent;
rewrite ^/ticket/690$ https://github.com/openstreetmap/trac-tickets/issues/690 permanent;
rewrite ^/ticket/691$ https://github.com/openstreetmap/trac-tickets/issues/691 permanent;
rewrite ^/ticket/692$ https://github.com/openstreetmap/trac-tickets/issues/692 permanent;
rewrite ^/ticket/693$ https://github.com/openstreetmap/trac-tickets/issues/693 permanent;
rewrite ^/ticket/694$ https://github.com/openstreetmap/trac-tickets/issues/694 permanent;
rewrite ^/ticket/695$ https://github.com/openstreetmap/trac-tickets/issues/695 permanent;
rewrite ^/ticket/696$ https://github.com/openstreetmap/trac-tickets/issues/696 permanent;
rewrite ^/ticket/697$ https://github.com/openstreetmap/trac-tickets/issues/697 permanent;
rewrite ^/ticket/698$ https://github.com/openstreetmap/trac-tickets/issues/698 permanent;
rewrite ^/ticket/699$ https://github.com/openstreetmap/trac-tickets/issues/699 permanent;
rewrite ^/ticket/700$ https://github.com/openstreetmap/trac-tickets/issues/700 permanent;
rewrite ^/ticket/701$ https://github.com/openstreetmap/trac-tickets/issues/701 permanent;
rewrite ^/ticket/702$ https://github.com/openstreetmap/trac-tickets/issues/702 permanent;
rewrite ^/ticket/703$ https://github.com/openstreetmap/trac-tickets/issues/703 permanent;
rewrite ^/ticket/704$ https://github.com/openstreetmap/trac-tickets/issues/704 permanent;
rewrite ^/ticket/705$ https://github.com/openstreetmap/trac-tickets/issues/705 permanent;
rewrite ^/ticket/706$ https://github.com/openstreetmap/trac-tickets/issues/706 permanent;
rewrite ^/ticket/707$ https://github.com/openstreetmap/trac-tickets/issues/707 permanent;
rewrite ^/ticket/708$ https://github.com/openstreetmap/trac-tickets/issues/708 permanent;
rewrite ^/ticket/709$ https://github.com/openstreetmap/trac-tickets/issues/709 permanent;
rewrite ^/ticket/710$ https://github.com/openstreetmap/trac-tickets/issues/710 permanent;
rewrite ^/ticket/711$ https://github.com/openstreetmap/trac-tickets/issues/711 permanent;
rewrite ^/ticket/712$ https://github.com/openstreetmap/trac-tickets/issues/712 permanent;
rewrite ^/ticket/713$ https://github.com/openstreetmap/trac-tickets/issues/713 permanent;
rewrite ^/ticket/714$ https://github.com/openstreetmap/trac-tickets/issues/714 permanent;
rewrite ^/ticket/715$ https://github.com/openstreetmap/trac-tickets/issues/715 permanent;
rewrite ^/ticket/716$ https://github.com/openstreetmap/trac-tickets/issues/716 permanent;
rewrite ^/ticket/717$ https://github.com/openstreetmap/trac-tickets/issues/717 permanent;
rewrite ^/ticket/718$ https://github.com/openstreetmap/trac-tickets/issues/718 permanent;
rewrite ^/ticket/719$ https://github.com/openstreetmap/trac-tickets/issues/719 permanent;
rewrite ^/ticket/720$ https://github.com/openstreetmap/trac-tickets/issues/720 permanent;
rewrite ^/ticket/721$ https://github.com/openstreetmap/trac-tickets/issues/721 permanent;
rewrite ^/ticket/722$ https://github.com/openstreetmap/trac-tickets/issues/722 permanent;
rewrite ^/ticket/723$ https://github.com/openstreetmap/trac-tickets/issues/723 permanent;
rewrite ^/ticket/724$ https://github.com/openstreetmap/trac-tickets/issues/724 permanent;
rewrite ^/ticket/725$ https://github.com/openstreetmap/trac-tickets/issues/725 permanent;
rewrite ^/ticket/726$ https://github.com/openstreetmap/trac-tickets/issues/726 permanent;
rewrite ^/ticket/727$ https://github.com/openstreetmap/trac-tickets/issues/727 permanent;
rewrite ^/ticket/728$ https://github.com/openstreetmap/trac-tickets/issues/728 permanent;
rewrite ^/ticket/729$ https://github.com/openstreetmap/trac-tickets/issues/729 permanent;
rewrite ^/ticket/730$ https://github.com/openstreetmap/trac-tickets/issues/730 permanent;
rewrite ^/ticket/731$ https://github.com/openstreetmap/trac-tickets/issues/731 permanent;
rewrite ^/ticket/732$ https://github.com/openstreetmap/trac-tickets/issues/732 permanent;
rewrite ^/ticket/733$ https://github.com/openstreetmap/trac-tickets/issues/733 permanent;
rewrite ^/ticket/734$ https://github.com/openstreetmap/trac-tickets/issues/734 permanent;
rewrite ^/ticket/735$ https://github.com/openstreetmap/trac-tickets/issues/735 permanent;
rewrite ^/ticket/736$ https://github.com/openstreetmap/trac-tickets/issues/736 permanent;
rewrite ^/ticket/737$ https://github.com/openstreetmap/trac-tickets/issues/737 permanent;
rewrite ^/ticket/738$ https://github.com/openstreetmap/trac-tickets/issues/738 permanent;
rewrite ^/ticket/739$ https://github.com/openstreetmap/trac-tickets/issues/739 permanent;
rewrite ^/ticket/740$ https://github.com/openstreetmap/trac-tickets/issues/740 permanent;
rewrite ^/ticket/741$ https://github.com/openstreetmap/trac-tickets/issues/741 permanent;
rewrite ^/ticket/742$ https://github.com/openstreetmap/trac-tickets/issues/742 permanent;
rewrite ^/ticket/743$ https://github.com/openstreetmap/trac-tickets/issues/743 permanent;
rewrite ^/ticket/744$ https://github.com/openstreetmap/trac-tickets/issues/744 permanent;
rewrite ^/ticket/745$ https://github.com/openstreetmap/trac-tickets/issues/745 permanent;
rewrite ^/ticket/746$ https://github.com/openstreetmap/trac-tickets/issues/746 permanent;
rewrite ^/ticket/747$ https://github.com/openstreetmap/trac-tickets/issues/747 permanent;
rewrite ^/ticket/748$ https://github.com/openstreetmap/trac-tickets/issues/748 permanent;
rewrite ^/ticket/749$ https://github.com/openstreetmap/trac-tickets/issues/749 permanent;
rewrite ^/ticket/750$ https://github.com/openstreetmap/trac-tickets/issues/750 permanent;
rewrite ^/ticket/751$ https://github.com/openstreetmap/trac-tickets/issues/751 permanent;
rewrite ^/ticket/752$ https://github.com/openstreetmap/trac-tickets/issues/752 permanent;
rewrite ^/ticket/753$ https://github.com/openstreetmap/trac-tickets/issues/753 permanent;
rewrite ^/ticket/754$ https://github.com/openstreetmap/trac-tickets/issues/754 permanent;
rewrite ^/ticket/755$ https://github.com/openstreetmap/trac-tickets/issues/755 permanent;
rewrite ^/ticket/756$ https://github.com/openstreetmap/trac-tickets/issues/756 permanent;
rewrite ^/ticket/757$ https://github.com/openstreetmap/trac-tickets/issues/757 permanent;
rewrite ^/ticket/758$ https://github.com/openstreetmap/trac-tickets/issues/758 permanent;
rewrite ^/ticket/759$ https://github.com/openstreetmap/trac-tickets/issues/759 permanent;
rewrite ^/ticket/760$ https://github.com/openstreetmap/trac-tickets/issues/760 permanent;
rewrite ^/ticket/761$ https://github.com/openstreetmap/trac-tickets/issues/761 permanent;
rewrite ^/ticket/762$ https://github.com/openstreetmap/trac-tickets/issues/762 permanent;
rewrite ^/ticket/763$ https://github.com/openstreetmap/trac-tickets/issues/763 permanent;
rewrite ^/ticket/764$ https://github.com/openstreetmap/trac-tickets/issues/764 permanent;
rewrite ^/ticket/765$ https://github.com/openstreetmap/trac-tickets/issues/765 permanent;
rewrite ^/ticket/766$ https://github.com/openstreetmap/trac-tickets/issues/766 permanent;
rewrite ^/ticket/767$ https://github.com/openstreetmap/trac-tickets/issues/767 permanent;
rewrite ^/ticket/768$ https://github.com/openstreetmap/trac-tickets/issues/768 permanent;
rewrite ^/ticket/769$ https://github.com/openstreetmap/trac-tickets/issues/769 permanent;
rewrite ^/ticket/770$ https://github.com/openstreetmap/trac-tickets/issues/770 permanent;
rewrite ^/ticket/771$ https://github.com/openstreetmap/trac-tickets/issues/771 permanent;
rewrite ^/ticket/772$ https://github.com/openstreetmap/trac-tickets/issues/772 permanent;
rewrite ^/ticket/773$ https://github.com/openstreetmap/trac-tickets/issues/773 permanent;
rewrite ^/ticket/774$ https://github.com/openstreetmap/trac-tickets/issues/774 permanent;
rewrite ^/ticket/775$ https://github.com/openstreetmap/trac-tickets/issues/775 permanent;
rewrite ^/ticket/776$ https://github.com/openstreetmap/trac-tickets/issues/776 permanent;
rewrite ^/ticket/777$ https://github.com/openstreetmap/trac-tickets/issues/777 permanent;
rewrite ^/ticket/778$ https://github.com/openstreetmap/trac-tickets/issues/778 permanent;
rewrite ^/ticket/779$ https://github.com/openstreetmap/trac-tickets/issues/779 permanent;
rewrite ^/ticket/780$ https://github.com/openstreetmap/trac-tickets/issues/780 permanent;
rewrite ^/ticket/781$ https://github.com/openstreetmap/trac-tickets/issues/781 permanent;
rewrite ^/ticket/782$ https://github.com/openstreetmap/trac-tickets/issues/782 permanent;
rewrite ^/ticket/783$ https://github.com/openstreetmap/trac-tickets/issues/783 permanent;
rewrite ^/ticket/784$ https://github.com/openstreetmap/trac-tickets/issues/784 permanent;
rewrite ^/ticket/785$ https://github.com/openstreetmap/trac-tickets/issues/785 permanent;
rewrite ^/ticket/786$ https://github.com/openstreetmap/trac-tickets/issues/786 permanent;
rewrite ^/ticket/787$ https://github.com/openstreetmap/trac-tickets/issues/787 permanent;
rewrite ^/ticket/788$ https://github.com/openstreetmap/trac-tickets/issues/788 permanent;
rewrite ^/ticket/789$ https://github.com/openstreetmap/trac-tickets/issues/789 permanent;
rewrite ^/ticket/790$ https://github.com/openstreetmap/trac-tickets/issues/790 permanent;
rewrite ^/ticket/791$ https://github.com/openstreetmap/trac-tickets/issues/791 permanent;
rewrite ^/ticket/792$ https://github.com/openstreetmap/trac-tickets/issues/792 permanent;
rewrite ^/ticket/793$ https://github.com/openstreetmap/trac-tickets/issues/793 permanent;
rewrite ^/ticket/794$ https://github.com/openstreetmap/trac-tickets/issues/794 permanent;
rewrite ^/ticket/795$ https://github.com/openstreetmap/trac-tickets/issues/795 permanent;
rewrite ^/ticket/796$ https://github.com/openstreetmap/trac-tickets/issues/796 permanent;
rewrite ^/ticket/797$ https://github.com/openstreetmap/trac-tickets/issues/797 permanent;
rewrite ^/ticket/798$ https://github.com/openstreetmap/trac-tickets/issues/798 permanent;
rewrite ^/ticket/799$ https://github.com/openstreetmap/trac-tickets/issues/799 permanent;
rewrite ^/ticket/800$ https://github.com/openstreetmap/trac-tickets/issues/800 permanent;
rewrite ^/ticket/801$ https://github.com/openstreetmap/trac-tickets/issues/801 permanent;
rewrite ^/ticket/802$ https://github.com/openstreetmap/trac-tickets/issues/802 permanent;
rewrite ^/ticket/803$ https://github.com/openstreetmap/trac-tickets/issues/803 permanent;
rewrite ^/ticket/804$ https://github.com/openstreetmap/trac-tickets/issues/804 permanent;
rewrite ^/ticket/805$ https://github.com/openstreetmap/trac-tickets/issues/805 permanent;
rewrite ^/ticket/806$ https://github.com/openstreetmap/trac-tickets/issues/806 permanent;
rewrite ^/ticket/807$ https://github.com/openstreetmap/trac-tickets/issues/807 permanent;
rewrite ^/ticket/808$ https://github.com/openstreetmap/trac-tickets/issues/808 permanent;
rewrite ^/ticket/809$ https://github.com/openstreetmap/trac-tickets/issues/809 permanent;
rewrite ^/ticket/810$ https://github.com/openstreetmap/trac-tickets/issues/810 permanent;
rewrite ^/ticket/811$ https://github.com/openstreetmap/trac-tickets/issues/811 permanent;
rewrite ^/ticket/812$ https://github.com/openstreetmap/trac-tickets/issues/812 permanent;
rewrite ^/ticket/813$ https://github.com/openstreetmap/trac-tickets/issues/813 permanent;
rewrite ^/ticket/814$ https://github.com/openstreetmap/trac-tickets/issues/814 permanent;
rewrite ^/ticket/815$ https://github.com/openstreetmap/trac-tickets/issues/815 permanent;
rewrite ^/ticket/816$ https://github.com/openstreetmap/trac-tickets/issues/816 permanent;
rewrite ^/ticket/817$ https://github.com/openstreetmap/trac-tickets/issues/817 permanent;
rewrite ^/ticket/818$ https://github.com/openstreetmap/trac-tickets/issues/818 permanent;
rewrite ^/ticket/819$ https://github.com/openstreetmap/trac-tickets/issues/819 permanent;
rewrite ^/ticket/820$ https://github.com/openstreetmap/trac-tickets/issues/820 permanent;
rewrite ^/ticket/821$ https://github.com/openstreetmap/trac-tickets/issues/821 permanent;
rewrite ^/ticket/822$ https://github.com/openstreetmap/trac-tickets/issues/822 permanent;
rewrite ^/ticket/823$ https://github.com/openstreetmap/trac-tickets/issues/823 permanent;
rewrite ^/ticket/824$ https://github.com/openstreetmap/trac-tickets/issues/824 permanent;
rewrite ^/ticket/825$ https://github.com/openstreetmap/trac-tickets/issues/825 permanent;
rewrite ^/ticket/826$ https://github.com/openstreetmap/trac-tickets/issues/826 permanent;
rewrite ^/ticket/827$ https://github.com/openstreetmap/trac-tickets/issues/827 permanent;
rewrite ^/ticket/828$ https://github.com/openstreetmap/trac-tickets/issues/828 permanent;
rewrite ^/ticket/829$ https://github.com/openstreetmap/trac-tickets/issues/829 permanent;
rewrite ^/ticket/830$ https://github.com/openstreetmap/trac-tickets/issues/830 permanent;
rewrite ^/ticket/831$ https://github.com/openstreetmap/trac-tickets/issues/831 permanent;
rewrite ^/ticket/832$ https://github.com/openstreetmap/trac-tickets/issues/832 permanent;
rewrite ^/ticket/833$ https://github.com/openstreetmap/trac-tickets/issues/833 permanent;
rewrite ^/ticket/834$ https://github.com/openstreetmap/trac-tickets/issues/834 permanent;
rewrite ^/ticket/835$ https://github.com/openstreetmap/trac-tickets/issues/835 permanent;
rewrite ^/ticket/836$ https://github.com/openstreetmap/trac-tickets/issues/836 permanent;
rewrite ^/ticket/837$ https://github.com/openstreetmap/trac-tickets/issues/837 permanent;
rewrite ^/ticket/838$ https://github.com/openstreetmap/trac-tickets/issues/838 permanent;
rewrite ^/ticket/839$ https://github.com/openstreetmap/trac-tickets/issues/839 permanent;
rewrite ^/ticket/840$ https://github.com/openstreetmap/trac-tickets/issues/840 permanent;
rewrite ^/ticket/841$ https://github.com/openstreetmap/trac-tickets/issues/841 permanent;
rewrite ^/ticket/842$ https://github.com/openstreetmap/trac-tickets/issues/842 permanent;
rewrite ^/ticket/843$ https://github.com/openstreetmap/trac-tickets/issues/843 permanent;
rewrite ^/ticket/844$ https://github.com/openstreetmap/trac-tickets/issues/844 permanent;
rewrite ^/ticket/845$ https://github.com/openstreetmap/trac-tickets/issues/845 permanent;
rewrite ^/ticket/846$ https://github.com/openstreetmap/trac-tickets/issues/846 permanent;
rewrite ^/ticket/847$ https://github.com/openstreetmap/trac-tickets/issues/847 permanent;
rewrite ^/ticket/848$ https://github.com/openstreetmap/trac-tickets/issues/848 permanent;
rewrite ^/ticket/849$ https://github.com/openstreetmap/trac-tickets/issues/849 permanent;
rewrite ^/ticket/850$ https://github.com/openstreetmap/trac-tickets/issues/850 permanent;
rewrite ^/ticket/851$ https://github.com/openstreetmap/trac-tickets/issues/851 permanent;
rewrite ^/ticket/852$ https://github.com/openstreetmap/trac-tickets/issues/852 permanent;
rewrite ^/ticket/853$ https://github.com/openstreetmap/trac-tickets/issues/853 permanent;
rewrite ^/ticket/854$ https://github.com/openstreetmap/trac-tickets/issues/854 permanent;
rewrite ^/ticket/855$ https://github.com/openstreetmap/trac-tickets/issues/855 permanent;
rewrite ^/ticket/856$ https://github.com/openstreetmap/trac-tickets/issues/856 permanent;
rewrite ^/ticket/857$ https://github.com/openstreetmap/trac-tickets/issues/857 permanent;
rewrite ^/ticket/858$ https://github.com/openstreetmap/trac-tickets/issues/858 permanent;
rewrite ^/ticket/859$ https://github.com/openstreetmap/trac-tickets/issues/859 permanent;
rewrite ^/ticket/860$ https://github.com/openstreetmap/trac-tickets/issues/860 permanent;
rewrite ^/ticket/861$ https://github.com/openstreetmap/trac-tickets/issues/861 permanent;
rewrite ^/ticket/862$ https://github.com/openstreetmap/trac-tickets/issues/862 permanent;
rewrite ^/ticket/863$ https://github.com/openstreetmap/trac-tickets/issues/863 permanent;
rewrite ^/ticket/864$ https://github.com/openstreetmap/trac-tickets/issues/864 permanent;
rewrite ^/ticket/865$ https://github.com/openstreetmap/trac-tickets/issues/865 permanent;
rewrite ^/ticket/866$ https://github.com/openstreetmap/trac-tickets/issues/866 permanent;
rewrite ^/ticket/867$ https://github.com/openstreetmap/trac-tickets/issues/867 permanent;
rewrite ^/ticket/868$ https://github.com/openstreetmap/trac-tickets/issues/868 permanent;
rewrite ^/ticket/869$ https://github.com/openstreetmap/trac-tickets/issues/869 permanent;
rewrite ^/ticket/870$ https://github.com/openstreetmap/trac-tickets/issues/870 permanent;
rewrite ^/ticket/871$ https://github.com/openstreetmap/trac-tickets/issues/871 permanent;
rewrite ^/ticket/872$ https://github.com/openstreetmap/trac-tickets/issues/872 permanent;
rewrite ^/ticket/873$ https://github.com/openstreetmap/trac-tickets/issues/873 permanent;
rewrite ^/ticket/874$ https://github.com/openstreetmap/trac-tickets/issues/874 permanent;
rewrite ^/ticket/875$ https://github.com/openstreetmap/trac-tickets/issues/875 permanent;
rewrite ^/ticket/876$ https://github.com/openstreetmap/trac-tickets/issues/876 permanent;
rewrite ^/ticket/877$ https://github.com/openstreetmap/trac-tickets/issues/877 permanent;
rewrite ^/ticket/878$ https://github.com/openstreetmap/trac-tickets/issues/878 permanent;
rewrite ^/ticket/879$ https://github.com/openstreetmap/trac-tickets/issues/879 permanent;
rewrite ^/ticket/880$ https://github.com/openstreetmap/trac-tickets/issues/880 permanent;
rewrite ^/ticket/881$ https://github.com/openstreetmap/trac-tickets/issues/881 permanent;
rewrite ^/ticket/882$ https://github.com/openstreetmap/trac-tickets/issues/882 permanent;
rewrite ^/ticket/883$ https://github.com/openstreetmap/trac-tickets/issues/883 permanent;
rewrite ^/ticket/884$ https://github.com/openstreetmap/trac-tickets/issues/884 permanent;
rewrite ^/ticket/885$ https://github.com/openstreetmap/trac-tickets/issues/885 permanent;
rewrite ^/ticket/886$ https://github.com/openstreetmap/trac-tickets/issues/886 permanent;
rewrite ^/ticket/887$ https://github.com/openstreetmap/trac-tickets/issues/887 permanent;
rewrite ^/ticket/888$ https://github.com/openstreetmap/trac-tickets/issues/888 permanent;
rewrite ^/ticket/889$ https://github.com/openstreetmap/trac-tickets/issues/889 permanent;
rewrite ^/ticket/890$ https://github.com/openstreetmap/trac-tickets/issues/890 permanent;
rewrite ^/ticket/891$ https://github.com/openstreetmap/trac-tickets/issues/891 permanent;
rewrite ^/ticket/892$ https://github.com/openstreetmap/trac-tickets/issues/892 permanent;
rewrite ^/ticket/893$ https://github.com/openstreetmap/trac-tickets/issues/893 permanent;
rewrite ^/ticket/894$ https://github.com/openstreetmap/trac-tickets/issues/894 permanent;
rewrite ^/ticket/895$ https://github.com/openstreetmap/trac-tickets/issues/895 permanent;
rewrite ^/ticket/896$ https://github.com/openstreetmap/trac-tickets/issues/896 permanent;
rewrite ^/ticket/897$ https://github.com/openstreetmap/trac-tickets/issues/897 permanent;
rewrite ^/ticket/898$ https://github.com/openstreetmap/trac-tickets/issues/898 permanent;
rewrite ^/ticket/899$ https://github.com/openstreetmap/trac-tickets/issues/899 permanent;
rewrite ^/ticket/900$ https://github.com/openstreetmap/trac-tickets/issues/900 permanent;
rewrite ^/ticket/901$ https://github.com/openstreetmap/trac-tickets/issues/901 permanent;
rewrite ^/ticket/902$ https://github.com/openstreetmap/trac-tickets/issues/902 permanent;
rewrite ^/ticket/903$ https://github.com/openstreetmap/trac-tickets/issues/903 permanent;
rewrite ^/ticket/904$ https://github.com/openstreetmap/trac-tickets/issues/904 permanent;
rewrite ^/ticket/905$ https://github.com/openstreetmap/trac-tickets/issues/905 permanent;
rewrite ^/ticket/906$ https://github.com/openstreetmap/trac-tickets/issues/906 permanent;
rewrite ^/ticket/907$ https://github.com/openstreetmap/trac-tickets/issues/907 permanent;
rewrite ^/ticket/908$ https://github.com/openstreetmap/trac-tickets/issues/908 permanent;
rewrite ^/ticket/909$ https://github.com/openstreetmap/trac-tickets/issues/909 permanent;
rewrite ^/ticket/910$ https://github.com/openstreetmap/trac-tickets/issues/910 permanent;
rewrite ^/ticket/911$ https://github.com/openstreetmap/trac-tickets/issues/911 permanent;
rewrite ^/ticket/912$ https://github.com/openstreetmap/trac-tickets/issues/912 permanent;
rewrite ^/ticket/913$ https://github.com/openstreetmap/trac-tickets/issues/913 permanent;
rewrite ^/ticket/914$ https://github.com/openstreetmap/trac-tickets/issues/914 permanent;
rewrite ^/ticket/915$ https://github.com/openstreetmap/trac-tickets/issues/915 permanent;
rewrite ^/ticket/916$ https://github.com/openstreetmap/trac-tickets/issues/916 permanent;
rewrite ^/ticket/917$ https://github.com/openstreetmap/trac-tickets/issues/917 permanent;
rewrite ^/ticket/918$ https://github.com/openstreetmap/trac-tickets/issues/918 permanent;
rewrite ^/ticket/919$ https://github.com/openstreetmap/trac-tickets/issues/919 permanent;
rewrite ^/ticket/920$ https://github.com/openstreetmap/trac-tickets/issues/920 permanent;
rewrite ^/ticket/921$ https://github.com/openstreetmap/trac-tickets/issues/921 permanent;
rewrite ^/ticket/922$ https://github.com/openstreetmap/trac-tickets/issues/922 permanent;
rewrite ^/ticket/923$ https://github.com/openstreetmap/trac-tickets/issues/923 permanent;
rewrite ^/ticket/924$ https://github.com/openstreetmap/trac-tickets/issues/924 permanent;
rewrite ^/ticket/925$ https://github.com/openstreetmap/trac-tickets/issues/925 permanent;
rewrite ^/ticket/926$ https://github.com/openstreetmap/trac-tickets/issues/926 permanent;
rewrite ^/ticket/927$ https://github.com/openstreetmap/trac-tickets/issues/927 permanent;
rewrite ^/ticket/928$ https://github.com/openstreetmap/trac-tickets/issues/928 permanent;
rewrite ^/ticket/929$ https://github.com/openstreetmap/trac-tickets/issues/929 permanent;
rewrite ^/ticket/930$ https://github.com/openstreetmap/trac-tickets/issues/930 permanent;
rewrite ^/ticket/931$ https://github.com/openstreetmap/trac-tickets/issues/931 permanent;
rewrite ^/ticket/932$ https://github.com/openstreetmap/trac-tickets/issues/932 permanent;
rewrite ^/ticket/933$ https://github.com/openstreetmap/trac-tickets/issues/933 permanent;
rewrite ^/ticket/934$ https://github.com/openstreetmap/trac-tickets/issues/934 permanent;
rewrite ^/ticket/935$ https://github.com/openstreetmap/trac-tickets/issues/935 permanent;
rewrite ^/ticket/936$ https://github.com/openstreetmap/trac-tickets/issues/936 permanent;
rewrite ^/ticket/937$ https://github.com/openstreetmap/trac-tickets/issues/937 permanent;
rewrite ^/ticket/938$ https://github.com/openstreetmap/trac-tickets/issues/938 permanent;
rewrite ^/ticket/939$ https://github.com/openstreetmap/trac-tickets/issues/939 permanent;
rewrite ^/ticket/940$ https://github.com/openstreetmap/trac-tickets/issues/940 permanent;
rewrite ^/ticket/941$ https://github.com/openstreetmap/trac-tickets/issues/941 permanent;
rewrite ^/ticket/942$ https://github.com/openstreetmap/trac-tickets/issues/942 permanent;
rewrite ^/ticket/943$ https://github.com/openstreetmap/trac-tickets/issues/943 permanent;
rewrite ^/ticket/944$ https://github.com/openstreetmap/trac-tickets/issues/944 permanent;
rewrite ^/ticket/945$ https://github.com/openstreetmap/trac-tickets/issues/945 permanent;
rewrite ^/ticket/946$ https://github.com/openstreetmap/trac-tickets/issues/946 permanent;
rewrite ^/ticket/947$ https://github.com/openstreetmap/trac-tickets/issues/947 permanent;
rewrite ^/ticket/948$ https://github.com/openstreetmap/trac-tickets/issues/948 permanent;
rewrite ^/ticket/949$ https://github.com/openstreetmap/trac-tickets/issues/949 permanent;
rewrite ^/ticket/950$ https://github.com/openstreetmap/trac-tickets/issues/950 permanent;
rewrite ^/ticket/951$ https://github.com/openstreetmap/trac-tickets/issues/951 permanent;
rewrite ^/ticket/952$ https://github.com/openstreetmap/trac-tickets/issues/952 permanent;
rewrite ^/ticket/953$ https://github.com/openstreetmap/trac-tickets/issues/953 permanent;
rewrite ^/ticket/954$ https://github.com/openstreetmap/trac-tickets/issues/954 permanent;
rewrite ^/ticket/955$ https://github.com/openstreetmap/trac-tickets/issues/955 permanent;
rewrite ^/ticket/956$ https://github.com/openstreetmap/trac-tickets/issues/956 permanent;
rewrite ^/ticket/957$ https://github.com/openstreetmap/trac-tickets/issues/957 permanent;
rewrite ^/ticket/958$ https://github.com/openstreetmap/trac-tickets/issues/958 permanent;
rewrite ^/ticket/959$ https://github.com/openstreetmap/trac-tickets/issues/959 permanent;
rewrite ^/ticket/960$ https://github.com/openstreetmap/trac-tickets/issues/960 permanent;
rewrite ^/ticket/961$ https://github.com/openstreetmap/trac-tickets/issues/961 permanent;
rewrite ^/ticket/962$ https://github.com/openstreetmap/trac-tickets/issues/962 permanent;
rewrite ^/ticket/963$ https://github.com/openstreetmap/trac-tickets/issues/963 permanent;
rewrite ^/ticket/964$ https://github.com/openstreetmap/trac-tickets/issues/964 permanent;
rewrite ^/ticket/965$ https://github.com/openstreetmap/trac-tickets/issues/965 permanent;
rewrite ^/ticket/966$ https://github.com/openstreetmap/trac-tickets/issues/966 permanent;
rewrite ^/ticket/967$ https://github.com/openstreetmap/trac-tickets/issues/967 permanent;
rewrite ^/ticket/968$ https://github.com/openstreetmap/trac-tickets/issues/968 permanent;
rewrite ^/ticket/969$ https://github.com/openstreetmap/trac-tickets/issues/969 permanent;
rewrite ^/ticket/970$ https://github.com/openstreetmap/trac-tickets/issues/970 permanent;
rewrite ^/ticket/971$ https://github.com/openstreetmap/trac-tickets/issues/971 permanent;
rewrite ^/ticket/972$ https://github.com/openstreetmap/trac-tickets/issues/972 permanent;
rewrite ^/ticket/973$ https://github.com/openstreetmap/trac-tickets/issues/973 permanent;
rewrite ^/ticket/974$ https://github.com/openstreetmap/trac-tickets/issues/974 permanent;
rewrite ^/ticket/975$ https://github.com/openstreetmap/trac-tickets/issues/975 permanent;
rewrite ^/ticket/976$ https://github.com/openstreetmap/trac-tickets/issues/976 permanent;
rewrite ^/ticket/977$ https://github.com/openstreetmap/trac-tickets/issues/977 permanent;
rewrite ^/ticket/978$ https://github.com/openstreetmap/trac-tickets/issues/978 permanent;
rewrite ^/ticket/979$ https://github.com/openstreetmap/trac-tickets/issues/979 permanent;
rewrite ^/ticket/980$ https://github.com/openstreetmap/trac-tickets/issues/980 permanent;
rewrite ^/ticket/981$ https://github.com/openstreetmap/trac-tickets/issues/981 permanent;
rewrite ^/ticket/982$ https://github.com/openstreetmap/trac-tickets/issues/982 permanent;
rewrite ^/ticket/983$ https://github.com/openstreetmap/trac-tickets/issues/983 permanent;
rewrite ^/ticket/984$ https://github.com/openstreetmap/trac-tickets/issues/984 permanent;
rewrite ^/ticket/985$ https://github.com/openstreetmap/trac-tickets/issues/985 permanent;
rewrite ^/ticket/986$ https://github.com/openstreetmap/trac-tickets/issues/986 permanent;
rewrite ^/ticket/987$ https://github.com/openstreetmap/trac-tickets/issues/987 permanent;
rewrite ^/ticket/988$ https://github.com/openstreetmap/trac-tickets/issues/988 permanent;
rewrite ^/ticket/989$ https://github.com/openstreetmap/trac-tickets/issues/989 permanent;
rewrite ^/ticket/990$ https://github.com/openstreetmap/trac-tickets/issues/990 permanent;
rewrite ^/ticket/991$ https://github.com/openstreetmap/trac-tickets/issues/991 permanent;
rewrite ^/ticket/992$ https://github.com/openstreetmap/trac-tickets/issues/992 permanent;
rewrite ^/ticket/993$ https://github.com/openstreetmap/trac-tickets/issues/993 permanent;
rewrite ^/ticket/994$ https://github.com/openstreetmap/trac-tickets/issues/994 permanent;
rewrite ^/ticket/995$ https://github.com/openstreetmap/trac-tickets/issues/995 permanent;
rewrite ^/ticket/996$ https://github.com/openstreetmap/trac-tickets/issues/996 permanent;