-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.htm
More file actions
5744 lines (5744 loc) · 389 KB
/
index.htm
File metadata and controls
5744 lines (5744 loc) · 389 KB
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
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Cities Skylines</title><link rel="stylesheet" type="text/css" href="s.css"></head><body>
<noscript><h2 style="color:red">JavaScript is required to display the images.</h2></noscript>
<h1>Cities Skylines Buildings</h1>
<div class="my"><div><i>This page shows standard buildings in Cities: Skylines, including DLCs. The buildings are organized by Building Collection.<br><br>In each gray box, the first line is the name of the building.<br><br></i></div></div>
<div class="my"><div><i><b>New:</b> Interactive feature provided by aubergine18 (Thanks!).<br>You can click on the gray boxes to create contents for skip.txt, for use with Loading Screen Mod. You can also click on the headings (Building Collections).<br>You find the skip list at the bottom of this page.</i></div></div>
<h3 id="Table_of_Contents">Table of Contents</h3>
<div><a href="#Residential_Low">Residential Low</a></div>
<div><a href="#Residential_High">Residential High</a></div>
<div><a href="#Commercial_Low">Commercial Low</a></div>
<div><a href="#Commercial_High">Commercial High</a></div>
<div><a href="#Office">Office</a></div>
<div><a href="#Industrial">Industrial</a></div>
<div><a href="#Industrial_Farming">Industrial Farming</a></div>
<div><a href="#Industrial_Forestry">Industrial Forestry</a></div>
<div><a href="#Industrial_Oil">Industrial Oil</a></div>
<div><a href="#Industrial_Ore">Industrial Ore</a></div>
<div><a href="#Extra_Buildings">Extra Buildings</a></div>
<div><a href="#After_Dark_Expansion">After Dark Expansion</a></div>
<div><a href="#Snowfall_Expansion">Snowfall Expansion</a></div>
<div><a href="#Natural_Disasters_Expansion">Natural Disasters Expansion</a></div>
<div><a href="#Mass_Transit_Expansion">Mass Transit Expansion</a></div>
<div><a href="#Green_Cities_Expansion">Green Cities Expansion</a></div>
<div><a href="#Green_Cities_Expansion_-_Summer_Only">Green Cities Expansion - Summer Only</a></div>
<div><a href="#Parklife_Expansion">Parklife Expansion</a></div>
<div><a href="#Industries_Expansion">Industries Expansion</a></div>
<div><a href="#Industries_Expansion_-_Summer_Only">Industries Expansion - Summer Only</a></div>
<div><a href="#Campus_Expansion">Campus Expansion</a></div>
<div><a href="#Art_Deco_DLC">Art Deco DLC</a></div>
<div><a href="#Concerts_DLC">Concerts DLC</a></div>
<div><a href="#European_Suburbia_DLC">European Suburbia DLC</a></div>
<div><a href="#High-Tech_Buildings_DLC">High-Tech Buildings DLC</a></div>
<div><a href="#Match_Day_DLC">Match Day DLC</a></div>
<div><a href="#Pearls_From_the_East_DLC">Pearls From the East DLC</a></div>
<div><a href="#Stadium_ENG_DLC">Stadium ENG DLC</a></div>
<div><a href="#Stadium_FRA_DLC">Stadium FRA DLC</a></div>
<div><a href="#Stadium_ITA_DLC">Stadium ITA DLC</a></div>
<div><a href="#Stadium_SPA_DLC">Stadium SPA DLC</a></div>
<div><a href="#University_City_DLC">University City DLC</a></div>
<div><a href="#Beautification">Beautification</a></div>
<div><a href="#Deluxe_Pack">Deluxe Pack</a></div>
<div><a href="#Education">Education</a></div>
<div><a href="#Electricity">Electricity</a></div>
<div><a href="#Fire_Department">Fire Department</a></div>
<div><a href="#Garbage">Garbage</a></div>
<div><a href="#Health_Care">Health Care</a></div>
<div><a href="#Landscaping">Landscaping</a></div>
<div><a href="#Login_Pack">Login Pack</a></div>
<div><a href="#Magicka_Pack">Magicka Pack</a></div>
<div><a href="#Mars">Mars</a></div>
<div><a href="#Monument">Monument</a></div>
<div><a href="#Police_Department">Police Department</a></div>
<div><a href="#Preorder_Pack">Preorder Pack</a></div>
<div><a href="#Public_Transport">Public Transport</a></div>
<div><a href="#Road">Road</a></div>
<div><a href="#Signup_Pack">Signup Pack</a></div>
<div><a href="#Water">Water</a></div>
<div><a href="#Europe_Residential_High">Europe Residential High</a></div>
<div><a href="#Europe_Commercial_High">Europe Commercial High</a></div>
<div><a href="#Europe_Office">Europe Office</a></div>
<div><a href="#Europe_Industrial_new">Europe Industrial new</a></div>
<div><a href="#Europe_Style_Services">Europe Style Services</a></div>
<div><a href="#Skip_List">Skip List</a></div>
<h2 id="Residential_Low">Residential Low</h2>
<div class="my"><div><pre><code>L1 1x1 Detached
Residential ResidentialLow
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/L1%201x1%20Detached.jpg" style="width:400px;height:264px;"></div></div>
<div class="my"><div><pre><code>L1 2x2 Detached01
Residential ResidentialLow
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/L1%202x2%20Detached01.jpg" style="width:312px;height:232px;"></div></div>
<div class="my"><div><pre><code>L1 2x2 Detached03
Residential ResidentialLow
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/L1%202x2%20Detached03.jpg" style="width:320px;height:280px;"></div></div>
<div class="my"><div><pre><code>L1 2x2 Detached04
Residential ResidentialLow
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/L1%202x2%20Detached04.jpg" style="width:496px;height:392px;"></div></div>
<div class="my"><div><pre><code>L1 2x2 Detached06
Residential ResidentialLow
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/L1%202x2%20Detached06.jpg" style="width:304px;height:288px;"></div></div>
<div class="my"><div><pre><code>L1 2x3 Detached03
Residential ResidentialLow
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/L1%202x3%20Detached03.jpg" style="width:384px;height:256px;"></div></div>
<div class="my"><div><pre><code>L1 2x3 Detached05
Residential ResidentialLow
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/L1%202x3%20Detached05.jpg" style="width:360px;height:408px;"></div></div>
<div class="my"><div><pre><code>L1 3x2 Detached04
Residential ResidentialLow
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/L1%203x2%20Detached04.jpg" style="width:408px;height:232px;"></div></div>
<div class="my"><div><pre><code>L1 3x3 Detached 1a
Residential ResidentialLow
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/L1%203x3%20Detached%201a.jpg" style="width:376px;height:240px;"></div></div>
<div class="my"><div><pre><code>L1 3x3 Detached02
Residential ResidentialLow
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/L1%203x3%20Detached02.jpg" style="width:440px;height:368px;"></div></div>
<div class="my"><div><pre><code>L1 3x4 detached04
Residential ResidentialLow
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/L1%203x4%20detached04.jpg" style="width:464px;height:256px;"></div></div>
<div class="my"><div><pre><code>L1 3x4 Detached04a
Residential ResidentialLow
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/L1%203x4%20Detached04a.jpg" style="width:368px;height:296px;"></div></div>
<div class="my"><div><pre><code>L1 3x4 Detached07a
Residential ResidentialLow
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/L1%203x4%20Detached07a.jpg" style="width:336px;height:368px;"></div></div>
<div class="my"><div><pre><code>L1 4x3 detached04
Residential ResidentialLow
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/L1%204x3%20detached04.jpg" style="width:408px;height:200px;"></div></div>
<div class="my"><div><pre><code>L1 4x3 Detached05
Residential ResidentialLow
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/L1%204x3%20Detached05.jpg" style="width:360px;height:200px;"></div></div>
<div class="my"><div><pre><code>L1 4x4 Detached02
Residential ResidentialLow
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/L1%204x4%20Detached02.jpg" style="width:376px;height:312px;"></div></div>
<div class="my"><div><pre><code>L1 4x4 Detached06a
Residential ResidentialLow
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/L1%204x4%20Detached06a.jpg" style="width:344px;height:344px;"></div></div>
<div class="my"><div><pre><code>L2 1x1 detached01
Residential ResidentialLow
L2 1x1 Straight</code></pre></div><div><img data-s="jpg/L2%201x1%20detached01.jpg" style="width:256px;height:184px;"></div></div>
<div class="my"><div><pre><code>L2 2x2 Detached01
Residential ResidentialLow
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/L2%202x2%20Detached01.jpg" style="width:384px;height:312px;"></div></div>
<div class="my"><div><pre><code>L2 2x2 Detached05
Residential ResidentialLow
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/L2%202x2%20Detached05.jpg" style="width:352px;height:376px;"></div></div>
<div class="my"><div><pre><code>L2 2x3 Detached01
Residential ResidentialLow
L2 2x3 Straight</code></pre></div><div><img data-s="jpg/L2%202x3%20Detached01.jpg" style="width:392px;height:264px;"></div></div>
<div class="my"><div><pre><code>L2 2x3 Detached03
Residential ResidentialLow
L2 2x3 Straight</code></pre></div><div><img data-s="jpg/L2%202x3%20Detached03.jpg" style="width:352px;height:288px;"></div></div>
<div class="my"><div><pre><code>L2 2x3 Semi-detachedhouse01
Residential ResidentialLow
L2 2x3 Straight</code></pre></div><div><img data-s="jpg/L2%202x3%20Semi-detachedhouse01.jpg" style="width:320px;height:312px;"></div></div>
<div class="my"><div><pre><code>L2 3x2 Detached01
Residential ResidentialLow
L2 3x2 Straight</code></pre></div><div><img data-s="jpg/L2%203x2%20Detached01.jpg" style="width:392px;height:280px;"></div></div>
<div class="my"><div><pre><code>L2 3x3 Detached02
Residential ResidentialLow
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/L2%203x3%20Detached02.jpg" style="width:432px;height:288px;"></div></div>
<div class="my"><div><pre><code>L2 3x4 Detached02
Residential ResidentialLow
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/L2%203x4%20Detached02.jpg" style="width:440px;height:320px;"></div></div>
<div class="my"><div><pre><code>L2 3x4 Detached02a
Residential ResidentialLow
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/L2%203x4%20Detached02a.jpg" style="width:376px;height:288px;"></div></div>
<div class="my"><div><pre><code>L2 3x4 Detached04a
Residential ResidentialLow
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/L2%203x4%20Detached04a.jpg" style="width:392px;height:272px;"></div></div>
<div class="my"><div><pre><code>L2 3x4 Semi-detachedhouse02a
Residential ResidentialLow
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/L2%203x4%20Semi-detachedhouse02a.jpg" style="width:344px;height:280px;"></div></div>
<div class="my"><div><pre><code>L2 4x3 Detached02
Residential ResidentialLow
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/L2%204x3%20Detached02.jpg" style="width:416px;height:200px;"></div></div>
<div class="my"><div><pre><code>L2 4x3 Detached02a
Residential ResidentialLow
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/L2%204x3%20Detached02a.jpg" style="width:296px;height:248px;"></div></div>
<div class="my"><div><pre><code>L2 4x4 Detached04
Residential ResidentialLow
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/L2%204x4%20Detached04.jpg" style="width:384px;height:280px;"></div></div>
<div class="my"><div><pre><code>L3 1x1 Detached
Residential ResidentialLow
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/L3%201x1%20Detached.jpg" style="width:256px;height:184px;"></div></div>
<div class="my"><div><pre><code>L3 2x2 Detached04
Residential ResidentialLow
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/L3%202x2%20Detached04.jpg" style="width:456px;height:328px;"></div></div>
<div class="my"><div><pre><code>L3 2x2 Detached05
Residential ResidentialLow
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/L3%202x2%20Detached05.jpg" style="width:352px;height:368px;"></div></div>
<div class="my"><div><pre><code>L3 2x3 Detached02
Residential ResidentialLow
L3 2x3 Straight</code></pre></div><div><img data-s="jpg/L3%202x3%20Detached02.jpg" style="width:360px;height:288px;"></div></div>
<div class="my"><div><pre><code>L3 2x3 Semi-detachedhouse02
Residential ResidentialLow
L3 2x3 Straight</code></pre></div><div><img data-s="jpg/L3%202x3%20Semi-detachedhouse02.jpg" style="width:328px;height:320px;"></div></div>
<div class="my"><div><pre><code>L3 3x2 Detached03
Residential ResidentialLow
L3 3x2 Straight</code></pre></div><div><img data-s="jpg/L3%203x2%20Detached03.jpg" style="width:360px;height:240px;"></div></div>
<div class="my"><div><pre><code>L3 3x2 Detached06
Residential ResidentialLow
L3 3x2 Straight</code></pre></div><div><img data-s="jpg/L3%203x2%20Detached06.jpg" style="width:456px;height:280px;"></div></div>
<div class="my"><div><pre><code>L3 3x3 Semi-detachedhouse02
Residential ResidentialLow
L3 3x3 Straight</code></pre></div><div><img data-s="jpg/L3%203x3%20Semi-detachedhouse02.jpg" style="width:448px;height:320px;"></div></div>
<div class="my"><div><pre><code>L3 3x4 detached01
Residential ResidentialLow
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/L3%203x4%20detached01.jpg" style="width:392px;height:256px;"></div></div>
<div class="my"><div><pre><code>L3 3x4 Detached03
Residential ResidentialLow
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/L3%203x4%20Detached03.jpg" style="width:344px;height:264px;"></div></div>
<div class="my"><div><pre><code>L3 3x4 Semi-detachedhouse03a
Residential ResidentialLow
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/L3%203x4%20Semi-detachedhouse03a.jpg" style="width:320px;height:328px;"></div></div>
<div class="my"><div><pre><code>L3 4x3 Detached01
Residential ResidentialLow
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/L3%204x3%20Detached01.jpg" style="width:440px;height:256px;"></div></div>
<div class="my"><div><pre><code>L3 4x3 Detached04a
Residential ResidentialLow
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/L3%204x3%20Detached04a.jpg" style="width:368px;height:224px;"></div></div>
<div class="my"><div><pre><code>L3 4x4 Detached07
Residential ResidentialLow
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/L3%204x4%20Detached07.jpg" style="width:360px;height:216px;"></div></div>
<div class="my"><div><pre><code>L3 4x4 Semi-detachedhouse03a
Residential ResidentialLow
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/L3%204x4%20Semi-detachedhouse03a.jpg" style="width:456px;height:288px;"></div></div>
<div class="my"><div><pre><code>L4 1x1 Villa04
Residential ResidentialLow
L4 1x1 Straight</code></pre></div><div><img data-s="jpg/L4%201x1%20Villa04.jpg" style="width:264px;height:288px;"></div></div>
<div class="my"><div><pre><code>L4 2x2 Villa02
Residential ResidentialLow
L4 2x2 Straight</code></pre></div><div><img data-s="jpg/L4%202x2%20Villa02.jpg" style="width:352px;height:272px;"></div></div>
<div class="my"><div><pre><code>L4 2x2 Villa07
Residential ResidentialLow
L4 2x2 Straight</code></pre></div><div><img data-s="jpg/L4%202x2%20Villa07.jpg" style="width:352px;height:296px;"></div></div>
<div class="my"><div><pre><code>L4 2x3 Villa04
Residential ResidentialLow
L4 2x3 Straight</code></pre></div><div><img data-s="jpg/L4%202x3%20Villa04.jpg" style="width:368px;height:360px;"></div></div>
<div class="my"><div><pre><code>L4 3x2 Villa02
Residential ResidentialLow
L4 3x2 Straight</code></pre></div><div><img data-s="jpg/L4%203x2%20Villa02.jpg" style="width:416px;height:264px;"></div></div>
<div class="my"><div><pre><code>L4 3x2 Villa02b
Residential ResidentialLow
L4 3x3 Straight</code></pre></div><div><img data-s="jpg/L4%203x2%20Villa02b.jpg" style="width:456px;height:296px;"></div></div>
<div class="my"><div><pre><code>L4 3x2 Villa04
Residential ResidentialLow
L4 2x3 Straight</code></pre></div><div><img data-s="jpg/L4%203x2%20Villa04.jpg" style="width:384px;height:312px;"></div></div>
<div class="my"><div><pre><code>L4 3x3 Villa05
Residential ResidentialLow
L4 3x3 Straight</code></pre></div><div><img data-s="jpg/L4%203x3%20Villa05.jpg" style="width:504px;height:304px;"></div></div>
<div class="my"><div><pre><code>L4 3x4 Villa01
Residential ResidentialLow
L4 3x4 Straight</code></pre></div><div><img data-s="jpg/L4%203x4%20Villa01.jpg" style="width:416px;height:248px;"></div></div>
<div class="my"><div><pre><code>L4 4x3 Villa01
Residential ResidentialLow
L4 4x3 Straight</code></pre></div><div><img data-s="jpg/L4%204x3%20Villa01.jpg" style="width:432px;height:272px;"></div></div>
<div class="my"><div><pre><code>L4 4x4 Villa06a
Residential ResidentialLow
L4 4x4 Straight</code></pre></div><div><img data-s="jpg/L4%204x4%20Villa06a.jpg" style="width:424px;height:280px;"></div></div>
<div class="my"><div><pre><code>L4 4x4 Villa08a
Residential ResidentialLow
L4 4x4 Straight</code></pre></div><div><img data-s="jpg/L4%204x4%20Villa08a.jpg" style="width:376px;height:280px;"></div></div>
<div class="my"><div><pre><code>L5 1x1 Detached
Residential ResidentialLow
L5 1x1 Straight</code></pre></div><div><img data-s="jpg/L5%201x1%20Detached.jpg" style="width:360px;height:288px;"></div></div>
<div class="my"><div><pre><code>L5 1x1 DetachedEF
Residential ResidentialLow
L5 1x1 Straight</code></pre></div><div><img data-s="jpg/L5%201x1%20DetachedEF.jpg" style="width:280px;height:256px;"></div></div>
<div class="my"><div><pre><code>L5 2x2 Villa07
Residential ResidentialLow
L5 2x3 Straight</code></pre></div><div><img data-s="jpg/L5%202x2%20Villa07.jpg" style="width:304px;height:280px;"></div></div>
<div class="my"><div><pre><code>L5 2x2 Villa09
Residential ResidentialLow
L5 2x2 Straight</code></pre></div><div><img data-s="jpg/L5%202x2%20Villa09.jpg" style="width:416px;height:264px;"></div></div>
<div class="my"><div><pre><code>L5 2x3 Villa07
Residential ResidentialLow
L5 2x3 Straight</code></pre></div><div><img data-s="jpg/L5%202x3%20Villa07.jpg" style="width:336px;height:288px;"></div></div>
<div class="my"><div><pre><code>L5 3x2 Villa06
Residential ResidentialLow
L5 3x2 Straight</code></pre></div><div><img data-s="jpg/L5%203x2%20Villa06.jpg" style="width:504px;height:200px;"></div></div>
<div class="my"><div><pre><code>L5 3x3 Villa01
Residential ResidentialLow
L5 3x3 Straight</code></pre></div><div><img data-s="jpg/L5%203x3%20Villa01.jpg" style="width:400px;height:256px;"></div></div>
<div class="my"><div><pre><code>L5 3x3 Villa02
Residential ResidentialLow
L5 3x3 Straight</code></pre></div><div><img data-s="jpg/L5%203x3%20Villa02.jpg" style="width:384px;height:288px;"></div></div>
<div class="my"><div><pre><code>L5 3x3 Villa08
Residential ResidentialLow
L5 3x3 Straight</code></pre></div><div><img data-s="jpg/L5%203x3%20Villa08.jpg" style="width:416px;height:224px;"></div></div>
<div class="my"><div><pre><code>L5 3x4 Villa05
Residential ResidentialLow
L5 3x4 Straight</code></pre></div><div><img data-s="jpg/L5%203x4%20Villa05.jpg" style="width:376px;height:320px;"></div></div>
<div class="my"><div><pre><code>L5 4x2 Villa04
Residential ResidentialLow
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/L5%204x2%20Villa04.jpg" style="width:440px;height:232px;"></div></div>
<div class="my"><div><pre><code>L5 4x3 Villa05
Residential ResidentialLow
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/L5%204x3%20Villa05.jpg" style="width:456px;height:296px;"></div></div>
<div class="my"><div><pre><code>L5 4x3 Villa07
Residential ResidentialLow
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/L5%204x3%20Villa07.jpg" style="width:384px;height:192px;"></div></div>
<div class="my"><div><pre><code>L5 4x4 Villa03
Residential ResidentialLow
L5 4x4 Straight</code></pre></div><div><img data-s="jpg/L5%204x4%20Villa03.jpg" style="width:360px;height:288px;"></div></div>
<div class="my"><div><pre><code>L5 4x4 Villa08a
Residential ResidentialLow
L5 4x4 Straight</code></pre></div><div><img data-s="jpg/L5%204x4%20Villa08a.jpg" style="width:352px;height:280px;"></div></div>
<h2 id="Residential_High">Residential High</h2>
<div class="my"><div><pre><code>H1 1x1 Tenement
Residential ResidentialHigh
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/H1%201x1%20Tenement.jpg" style="width:496px;height:448px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Tenement05
Residential ResidentialHigh
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Tenement05.jpg" style="width:544px;height:384px;"></div></div>
<div class="my"><div><pre><code>H1 2x3 Tenement02
Residential ResidentialHigh
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/H1%202x3%20Tenement02.jpg" style="width:336px;height:456px;"></div></div>
<div class="my"><div><pre><code>H1 3x2 Tenement01
Residential ResidentialHigh
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/H1%203x2%20Tenement01.jpg" style="width:528px;height:440px;"></div></div>
<div class="my"><div><pre><code>H1 3x2 Tenement04
Residential ResidentialHigh
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/H1%203x2%20Tenement04.jpg" style="width:528px;height:376px;"></div></div>
<div class="my"><div><pre><code>H1 3x3 Tenement03
Residential ResidentialHigh
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/H1%203x3%20Tenement03.jpg" style="width:568px;height:448px;"></div></div>
<div class="my"><div><pre><code>H1 3x3 Tenement08
Residential ResidentialHigh
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/H1%203x3%20Tenement08.jpg" style="width:568px;height:368px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Tenement03a
Residential ResidentialHigh
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Tenement03a.jpg" style="width:432px;height:480px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Tenement07
Residential ResidentialHigh
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Tenement07.jpg" style="width:496px;height:472px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Tenement02
Residential ResidentialHigh
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Tenement02.jpg" style="width:560px;height:384px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Tenement05
Residential ResidentialHigh
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Tenement05.jpg" style="width:560px;height:344px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Tenement07
Residential ResidentialHigh
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Tenement07.jpg" style="width:560px;height:440px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Tenement03
Residential ResidentialHigh
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Tenement03.jpg" style="width:560px;height:400px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Tenement04a
Residential ResidentialHigh
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Tenement04a.jpg" style="width:592px;height:384px;"></div></div>
<div class="my"><div><pre><code>H2 1x1 Tenement01
Residential ResidentialHigh
L2 1x1 Straight</code></pre></div><div><img data-s="jpg/H2%201x1%20Tenement01.jpg" style="width:280px;height:416px;"></div></div>
<div class="my"><div><pre><code>H2 2x2 tenement06
Residential ResidentialHigh
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/H2%202x2%20tenement06.jpg" style="width:352px;height:416px;"></div></div>
<div class="my"><div><pre><code>H2 2x3 Tenement01
Residential ResidentialHigh
L2 2x3 Straight</code></pre></div><div><img data-s="jpg/H2%202x3%20Tenement01.jpg" style="width:296px;height:440px;"></div></div>
<div class="my"><div><pre><code>H2 3x2 Tenement05
Residential ResidentialHigh
L2 3x2 Straight</code></pre></div><div><img data-s="jpg/H2%203x2%20Tenement05.jpg" style="width:448px;height:456px;"></div></div>
<div class="my"><div><pre><code>H2 3x3 Tenement01
Residential ResidentialHigh
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/H2%203x3%20Tenement01.jpg" style="width:360px;height:440px;"></div></div>
<div class="my"><div><pre><code>H2 3x3 Tenement06
Residential ResidentialHigh
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/H2%203x3%20Tenement06.jpg" style="width:568px;height:456px;"></div></div>
<div class="my"><div><pre><code>H2 3x4 Tenement01 1a
Residential ResidentialHigh
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/H2%203x4%20Tenement01%201a.jpg" style="width:384px;height:456px;"></div></div>
<div class="my"><div><pre><code>H2 3x4 Tenement06
Residential ResidentialHigh
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/H2%203x4%20Tenement06.jpg" style="width:408px;height:408px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Tenement06
Residential ResidentialHigh
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Tenement06.jpg" style="width:560px;height:488px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Tenement06a
Residential ResidentialHigh
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Tenement06a.jpg" style="width:560px;height:488px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Tenement02a
Residential ResidentialHigh
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Tenement02a.jpg" style="width:456px;height:464px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Tenement05b
Residential ResidentialHigh
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Tenement05b.jpg" style="width:512px;height:456px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Tenement07a
Residential ResidentialHigh
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Tenement07a.jpg" style="width:592px;height:408px;"></div></div>
<div class="my"><div><pre><code>H3 1x1 Tenement05
Residential ResidentialHigh
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/H3%201x1%20Tenement05.jpg" style="width:280px;height:352px;"></div></div>
<div class="my"><div><pre><code>H3 2x2 Tenement04
Residential ResidentialHigh
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/H3%202x2%20Tenement04.jpg" style="width:280px;height:416px;"></div></div>
<div class="my"><div><pre><code>H3 2x3 tenement02
Residential ResidentialHigh
L3 2x3 Straight</code></pre></div><div><img data-s="jpg/H3%202x3%20tenement02.jpg" style="width:272px;height:464px;"></div></div>
<div class="my"><div><pre><code>H3 3x2 Tenement04a
Residential ResidentialHigh
L3 3x2 Straight</code></pre></div><div><img data-s="jpg/H3%203x2%20Tenement04a.jpg" style="width:352px;height:448px;"></div></div>
<div class="my"><div><pre><code>H3 3x3 Tenement04
Residential ResidentialHigh
L3 3x3 Straight</code></pre></div><div><img data-s="jpg/H3%203x3%20Tenement04.jpg" style="width:320px;height:448px;"></div></div>
<div class="my"><div><pre><code>H3 3x4 tenement03a
Residential ResidentialHigh
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/H3%203x4%20tenement03a.jpg" style="width:296px;height:480px;"></div></div>
<div class="my"><div><pre><code>H3 3x4 Tenement08
Residential ResidentialHigh
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/H3%203x4%20Tenement08.jpg" style="width:384px;height:472px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Tenement04a
Residential ResidentialHigh
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Tenement04a.jpg" style="width:432px;height:464px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Tenement08
Residential ResidentialHigh
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Tenement08.jpg" style="width:432px;height:480px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Tenement05a
Residential ResidentialHigh
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Tenement05a.jpg" style="width:376px;height:464px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Tenement08b
Residential ResidentialHigh
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Tenement08b.jpg" style="width:456px;height:504px;"></div></div>
<div class="my"><div><pre><code>H4 1x1 Tenement06
Residential ResidentialHigh
L4 1x1 Straight</code></pre></div><div><img data-s="jpg/H4%201x1%20Tenement06.jpg" style="width:280px;height:392px;"></div></div>
<div class="my"><div><pre><code>H4 2x2 Tenement09
Residential ResidentialHigh
L4 2x2 Straight</code></pre></div><div><img data-s="jpg/H4%202x2%20Tenement09.jpg" style="width:280px;height:424px;"></div></div>
<div class="my"><div><pre><code>H4 2x3 tenement04
Residential ResidentialHigh
L4 2x3 Straight</code></pre></div><div><img data-s="jpg/H4%202x3%20tenement04.jpg" style="width:336px;height:456px;"></div></div>
<div class="my"><div><pre><code>H4 3x2 tenement07
Residential ResidentialHigh
L4 3x2 Straight</code></pre></div><div><img data-s="jpg/H4%203x2%20tenement07.jpg" style="width:448px;height:432px;"></div></div>
<div class="my"><div><pre><code>H4 3x3 Tenement08
Residential ResidentialHigh
L4 3x3 Straight</code></pre></div><div><img data-s="jpg/H4%203x3%20Tenement08.jpg" style="width:288px;height:464px;"></div></div>
<div class="my"><div><pre><code>H4 3x4 tenement05a
Residential ResidentialHigh
L4 3x4 Straight</code></pre></div><div><img data-s="jpg/H4%203x4%20tenement05a.jpg" style="width:432px;height:480px;"></div></div>
<div class="my"><div><pre><code>H4 3x4 Tenement07b
Residential ResidentialHigh
L4 3x4 Straight</code></pre></div><div><img data-s="jpg/H4%203x4%20Tenement07b.jpg" style="width:496px;height:480px;"></div></div>
<div class="my"><div><pre><code>H4 4x3 Tenement07
Residential ResidentialHigh
L4 4x3 Straight</code></pre></div><div><img data-s="jpg/H4%204x3%20Tenement07.jpg" style="width:560px;height:472px;"></div></div>
<div class="my"><div><pre><code>H4 4x3 tenement08a
Residential ResidentialHigh
L4 4x3 Straight</code></pre></div><div><img data-s="jpg/H4%204x3%20tenement08a.jpg" style="width:560px;height:464px;"></div></div>
<div class="my"><div><pre><code>H4 4x4 Tenement07b
Residential ResidentialHigh
L4 4x4 Straight</code></pre></div><div><img data-s="jpg/H4%204x4%20Tenement07b.jpg" style="width:592px;height:488px;"></div></div>
<div class="my"><div><pre><code>H4 4x4 Tenement09a
Residential ResidentialHigh
L4 4x4 Straight</code></pre></div><div><img data-s="jpg/H4%204x4%20Tenement09a.jpg" style="width:352px;height:480px;"></div></div>
<div class="my"><div><pre><code>H5 1x1 highrise_hiden_hightech01
Residential ResidentialHigh
L5 1x1 Straight</code></pre></div><div><img data-s="jpg/H5%201x1%20highrise_hiden_hightech01.jpg" style="width:256px;height:368px;"></div></div>
<div class="my"><div><pre><code>H5 2x2 tenement03
Residential ResidentialHigh
L5 2x2 Straight</code></pre></div><div><img data-s="jpg/H5%202x2%20tenement03.jpg" style="width:280px;height:440px;"></div></div>
<div class="my"><div><pre><code>H5 2x3 Tenement06
Residential ResidentialHigh
L5 2x3 Straight</code></pre></div><div><img data-s="jpg/H5%202x3%20Tenement06.jpg" style="width:464px;height:464px;"></div></div>
<div class="my"><div><pre><code>H5 3x2 Highrise06
Residential ResidentialHigh
L5 3x2 Straight</code></pre></div><div><img data-s="jpg/H5%203x2%20Highrise06.jpg" style="width:272px;height:504px;"></div></div>
<div class="my"><div><pre><code>H5 3x2 Tenement02
Residential ResidentialHigh
L5 3x2 Straight</code></pre></div><div><img data-s="jpg/H5%203x2%20Tenement02.jpg" style="width:296px;height:496px;"></div></div>
<div class="my"><div><pre><code>H5 3x2 Tenement06
Residential ResidentialHigh
L5 2x3 Straight</code></pre></div><div><img data-s="jpg/H5%203x2%20Tenement06.jpg" style="width:464px;height:448px;"></div></div>
<div class="my"><div><pre><code>H5 3x3 Tenement03
Residential ResidentialHigh
L5 3x3 Straight</code></pre></div><div><img data-s="jpg/H5%203x3%20Tenement03.jpg" style="width:328px;height:464px;"></div></div>
<div class="my"><div><pre><code>H5 3x3 Tenement05
Residential ResidentialHigh
L5 3x3 Straight</code></pre></div><div><img data-s="jpg/H5%203x3%20Tenement05.jpg" style="width:472px;height:432px;"></div></div>
<div class="my"><div><pre><code>H5 3x4 Highrise05
Residential ResidentialHigh
L5 3x4 Straight</code></pre></div><div><img data-s="jpg/H5%203x4%20Highrise05.jpg" style="width:288px;height:536px;"></div></div>
<div class="my"><div><pre><code>H5 3x4 Tenement09
Residential ResidentialHigh
L5 3x4 Straight</code></pre></div><div><img data-s="jpg/H5%203x4%20Tenement09.jpg" style="width:384px;height:448px;"></div></div>
<div class="my"><div><pre><code>H5 4x3 Highrise01
Residential ResidentialHigh
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/H5%204x3%20Highrise01.jpg" style="width:312px;height:528px;"></div></div>
<div class="my"><div><pre><code>H5 4x3 Highrise03
Residential ResidentialHigh
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/H5%204x3%20Highrise03.jpg" style="width:304px;height:496px;"></div></div>
<div class="my"><div><pre><code>H5 4x3 Highrise04
Residential ResidentialHigh
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/H5%204x3%20Highrise04.jpg" style="width:304px;height:536px;"></div></div>
<div class="my"><div><pre><code>H5 4x3 Highrise07a
Residential ResidentialHigh
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/H5%204x3%20Highrise07a.jpg" style="width:272px;height:512px;"></div></div>
<div class="my"><div><pre><code>H5 4x3 Tenement04
Residential ResidentialHigh
L5 4x3 Straight</code></pre></div><div><img data-s="jpg/H5%204x3%20Tenement04.jpg" style="width:432px;height:440px;"></div></div>
<div class="my"><div><pre><code>H5 4x4 Highrise02
Residential ResidentialHigh
L5 4x4 Straight</code></pre></div><div><img data-s="jpg/H5%204x4%20Highrise02.jpg" style="width:312px;height:512px;"></div></div>
<div class="my"><div><pre><code>H5 4x4 Highrise07
Residential ResidentialHigh
L5 4x4 Straight</code></pre></div><div><img data-s="jpg/H5%204x4%20Highrise07.jpg" style="width:328px;height:528px;"></div></div>
<div class="my"><div><pre><code>H5 4x4 Highrise08
Residential ResidentialHigh
L5 4x4 Straight</code></pre></div><div><img data-s="jpg/H5%204x4%20Highrise08.jpg" style="width:320px;height:520px;"></div></div>
<div class="my"><div><pre><code>H5 4x4 Tenement01
Residential ResidentialHigh
L5 4x4 Straight</code></pre></div><div><img data-s="jpg/H5%204x4%20Tenement01.jpg" style="width:376px;height:496px;"></div></div>
<h2 id="Commercial_Low">Commercial Low</h2>
<div class="my"><div><pre><code>L1 1x1 Shop
Commercial CommercialLow
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/L1%201x1%20Shop.jpg" style="width:280px;height:152px;"></div></div>
<div class="my"><div><pre><code>L1 1x2 Shop04
Commercial CommercialLow
L1 1x2 Straight</code></pre></div><div><img data-s="jpg/L1%201x2%20Shop04.jpg" style="width:400px;height:352px;"></div></div>
<div class="my"><div><pre><code>L1 2x2 Shop02
Commercial CommercialLow
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/L1%202x2%20Shop02.jpg" style="width:464px;height:280px;"></div></div>
<div class="my"><div><pre><code>L1 2x2 Shop03
Commercial CommercialLow
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/L1%202x2%20Shop03.jpg" style="width:544px;height:360px;"></div></div>
<div class="my"><div><pre><code>L1 2x2 Shop04
Commercial CommercialLow
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/L1%202x2%20Shop04.jpg" style="width:496px;height:256px;"></div></div>
<div class="my"><div><pre><code>L1 3x2 Shop01
Commercial CommercialLow
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/L1%203x2%20Shop01.jpg" style="width:528px;height:232px;"></div></div>
<div class="my"><div><pre><code>L1 3x2 Shop03b
Commercial CommercialLow
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/L1%203x2%20Shop03b.jpg" style="width:528px;height:288px;"></div></div>
<div class="my"><div><pre><code>L1 3x2 Shop05
Commercial CommercialLow
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/L1%203x2%20Shop05.jpg" style="width:528px;height:224px;"></div></div>
<div class="my"><div><pre><code>L1 3x3 Shop07
Commercial CommercialLow
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/L1%203x3%20Shop07.jpg" style="width:568px;height:304px;"></div></div>
<div class="my"><div><pre><code>L1 3x4 Shop05
Commercial CommercialLow
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/L1%203x4%20Shop05.jpg" style="width:496px;height:264px;"></div></div>
<div class="my"><div><pre><code>L1 4x3 Shop02a
Commercial CommercialLow
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/L1%204x3%20Shop02a.jpg" style="width:560px;height:232px;"></div></div>
<div class="my"><div><pre><code>L1 4x3 Shop03b 1a
Commercial CommercialLow
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/L1%204x3%20Shop03b%201a.jpg" style="width:560px;height:272px;"></div></div>
<div class="my"><div><pre><code>L1 4x3 Shop06
Commercial CommercialLow
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/L1%204x3%20Shop06.jpg" style="width:560px;height:256px;"></div></div>
<div class="my"><div><pre><code>L1 4x3 Shop06a
Commercial CommercialLow
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/L1%204x3%20Shop06a.jpg" style="width:560px;height:248px;"></div></div>
<div class="my"><div><pre><code>L1 4x4 Shop08a
Commercial CommercialLow
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/L1%204x4%20Shop08a.jpg" style="width:592px;height:272px;"></div></div>
<div class="my"><div><pre><code>L2 1x1 Shop08
Commercial CommercialLow
L2 1x1 Straight</code></pre></div><div><img data-s="jpg/L2%201x1%20Shop08.jpg" style="width:344px;height:392px;"></div></div>
<div class="my"><div><pre><code>L2 1x2 Shop07
Commercial CommercialLow
L2 1x2 Straight</code></pre></div><div><img data-s="jpg/L2%201x2%20Shop07.jpg" style="width:400px;height:384px;"></div></div>
<div class="my"><div><pre><code>L2 2x2 Shop2
Commercial CommercialLow
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/L2%202x2%20Shop2.jpg" style="width:544px;height:360px;"></div></div>
<div class="my"><div><pre><code>L2 3x2 Shop09
Commercial CommercialLow
L2 3x2 Straight</code></pre></div><div><img data-s="jpg/L2%203x2%20Shop09.jpg" style="width:448px;height:400px;"></div></div>
<div class="my"><div><pre><code>L2 3x3 Shop03
Commercial CommercialLow
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/L2%203x3%20Shop03.jpg" style="width:568px;height:392px;"></div></div>
<div class="my"><div><pre><code>L2 3x4 Shop04
Commercial CommercialLow
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/L2%203x4%20Shop04.jpg" style="width:496px;height:320px;"></div></div>
<div class="my"><div><pre><code>L2 4x3 Shop05
Commercial CommercialLow
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/L2%204x3%20Shop05.jpg" style="width:560px;height:272px;"></div></div>
<div class="my"><div><pre><code>L2 4x3 Shop06
Commercial CommercialLow
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/L2%204x3%20Shop06.jpg" style="width:560px;height:304px;"></div></div>
<div class="my"><div><pre><code>L2 4x3 Shop10a
Commercial CommercialLow
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/L2%204x3%20Shop10a.jpg" style="width:560px;height:432px;"></div></div>
<div class="my"><div><pre><code>L2 4x4 Shop04
Commercial CommercialLow
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/L2%204x4%20Shop04.jpg" style="width:592px;height:352px;"></div></div>
<div class="my"><div><pre><code>L3 1x1 Shop
Commercial CommercialLow
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/L3%201x1%20Shop.jpg" style="width:504px;height:328px;"></div></div>
<div class="my"><div><pre><code>L3 1x1 Shop07
Commercial CommercialLow
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/L3%201x1%20Shop07.jpg" style="width:280px;height:400px;"></div></div>
<div class="my"><div><pre><code>L3 1x2 Shop07
Commercial CommercialLow
L3 1x2 Straight</code></pre></div><div><img data-s="jpg/L3%201x2%20Shop07.jpg" style="width:312px;height:432px;"></div></div>
<div class="my"><div><pre><code>L3 2x2 Shop03
Commercial CommercialLow
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/L3%202x2%20Shop03.jpg" style="width:416px;height:424px;"></div></div>
<div class="my"><div><pre><code>L3 2x2 Shop11
Commercial CommercialLow
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/L3%202x2%20Shop11.jpg" style="width:416px;height:376px;"></div></div>
<div class="my"><div><pre><code>L3 3x2 Shop11
Commercial CommercialLow
L3 3x2 Straight</code></pre></div><div><img data-s="jpg/L3%203x2%20Shop11.jpg" style="width:528px;height:400px;"></div></div>
<div class="my"><div><pre><code>L3 3x2 Shop12
Commercial CommercialLow
L3 3x2 Straight</code></pre></div><div><img data-s="jpg/L3%203x2%20Shop12.jpg" style="width:528px;height:272px;"></div></div>
<div class="my"><div><pre><code>L3 3x3 Shop05
Commercial CommercialLow
L3 3x3 Straight</code></pre></div><div><img data-s="jpg/L3%203x3%20Shop05.jpg" style="width:472px;height:472px;"></div></div>
<div class="my"><div><pre><code>L3 3x3 Shop06
Commercial CommercialLow
L3 3x3 Straight</code></pre></div><div><img data-s="jpg/L3%203x3%20Shop06.jpg" style="width:568px;height:344px;"></div></div>
<div class="my"><div><pre><code>L3 3x4 Shop03
Commercial CommercialLow
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/L3%203x4%20Shop03.jpg" style="width:496px;height:392px;"></div></div>
<div class="my"><div><pre><code>L3 4x3 Shop10
Commercial CommercialLow
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/L3%204x3%20Shop10.jpg" style="width:560px;height:264px;"></div></div>
<div class="my"><div><pre><code>L3 4x3 Shop13a
Commercial CommercialLow
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/L3%204x3%20Shop13a.jpg" style="width:584px;height:320px;"></div></div>
<div class="my"><div><pre><code>L3 4x4 Shop07a
Commercial CommercialLow
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/L3%204x4%20Shop07a.jpg" style="width:592px;height:504px;"></div></div>
<h2 id="Commercial_High">Commercial High</h2>
<div class="my"><div><pre><code>H1 1x1 Shop01
Commercial CommercialHigh
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/H1%20%201x1%20Shop01.jpg" style="width:344px;height:368px;"></div></div>
<div class="my"><div><pre><code>H1 1x1 Shop07
Commercial CommercialHigh
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/H1%201x1%20Shop07.jpg" style="width:256px;height:376px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Shop01
Commercial CommercialHigh
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Shop01.jpg" style="width:416px;height:368px;"></div></div>
<div class="my"><div><pre><code>H1 2x3 Shop01
Commercial CommercialHigh
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/H1%202x3%20Shop01.jpg" style="width:464px;height:360px;"></div></div>
<div class="my"><div><pre><code>H1 3x2 Shop03
Commercial CommercialHigh
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/H1%203x2%20Shop03.jpg" style="width:528px;height:432px;"></div></div>
<div class="my"><div><pre><code>H1 3x3 Shop01
Commercial CommercialHigh
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/H1%203x3%20Shop01.jpg" style="width:472px;height:440px;"></div></div>
<div class="my"><div><pre><code>H1 3x3 Shop04
Commercial CommercialHigh
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/H1%203x3%20Shop04.jpg" style="width:568px;height:456px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Shop02a
Commercial CommercialHigh
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Shop02a.jpg" style="width:496px;height:328px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Shop04
Commercial CommercialHigh
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Shop04.jpg" style="width:496px;height:408px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Shop01
Commercial CommercialHigh
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Shop01.jpg" style="width:560px;height:448px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Shop02
Commercial CommercialHigh
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Shop02.jpg" style="width:488px;height:416px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Shop04a
Commercial CommercialHigh
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Shop04a.jpg" style="width:560px;height:392px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Shop03
Commercial CommercialHigh
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Shop03.jpg" style="width:592px;height:416px;"></div></div>
<div class="my"><div><pre><code>H2 1x1 Shop
Commercial CommercialHigh
L2 1x1 Straight</code></pre></div><div><img data-s="jpg/H2%201x1%20Shop.jpg" style="width:352px;height:320px;"></div></div>
<div class="my"><div><pre><code>H2 2x2 Shop01
Commercial CommercialHigh
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/H2%202x2%20Shop01.jpg" style="width:416px;height:368px;"></div></div>
<div class="my"><div><pre><code>H2 2x3 Shop03
Commercial CommercialHigh
L2 2x3 Straight</code></pre></div><div><img data-s="jpg/H2%202x3%20Shop03.jpg" style="width:384px;height:424px;"></div></div>
<div class="my"><div><pre><code>H2 3x2 Shop01
Commercial CommercialHigh
L2 3x2 Straight</code></pre></div><div><img data-s="jpg/H2%203x2%20Shop01.jpg" style="width:528px;height:440px;"></div></div>
<div class="my"><div><pre><code>H2 3x3 Shop02
Commercial CommercialHigh
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/H2%203x3%20Shop02.jpg" style="width:568px;height:480px;"></div></div>
<div class="my"><div><pre><code>H2 3x3 Shop05
Commercial CommercialHigh
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/H2%203x3%20Shop05.jpg" style="width:408px;height:440px;"></div></div>
<div class="my"><div><pre><code>H2 3x4 Shop04a
Commercial CommercialHigh
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/H2%203x4%20Shop04a.jpg" style="width:496px;height:448px;"></div></div>
<div class="my"><div><pre><code>H2 3x4 Shop05
Commercial CommercialHigh
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/H2%203x4%20Shop05.jpg" style="width:496px;height:488px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Shop02a
Commercial CommercialHigh
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Shop02a.jpg" style="width:560px;height:400px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Shop06
Commercial CommercialHigh
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Shop06.jpg" style="width:432px;height:408px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Shop06
Commercial CommercialHigh
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Shop06.jpg" style="width:456px;height:440px;"></div></div>
<div class="my"><div><pre><code>H3 1x1 Shop10
Commercial CommercialHigh
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/H3%201x1%20Shop10.jpg" style="width:256px;height:368px;"></div></div>
<div class="my"><div><pre><code>H3 1x1 Shop13
Commercial CommercialHigh
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/H3%201x1%20Shop13.jpg" style="width:344px;height:336px;"></div></div>
<div class="my"><div><pre><code>H3 2x2 Shop01
Commercial CommercialHigh
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/H3%202x2%20Shop01.jpg" style="width:416px;height:376px;"></div></div>
<div class="my"><div><pre><code>H3 2x3 Shop04
Commercial CommercialHigh
L3 2x3 Straight</code></pre></div><div><img data-s="jpg/H3%202x3%20Shop04.jpg" style="width:336px;height:424px;"></div></div>
<div class="my"><div><pre><code>H3 3x2 Shop04
Commercial CommercialHigh
L3 3x2 Straight</code></pre></div><div><img data-s="jpg/H3%203x2%20Shop04.jpg" style="width:384px;height:408px;"></div></div>
<div class="my"><div><pre><code>H3 3x3 Shop06
Commercial CommercialHigh
L3 3x3 Straight</code></pre></div><div><img data-s="jpg/H3%203x3%20Shop06.jpg" style="width:568px;height:448px;"></div></div>
<div class="my"><div><pre><code>H3 3x4 Hotel
Commercial CommercialHigh
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/H3%203x4%20Hotel.jpg" style="width:304px;height:528px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Shop03
Commercial CommercialHigh
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Shop03.jpg" style="width:344px;height:464px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Shop05a
Commercial CommercialHigh
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Shop05a.jpg" style="width:488px;height:432px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Shop04
Commercial CommercialHigh
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Shop04.jpg" style="width:416px;height:464px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Shop07a
Commercial CommercialHigh
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Shop07a.jpg" style="width:592px;height:400px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Shop11
Commercial CommercialHigh
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Shop11.jpg" style="width:424px;height:456px;"></div></div>
<h2 id="Office">Office</h2>
<div class="my"><div><pre><code>H1 1x1 Office
Office OfficeGeneric
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/H1%201x1%20Office.jpg" style="width:352px;height:376px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Office02
Office OfficeGeneric
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Office02.jpg" style="width:464px;height:272px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Office03
Office OfficeGeneric
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Office03.jpg" style="width:544px;height:392px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Office05
Office OfficeGeneric
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Office05.jpg" style="width:544px;height:376px;"></div></div>
<div class="my"><div><pre><code>H1 2x3 Office01
Office OfficeGeneric
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/H1%202x3%20Office01.jpg" style="width:464px;height:416px;"></div></div>
<div class="my"><div><pre><code>H1 2x3 Office07
Office OfficeGeneric
L1 2x3 Straight</code></pre></div><div><img data-s="jpg/H1%202x3%20Office07.jpg" style="width:376px;height:416px;"></div></div>
<div class="my"><div><pre><code>H1 3x2 Office06
Office OfficeGeneric
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/H1%203x2%20Office06.jpg" style="width:528px;height:304px;"></div></div>
<div class="my"><div><pre><code>H1 3x3 Office04
Office OfficeGeneric
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/H1%203x3%20Office04.jpg" style="width:568px;height:424px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Office01
Office OfficeGeneric
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Office01.jpg" style="width:496px;height:352px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Office02a
Office OfficeGeneric
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Office02a.jpg" style="width:496px;height:376px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Office06
Office OfficeGeneric
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Office06.jpg" style="width:496px;height:288px;"></div></div>
<div class="my"><div><pre><code>H1 3x4 Office08a
Office OfficeGeneric
L1 3x4 Straight</code></pre></div><div><img data-s="jpg/H1%203x4%20Office08a.jpg" style="width:496px;height:440px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Office06
Office OfficeGeneric
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Office06.jpg" style="width:560px;height:328px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Office05a
Office OfficeGeneric
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Office05a.jpg" style="width:576px;height:352px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Office06
Office OfficeGeneric
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Office06.jpg" style="width:592px;height:368px;"></div></div>
<div class="my"><div><pre><code>H2 1x1 Office01
Office OfficeGeneric
L2 1x1 Straight</code></pre></div><div><img data-s="jpg/H2%201x1%20Office01.jpg" style="width:280px;height:288px;"></div></div>
<div class="my"><div><pre><code>H2 2x2 Office04
Office OfficeGeneric
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/H2%202x2%20Office04.jpg" style="width:280px;height:416px;"></div></div>
<div class="my"><div><pre><code>H2 2x2 Office07
Office OfficeGeneric
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/H2%202x2%20Office07.jpg" style="width:416px;height:384px;"></div></div>
<div class="my"><div><pre><code>H2 2x2 Office08
Office OfficeGeneric
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/H2%202x2%20Office08.jpg" style="width:416px;height:440px;"></div></div>
<div class="my"><div><pre><code>H2 2x3 Office04
Office OfficeGeneric
L2 2x3 Straight</code></pre></div><div><img data-s="jpg/H2%202x3%20Office04.jpg" style="width:296px;height:432px;"></div></div>
<div class="my"><div><pre><code>H2 2x3 Office07
Office OfficeGeneric
L2 2x3 Straight</code></pre></div><div><img data-s="jpg/H2%202x3%20Office07.jpg" style="width:464px;height:400px;"></div></div>
<div class="my"><div><pre><code>H2 3x2 Office08
Office OfficeGeneric
L2 3x2 Straight</code></pre></div><div><img data-s="jpg/H2%203x2%20Office08.jpg" style="width:528px;height:456px;"></div></div>
<div class="my"><div><pre><code>H2 3x3 Office06
Office OfficeGeneric
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/H2%203x3%20Office06.jpg" style="width:568px;height:352px;"></div></div>
<div class="my"><div><pre><code>H2 3x3 Office08
Office OfficeGeneric
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/H2%203x3%20Office08.jpg" style="width:568px;height:440px;"></div></div>
<div class="my"><div><pre><code>H2 3x4 Office05a
Office OfficeGeneric
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/H2%203x4%20Office05a.jpg" style="width:352px;height:448px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Office06
Office OfficeGeneric
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Office06.jpg" style="width:560px;height:304px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Office09
Office OfficeGeneric
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Office09.jpg" style="width:560px;height:376px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Office09a
Office OfficeGeneric
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Office09a.jpg" style="width:560px;height:408px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Office06
Office OfficeGeneric
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Office06.jpg" style="width:592px;height:344px;"></div></div>
<div class="my"><div><pre><code>H3 1x1 Office01
Office OfficeGeneric
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/H3%201x1%20Office01.jpg" style="width:352px;height:376px;"></div></div>
<div class="my"><div><pre><code>H3 2x2 Office11
Office OfficeGeneric
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/H3%202x2%20Office11.jpg" style="width:288px;height:472px;"></div></div>
<div class="my"><div><pre><code>H3 2x3 Office10
Office OfficeGeneric
L3 2x3 Straight</code></pre></div><div><img data-s="jpg/H3%202x3%20Office10.jpg" style="width:336px;height:480px;"></div></div>
<div class="my"><div><pre><code>H3 3x2 Office01
Office OfficeGeneric
L3 3x2 Straight</code></pre></div><div><img data-s="jpg/H3%203x2%20Office01.jpg" style="width:384px;height:400px;"></div></div>
<div class="my"><div><pre><code>H3 3x3 Office10
Office OfficeGeneric
L3 3x3 Straight</code></pre></div><div><img data-s="jpg/H3%203x3%20Office10.jpg" style="width:568px;height:496px;"></div></div>
<div class="my"><div><pre><code>H3 3x4 Office08
Office OfficeGeneric
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/H3%203x4%20Office08.jpg" style="width:280px;height:520px;"></div></div>
<div class="my"><div><pre><code>H3 3x4 Office11a
Office OfficeGeneric
L3 3x4 Straight</code></pre></div><div><img data-s="jpg/H3%203x4%20Office11a.jpg" style="width:432px;height:504px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Office02a
Office OfficeGeneric
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Office02a.jpg" style="width:488px;height:424px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Office03
Office OfficeGeneric
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Office03.jpg" style="width:320px;height:480px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Office04
Office OfficeGeneric
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Office04.jpg" style="width:560px;height:464px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Office06
Office OfficeGeneric
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Office06.jpg" style="width:392px;height:472px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Office01
Office OfficeGeneric
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Office01.jpg" style="width:376px;height:496px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Office02
Office OfficeGeneric
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Office02.jpg" style="width:416px;height:456px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Office05
Office OfficeGeneric
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Office05.jpg" style="width:592px;height:352px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Office07
Office OfficeGeneric
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Office07.jpg" style="width:592px;height:384px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Office12
Office OfficeGeneric
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Office12.jpg" style="width:320px;height:504px;"></div></div>
<h2 id="Industrial">Industrial</h2>
<div class="my"><div><pre><code>cargoyard
Industrial IndustrialGeneric
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/cargoyard.jpg" style="width:592px;height:312px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Sweatshop03
Industrial IndustrialGeneric
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Sweatshop03.jpg" style="width:544px;height:312px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Sweatshop05
Industrial IndustrialGeneric
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Sweatshop05.jpg" style="width:544px;height:344px;"></div></div>
<div class="my"><div><pre><code>H1 2x2 Sweatshop06
Industrial IndustrialGeneric
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/H1%202x2%20Sweatshop06.jpg" style="width:544px;height:328px;"></div></div>
<div class="my"><div><pre><code>H1 3x3 Sweatshop04
Industrial IndustrialGeneric
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/H1%203x3%20Sweatshop04.jpg" style="width:568px;height:344px;"></div></div>
<div class="my"><div><pre><code>H1 3x3 Sweatshop07
Industrial IndustrialGeneric
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/H1%203x3%20Sweatshop07.jpg" style="width:568px;height:288px;"></div></div>
<div class="my"><div><pre><code>H1 4x3 Bigfactory05
Industrial IndustrialGeneric
L1 4x3 Straight</code></pre></div><div><img data-s="jpg/H1%204x3%20Bigfactory05.jpg" style="width:432px;height:448px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Bigfactory01
Industrial IndustrialGeneric
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Bigfactory01.jpg" style="width:592px;height:496px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Mediumfactory02
Industrial IndustrialGeneric
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Mediumfactory02.jpg" style="width:456px;height:472px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Mediumfactory03
Industrial IndustrialGeneric
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Mediumfactory03.jpg" style="width:456px;height:456px;"></div></div>
<div class="my"><div><pre><code>H1 4x4 Sweatshop02
Industrial IndustrialGeneric
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/H1%204x4%20Sweatshop02.jpg" style="width:592px;height:464px;"></div></div>
<div class="my"><div><pre><code>H2 1x1 Facility03
Industrial IndustrialGeneric
L2 1x1 Straight</code></pre></div><div><img data-s="jpg/H2%201x1%20Facility03.jpg" style="width:496px;height:336px;"></div></div>
<div class="my"><div><pre><code>H2 1x1 Facility04
Industrial IndustrialGeneric
L2 1x1 Straight</code></pre></div><div><img data-s="jpg/H2%201x1%20Facility04.jpg" style="width:344px;height:400px;"></div></div>
<div class="my"><div><pre><code>H2 2x2 sweatshop01
Industrial IndustrialGeneric
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/H2%202x2%20sweatshop01.jpg" style="width:544px;height:456px;"></div></div>
<div class="my"><div><pre><code>H2 3x3 Sweatshop04
Industrial IndustrialGeneric
L2 3x3 Straight</code></pre></div><div><img data-s="jpg/H2%203x3%20Sweatshop04.jpg" style="width:568px;height:344px;"></div></div>
<div class="my"><div><pre><code>H2 4x3 Sweatshop01
Industrial IndustrialGeneric
L2 4x3 Straight</code></pre></div><div><img data-s="jpg/H2%204x3%20Sweatshop01.jpg" style="width:432px;height:432px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Bigfactory02
Industrial IndustrialGeneric
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Bigfactory02.jpg" style="width:592px;height:368px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Bigfactory07
Industrial IndustrialGeneric
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Bigfactory07.jpg" style="width:592px;height:488px;"></div></div>
<div class="my"><div><pre><code>H2 4x4 Sweatshop04
Industrial IndustrialGeneric
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/H2%204x4%20Sweatshop04.jpg" style="width:592px;height:328px;"></div></div>
<div class="my"><div><pre><code>H3 1x1 Facility05
Industrial IndustrialGeneric
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/H3%201x1%20Facility05.jpg" style="width:496px;height:368px;"></div></div>
<div class="my"><div><pre><code>H3 1x1 Facility06
Industrial IndustrialGeneric
L3 1x1 Straight</code></pre></div><div><img data-s="jpg/H3%201x1%20Facility06.jpg" style="width:352px;height:360px;"></div></div>
<div class="my"><div><pre><code>H3 2x2 Bigfactory06
Industrial IndustrialGeneric
L3 2x2 Straight</code></pre></div><div><img data-s="jpg/H3%202x2%20Bigfactory06.jpg" style="width:352px;height:376px;"></div></div>
<div class="my"><div><pre><code>H3 3x3 Mediumfactory08
Industrial IndustrialGeneric
L3 3x3 Straight</code></pre></div><div><img data-s="jpg/H3%203x3%20Mediumfactory08.jpg" style="width:568px;height:416px;"></div></div>
<div class="my"><div><pre><code>H3 4x3 Bigfactory06
Industrial IndustrialGeneric
L3 4x3 Straight</code></pre></div><div><img data-s="jpg/H3%204x3%20Bigfactory06.jpg" style="width:560px;height:448px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Bigfactory 04
Industrial IndustrialGeneric
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Bigfactory%2004.jpg" style="width:592px;height:336px;"></div></div>
<div class="my"><div><pre><code>H3 4x4 Mediumfactory06
Industrial IndustrialGeneric
L3 4x4 Straight</code></pre></div><div><img data-s="jpg/H3%204x4%20Mediumfactory06.jpg" style="width:592px;height:416px;"></div></div>
<h2 id="Industrial_Farming">Industrial Farming</h2>
<div class="my"><div><pre><code>Agricultural 1x1 processing 1
Industrial IndustrialFarming
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/Agricultural%201x1%20processing%201.jpg" style="width:472px;height:312px;"></div></div>
<div class="my"><div><pre><code>Agricultural 2x2 processing 2
Industrial IndustrialFarming
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/Agricultural%202x2%20processing%202.jpg" style="width:368px;height:224px;"></div></div>
<div class="my"><div><pre><code>Agricultural 3x2 processing 2
Industrial IndustrialFarming
L1 3x2 Straight</code></pre></div><div><img data-s="jpg/Agricultural%203x2%20processing%202.jpg" style="width:400px;height:168px;"></div></div>
<div class="my"><div><pre><code>Agricultural 3x3 Processing 03
Industrial IndustrialFarming
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/Agricultural%203x3%20Processing%2003.jpg" style="width:520px;height:256px;"></div></div>
<div class="my"><div><pre><code>Agricultural 3x3 Processing 04
Industrial IndustrialFarming
L1 3x3 Straight</code></pre></div><div><img data-s="jpg/Agricultural%203x3%20Processing%2004.jpg" style="width:520px;height:272px;"></div></div>
<div class="my"><div><pre><code>Agricultural 4x4 Processing 01
Industrial IndustrialFarming
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/Agricultural%204x4%20Processing%2001.jpg" style="width:560px;height:408px;"></div></div>
<div class="my"><div><pre><code>Agricultural 4x4 Processing 02
Industrial IndustrialFarming
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/Agricultural%204x4%20Processing%2002.jpg" style="width:560px;height:424px;"></div></div>
<div class="my"><div><pre><code>agricultural_building_05
Industrial IndustrialFarming
L1 4x4 Straight</code></pre></div><div><img data-s="jpg/agricultural_building_05.jpg" style="width:568px;height:264px;"></div></div>
<div class="my"><div><pre><code>Farming 4x4 Farm
Industrial IndustrialFarming
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/Farming%204x4%20Farm.jpg" style="width:560px;height:232px;"></div></div>
<div class="my"><div><pre><code>Farming 4x4 Farm 2
Industrial IndustrialFarming
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/Farming%204x4%20Farm%202.jpg" style="width:560px;height:216px;"></div></div>
<div class="my"><div><pre><code>Farming 4x4 Farm 3
Industrial IndustrialFarming
L2 3x4 Straight</code></pre></div><div><img data-s="jpg/Farming%204x4%20Farm%203.jpg" style="width:472px;height:248px;"></div></div>
<div class="my"><div><pre><code>Farming2x2
Industrial IndustrialFarming
L2 2x2 Straight</code></pre></div><div><img data-s="jpg/Farming2x2.jpg" style="width:312px;height:136px;"></div></div>
<div class="my"><div><pre><code>Farming2x2cornerleft
Industrial IndustrialFarming
L2 2x2 CornerLeft</code></pre></div><div><img data-s="jpg/Farming2x2cornerleft.jpg" style="width:296px;height:144px;"></div></div>
<div class="my"><div><pre><code>Farming2x2cornerright
Industrial IndustrialFarming
L2 2x2 CornerRight</code></pre></div><div><img data-s="jpg/Farming2x2cornerright.jpg" style="width:304px;height:168px;"></div></div>
<div class="my"><div><pre><code>Farming3x2
Industrial IndustrialFarming
L2 3x2 Straight</code></pre></div><div><img data-s="jpg/Farming3x2.jpg" style="width:400px;height:136px;"></div></div>
<div class="my"><div><pre><code>Farming4x4
Industrial IndustrialFarming
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/Farming4x4.jpg" style="width:472px;height:192px;"></div></div>
<div class="my"><div><pre><code>Farming4x4_02
Industrial IndustrialFarming
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/Farming4x4_02.jpg" style="width:480px;height:280px;"></div></div>
<div class="my"><div><pre><code>Farming4x4_03
Industrial IndustrialFarming
L2 4x4 Straight</code></pre></div><div><img data-s="jpg/Farming4x4_03.jpg" style="width:472px;height:264px;"></div></div>
<div class="my"><div><pre><code>Farming4x4cornerleft
Industrial IndustrialFarming
L2 4x4 CornerLeft</code></pre></div><div><img data-s="jpg/Farming4x4cornerleft.jpg" style="width:488px;height:184px;"></div></div>
<div class="my"><div><pre><code>Farming4x4cornerright
Industrial IndustrialFarming
L2 4x4 CornerRight</code></pre></div><div><img data-s="jpg/Farming4x4cornerright.jpg" style="width:480px;height:216px;"></div></div>
<div class="my"><div><pre><code>H1 1x1 FarmingFacility03
Industrial IndustrialFarming
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/H1%201x1%20FarmingFacility03.jpg" style="width:304px;height:320px;"></div></div>
<h2 id="Industrial_Forestry">Industrial Forestry</h2>
<div class="my"><div><pre><code>Forestry 1x1
Industrial IndustrialForestry
L1 1x1 Straight</code></pre></div><div><img data-s="jpg/Forestry%201x1.jpg" style="width:256px;height:80px;"></div></div>
<div class="my"><div><pre><code>Forestry 2x2
Industrial IndustrialForestry
L1 2x2 Straight</code></pre></div><div><img data-s="jpg/Forestry%202x2.jpg" style="width:256px;height:112px;"></div></div>