-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtse.html
1797 lines (1793 loc) · 76 KB
/
tse.html
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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body >
<p align=center>1101 台泥<p/>
<img src='pic/1101.png' height='80%' width='100%' />
<p align=center>1102 亞泥<p/>
<img src='pic/1102.png' height='80%' width='100%' />
<p align=center>1103 嘉泥<p/>
<img src='pic/1103.png' height='80%' width='100%' />
<p align=center>1104 環泥<p/>
<img src='pic/1104.png' height='80%' width='100%' />
<p align=center>1108 幸福<p/>
<img src='pic/1108.png' height='80%' width='100%' />
<p align=center>1109 信大<p/>
<img src='pic/1109.png' height='80%' width='100%' />
<p align=center>1110 東泥<p/>
<img src='pic/1110.png' height='80%' width='100%' />
<p align=center>1201 味全<p/>
<img src='pic/1201.png' height='80%' width='100%' />
<p align=center>1203 味王<p/>
<img src='pic/1203.png' height='80%' width='100%' />
<p align=center>1210 大成<p/>
<img src='pic/1210.png' height='80%' width='100%' />
<p align=center>1213 大飲<p/>
<img src='pic/1213.png' height='80%' width='100%' />
<p align=center>1215 卜蜂<p/>
<img src='pic/1215.png' height='80%' width='100%' />
<p align=center>1216 統一<p/>
<img src='pic/1216.png' height='80%' width='100%' />
<p align=center>1217 愛之味<p/>
<img src='pic/1217.png' height='80%' width='100%' />
<p align=center>1218 泰山<p/>
<img src='pic/1218.png' height='80%' width='100%' />
<p align=center>1219 福壽<p/>
<img src='pic/1219.png' height='80%' width='100%' />
<p align=center>1220 台榮<p/>
<img src='pic/1220.png' height='80%' width='100%' />
<p align=center>1225 福懋油<p/>
<img src='pic/1225.png' height='80%' width='100%' />
<p align=center>1227 佳格<p/>
<img src='pic/1227.png' height='80%' width='100%' />
<p align=center>1229 聯華<p/>
<img src='pic/1229.png' height='80%' width='100%' />
<p align=center>1231 聯華食<p/>
<img src='pic/1231.png' height='80%' width='100%' />
<p align=center>1232 大統益<p/>
<img src='pic/1232.png' height='80%' width='100%' />
<p align=center>1233 天仁<p/>
<img src='pic/1233.png' height='80%' width='100%' />
<p align=center>1234 黑松<p/>
<img src='pic/1234.png' height='80%' width='100%' />
<p align=center>1235 興泰<p/>
<img src='pic/1235.png' height='80%' width='100%' />
<p align=center>1236 宏亞<p/>
<img src='pic/1236.png' height='80%' width='100%' />
<p align=center>1256 鮮活果汁-KY<p/>
<img src='pic/1256.png' height='80%' width='100%' />
<p align=center>1262 綠悅-KY<p/>
<img src='pic/1262.png' height='80%' width='100%' />
<p align=center>1301 台塑<p/>
<img src='pic/1301.png' height='80%' width='100%' />
<p align=center>1303 南亞<p/>
<img src='pic/1303.png' height='80%' width='100%' />
<p align=center>1304 台聚<p/>
<img src='pic/1304.png' height='80%' width='100%' />
<p align=center>1305 華夏<p/>
<img src='pic/1305.png' height='80%' width='100%' />
<p align=center>1307 三芳<p/>
<img src='pic/1307.png' height='80%' width='100%' />
<p align=center>1308 亞聚<p/>
<img src='pic/1308.png' height='80%' width='100%' />
<p align=center>1309 台達化<p/>
<img src='pic/1309.png' height='80%' width='100%' />
<p align=center>1310 台苯<p/>
<img src='pic/1310.png' height='80%' width='100%' />
<p align=center>1312 國喬<p/>
<img src='pic/1312.png' height='80%' width='100%' />
<p align=center>1313 聯成<p/>
<img src='pic/1313.png' height='80%' width='100%' />
<p align=center>1314 中石化<p/>
<img src='pic/1314.png' height='80%' width='100%' />
<p align=center>1315 達新<p/>
<img src='pic/1315.png' height='80%' width='100%' />
<p align=center>1316 上曜<p/>
<img src='pic/1316.png' height='80%' width='100%' />
<p align=center>1319 東陽<p/>
<img src='pic/1319.png' height='80%' width='100%' />
<p align=center>1321 大洋<p/>
<img src='pic/1321.png' height='80%' width='100%' />
<p align=center>1323 永裕<p/>
<img src='pic/1323.png' height='80%' width='100%' />
<p align=center>1324 地球<p/>
<img src='pic/1324.png' height='80%' width='100%' />
<p align=center>1325 恆大<p/>
<img src='pic/1325.png' height='80%' width='100%' />
<p align=center>1326 台化<p/>
<img src='pic/1326.png' height='80%' width='100%' />
<p align=center>1337 再生-KY<p/>
<img src='pic/1337.png' height='80%' width='100%' />
<p align=center>1338 廣華-KY<p/>
<img src='pic/1338.png' height='80%' width='100%' />
<p align=center>1339 昭輝<p/>
<img src='pic/1339.png' height='80%' width='100%' />
<p align=center>1340 勝悅-KY<p/>
<img src='pic/1340.png' height='80%' width='100%' />
<p align=center>1402 遠東新<p/>
<img src='pic/1402.png' height='80%' width='100%' />
<p align=center>1409 新纖<p/>
<img src='pic/1409.png' height='80%' width='100%' />
<p align=center>1410 南染<p/>
<img src='pic/1410.png' height='80%' width='100%' />
<p align=center>1413 宏洲<p/>
<img src='pic/1413.png' height='80%' width='100%' />
<p align=center>1414 東和<p/>
<img src='pic/1414.png' height='80%' width='100%' />
<p align=center>1416 廣豐<p/>
<img src='pic/1416.png' height='80%' width='100%' />
<p align=center>1417 嘉裕<p/>
<img src='pic/1417.png' height='80%' width='100%' />
<p align=center>1418 東華<p/>
<img src='pic/1418.png' height='80%' width='100%' />
<p align=center>1419 新紡<p/>
<img src='pic/1419.png' height='80%' width='100%' />
<p align=center>1423 利華<p/>
<img src='pic/1423.png' height='80%' width='100%' />
<p align=center>1432 大魯閣<p/>
<img src='pic/1432.png' height='80%' width='100%' />
<p align=center>1434 福懋<p/>
<img src='pic/1434.png' height='80%' width='100%' />
<p align=center>1435 中福<p/>
<img src='pic/1435.png' height='80%' width='100%' />
<p align=center>1436 華友聯<p/>
<img src='pic/1436.png' height='80%' width='100%' />
<p align=center>1437 勤益控<p/>
<img src='pic/1437.png' height='80%' width='100%' />
<p align=center>1438 裕豐<p/>
<img src='pic/1438.png' height='80%' width='100%' />
<p align=center>1439 中和<p/>
<img src='pic/1439.png' height='80%' width='100%' />
<p align=center>1440 南紡<p/>
<img src='pic/1440.png' height='80%' width='100%' />
<p align=center>1441 大東<p/>
<img src='pic/1441.png' height='80%' width='100%' />
<p align=center>1442 名軒<p/>
<img src='pic/1442.png' height='80%' width='100%' />
<p align=center>1443 立益<p/>
<img src='pic/1443.png' height='80%' width='100%' />
<p align=center>1444 力麗<p/>
<img src='pic/1444.png' height='80%' width='100%' />
<p align=center>1445 大宇<p/>
<img src='pic/1445.png' height='80%' width='100%' />
<p align=center>1446 宏和<p/>
<img src='pic/1446.png' height='80%' width='100%' />
<p align=center>1447 力鵬<p/>
<img src='pic/1447.png' height='80%' width='100%' />
<p align=center>1449 佳和<p/>
<img src='pic/1449.png' height='80%' width='100%' />
<p align=center>1451 年興<p/>
<img src='pic/1451.png' height='80%' width='100%' />
<p align=center>1452 宏益<p/>
<img src='pic/1452.png' height='80%' width='100%' />
<p align=center>1453 大將<p/>
<img src='pic/1453.png' height='80%' width='100%' />
<p align=center>1454 台富<p/>
<img src='pic/1454.png' height='80%' width='100%' />
<p align=center>1455 集盛<p/>
<img src='pic/1455.png' height='80%' width='100%' />
<p align=center>1456 怡華<p/>
<img src='pic/1456.png' height='80%' width='100%' />
<p align=center>1457 宜進<p/>
<img src='pic/1457.png' height='80%' width='100%' />
<p align=center>1459 聯發<p/>
<img src='pic/1459.png' height='80%' width='100%' />
<p align=center>1460 宏遠<p/>
<img src='pic/1460.png' height='80%' width='100%' />
<p align=center>1463 強盛<p/>
<img src='pic/1463.png' height='80%' width='100%' />
<p align=center>1464 得力<p/>
<img src='pic/1464.png' height='80%' width='100%' />
<p align=center>1465 偉全<p/>
<img src='pic/1465.png' height='80%' width='100%' />
<p align=center>1466 聚隆<p/>
<img src='pic/1466.png' height='80%' width='100%' />
<p align=center>1467 南緯<p/>
<img src='pic/1467.png' height='80%' width='100%' />
<p align=center>1468 昶和<p/>
<img src='pic/1468.png' height='80%' width='100%' />
<p align=center>1469 理隆<p/>
<img src='pic/1469.png' height='80%' width='100%' />
<p align=center>1470 大統染<p/>
<img src='pic/1470.png' height='80%' width='100%' />
<p align=center>1471 首利<p/>
<img src='pic/1471.png' height='80%' width='100%' />
<p align=center>1472 三洋紡<p/>
<img src='pic/1472.png' height='80%' width='100%' />
<p align=center>1473 台南<p/>
<img src='pic/1473.png' height='80%' width='100%' />
<p align=center>1474 弘裕<p/>
<img src='pic/1474.png' height='80%' width='100%' />
<p align=center>1475 本盟<p/>
<img src='pic/1475.png' height='80%' width='100%' />
<p align=center>1476 儒鴻<p/>
<img src='pic/1476.png' height='80%' width='100%' />
<p align=center>1477 聚陽<p/>
<img src='pic/1477.png' height='80%' width='100%' />
<p align=center>1503 士電<p/>
<img src='pic/1503.png' height='80%' width='100%' />
<p align=center>1504 東元<p/>
<img src='pic/1504.png' height='80%' width='100%' />
<p align=center>1506 正道<p/>
<img src='pic/1506.png' height='80%' width='100%' />
<p align=center>1507 永大<p/>
<img src='pic/1507.png' height='80%' width='100%' />
<p align=center>1512 瑞利<p/>
<img src='pic/1512.png' height='80%' width='100%' />
<p align=center>1513 中興電<p/>
<img src='pic/1513.png' height='80%' width='100%' />
<p align=center>1514 亞力<p/>
<img src='pic/1514.png' height='80%' width='100%' />
<p align=center>1515 力山<p/>
<img src='pic/1515.png' height='80%' width='100%' />
<p align=center>1516 川飛<p/>
<img src='pic/1516.png' height='80%' width='100%' />
<p align=center>1517 利奇<p/>
<img src='pic/1517.png' height='80%' width='100%' />
<p align=center>1519 華城<p/>
<img src='pic/1519.png' height='80%' width='100%' />
<p align=center>1521 大億<p/>
<img src='pic/1521.png' height='80%' width='100%' />
<p align=center>1522 堤維西<p/>
<img src='pic/1522.png' height='80%' width='100%' />
<p align=center>1524 耿鼎<p/>
<img src='pic/1524.png' height='80%' width='100%' />
<p align=center>1525 江申<p/>
<img src='pic/1525.png' height='80%' width='100%' />
<p align=center>1526 日馳<p/>
<img src='pic/1526.png' height='80%' width='100%' />
<p align=center>1527 鑽全<p/>
<img src='pic/1527.png' height='80%' width='100%' />
<p align=center>1528 恩德<p/>
<img src='pic/1528.png' height='80%' width='100%' />
<p align=center>1529 樂士<p/>
<img src='pic/1529.png' height='80%' width='100%' />
<p align=center>1530 亞崴<p/>
<img src='pic/1530.png' height='80%' width='100%' />
<p align=center>1531 高林股<p/>
<img src='pic/1531.png' height='80%' width='100%' />
<p align=center>1532 勤美<p/>
<img src='pic/1532.png' height='80%' width='100%' />
<p align=center>1533 車王電<p/>
<img src='pic/1533.png' height='80%' width='100%' />
<p align=center>1535 中宇<p/>
<img src='pic/1535.png' height='80%' width='100%' />
<p align=center>1536 和大<p/>
<img src='pic/1536.png' height='80%' width='100%' />
<p align=center>1537 廣隆<p/>
<img src='pic/1537.png' height='80%' width='100%' />
<p align=center>1538 正峰新<p/>
<img src='pic/1538.png' height='80%' width='100%' />
<p align=center>1539 巨庭<p/>
<img src='pic/1539.png' height='80%' width='100%' />
<p align=center>1540 喬福<p/>
<img src='pic/1540.png' height='80%' width='100%' />
<p align=center>1541 錩泰<p/>
<img src='pic/1541.png' height='80%' width='100%' />
<p align=center>1558 伸興<p/>
<img src='pic/1558.png' height='80%' width='100%' />
<p align=center>1560 中砂<p/>
<img src='pic/1560.png' height='80%' width='100%' />
<p align=center>1568 倉佑<p/>
<img src='pic/1568.png' height='80%' width='100%' />
<p align=center>1582 信錦<p/>
<img src='pic/1582.png' height='80%' width='100%' />
<p align=center>1583 程泰<p/>
<img src='pic/1583.png' height='80%' width='100%' />
<p align=center>1589 永冠-KY<p/>
<img src='pic/1589.png' height='80%' width='100%' />
<p align=center>1590 亞德客-KY<p/>
<img src='pic/1590.png' height='80%' width='100%' />
<p align=center>1592 英瑞-KY<p/>
<img src='pic/1592.png' height='80%' width='100%' />
<p align=center>1598 岱宇<p/>
<img src='pic/1598.png' height='80%' width='100%' />
<p align=center>1603 華電<p/>
<img src='pic/1603.png' height='80%' width='100%' />
<p align=center>1604 聲寶<p/>
<img src='pic/1604.png' height='80%' width='100%' />
<p align=center>1605 華新<p/>
<img src='pic/1605.png' height='80%' width='100%' />
<p align=center>1608 華榮<p/>
<img src='pic/1608.png' height='80%' width='100%' />
<p align=center>1609 大亞<p/>
<img src='pic/1609.png' height='80%' width='100%' />
<p align=center>1611 中電<p/>
<img src='pic/1611.png' height='80%' width='100%' />
<p align=center>1612 宏泰<p/>
<img src='pic/1612.png' height='80%' width='100%' />
<p align=center>1613 台一<p/>
<img src='pic/1613.png' height='80%' width='100%' />
<p align=center>1614 三洋電<p/>
<img src='pic/1614.png' height='80%' width='100%' />
<p align=center>1615 大山<p/>
<img src='pic/1615.png' height='80%' width='100%' />
<p align=center>1616 億泰<p/>
<img src='pic/1616.png' height='80%' width='100%' />
<p align=center>1617 榮星<p/>
<img src='pic/1617.png' height='80%' width='100%' />
<p align=center>1618 合機<p/>
<img src='pic/1618.png' height='80%' width='100%' />
<p align=center>1626 艾美特-KY<p/>
<img src='pic/1626.png' height='80%' width='100%' />
<p align=center>1701 中化<p/>
<img src='pic/1701.png' height='80%' width='100%' />
<p align=center>1702 南僑<p/>
<img src='pic/1702.png' height='80%' width='100%' />
<p align=center>1704 榮化<p/>
<img src='pic/1704.png' height='80%' width='100%' />
<p align=center>1707 葡萄王<p/>
<img src='pic/1707.png' height='80%' width='100%' />
<p align=center>1708 東鹼<p/>
<img src='pic/1708.png' height='80%' width='100%' />
<p align=center>1709 和益<p/>
<img src='pic/1709.png' height='80%' width='100%' />
<p align=center>1710 東聯<p/>
<img src='pic/1710.png' height='80%' width='100%' />
<p align=center>1711 永光<p/>
<img src='pic/1711.png' height='80%' width='100%' />
<p align=center>1712 興農<p/>
<img src='pic/1712.png' height='80%' width='100%' />
<p align=center>1713 國化<p/>
<img src='pic/1713.png' height='80%' width='100%' />
<p align=center>1714 和桐<p/>
<img src='pic/1714.png' height='80%' width='100%' />
<p align=center>1715 萬洲<p/>
<img src='pic/1715.png' height='80%' width='100%' />
<p align=center>1717 長興<p/>
<img src='pic/1717.png' height='80%' width='100%' />
<p align=center>1718 中纖<p/>
<img src='pic/1718.png' height='80%' width='100%' />
<p align=center>1720 生達<p/>
<img src='pic/1720.png' height='80%' width='100%' />
<p align=center>1721 三晃<p/>
<img src='pic/1721.png' height='80%' width='100%' />
<p align=center>1722 台肥<p/>
<img src='pic/1722.png' height='80%' width='100%' />
<p align=center>1723 中碳<p/>
<img src='pic/1723.png' height='80%' width='100%' />
<p align=center>1724 台硝<p/>
<img src='pic/1724.png' height='80%' width='100%' />
<p align=center>1725 元禎<p/>
<img src='pic/1725.png' height='80%' width='100%' />
<p align=center>1726 永記<p/>
<img src='pic/1726.png' height='80%' width='100%' />
<p align=center>1727 中華化<p/>
<img src='pic/1727.png' height='80%' width='100%' />
<p align=center>1729 必翔<p/>
<img src='pic/1729.png' height='80%' width='100%' />
<p align=center>1730 花仙子<p/>
<img src='pic/1730.png' height='80%' width='100%' />
<p align=center>1731 美吾華<p/>
<img src='pic/1731.png' height='80%' width='100%' />
<p align=center>1732 毛寶<p/>
<img src='pic/1732.png' height='80%' width='100%' />
<p align=center>1733 五鼎<p/>
<img src='pic/1733.png' height='80%' width='100%' />
<p align=center>1734 杏輝<p/>
<img src='pic/1734.png' height='80%' width='100%' />
<p align=center>1735 日勝化<p/>
<img src='pic/1735.png' height='80%' width='100%' />
<p align=center>1736 喬山<p/>
<img src='pic/1736.png' height='80%' width='100%' />
<p align=center>1737 臺鹽<p/>
<img src='pic/1737.png' height='80%' width='100%' />
<p align=center>1762 中化生<p/>
<img src='pic/1762.png' height='80%' width='100%' />
<p align=center>1773 勝一<p/>
<img src='pic/1773.png' height='80%' width='100%' />
<p align=center>1776 展宇<p/>
<img src='pic/1776.png' height='80%' width='100%' />
<p align=center>1783 和康生<p/>
<img src='pic/1783.png' height='80%' width='100%' />
<p align=center>1786 科妍<p/>
<img src='pic/1786.png' height='80%' width='100%' />
<p align=center>1789 神隆<p/>
<img src='pic/1789.png' height='80%' width='100%' />
<p align=center>1802 台玻<p/>
<img src='pic/1802.png' height='80%' width='100%' />
<p align=center>1805 寶徠<p/>
<img src='pic/1805.png' height='80%' width='100%' />
<p align=center>1806 冠軍<p/>
<img src='pic/1806.png' height='80%' width='100%' />
<p align=center>1808 潤隆<p/>
<img src='pic/1808.png' height='80%' width='100%' />
<p align=center>1809 中釉<p/>
<img src='pic/1809.png' height='80%' width='100%' />
<p align=center>1810 和成<p/>
<img src='pic/1810.png' height='80%' width='100%' />
<p align=center>1817 凱撒衛<p/>
<img src='pic/1817.png' height='80%' width='100%' />
<p align=center>1902 台紙<p/>
<img src='pic/1902.png' height='80%' width='100%' />
<p align=center>1903 士紙<p/>
<img src='pic/1903.png' height='80%' width='100%' />
<p align=center>1904 正隆<p/>
<img src='pic/1904.png' height='80%' width='100%' />
<p align=center>1905 華紙<p/>
<img src='pic/1905.png' height='80%' width='100%' />
<p align=center>1906 寶隆<p/>
<img src='pic/1906.png' height='80%' width='100%' />
<p align=center>1907 永豐餘<p/>
<img src='pic/1907.png' height='80%' width='100%' />
<p align=center>1909 榮成<p/>
<img src='pic/1909.png' height='80%' width='100%' />
<p align=center>2002 中鋼<p/>
<img src='pic/2002.png' height='80%' width='100%' />
<p align=center>2006 東和鋼鐵<p/>
<img src='pic/2006.png' height='80%' width='100%' />
<p align=center>2007 燁興<p/>
<img src='pic/2007.png' height='80%' width='100%' />
<p align=center>2008 高興昌<p/>
<img src='pic/2008.png' height='80%' width='100%' />
<p align=center>2009 第一銅<p/>
<img src='pic/2009.png' height='80%' width='100%' />
<p align=center>2010 春源<p/>
<img src='pic/2010.png' height='80%' width='100%' />
<p align=center>2012 春雨<p/>
<img src='pic/2012.png' height='80%' width='100%' />
<p align=center>2013 中鋼構<p/>
<img src='pic/2013.png' height='80%' width='100%' />
<p align=center>2014 中鴻<p/>
<img src='pic/2014.png' height='80%' width='100%' />
<p align=center>2015 豐興<p/>
<img src='pic/2015.png' height='80%' width='100%' />
<p align=center>2017 官田鋼<p/>
<img src='pic/2017.png' height='80%' width='100%' />
<p align=center>2020 美亞<p/>
<img src='pic/2020.png' height='80%' width='100%' />
<p align=center>2022 聚亨<p/>
<img src='pic/2022.png' height='80%' width='100%' />
<p align=center>2023 燁輝<p/>
<img src='pic/2023.png' height='80%' width='100%' />
<p align=center>2024 志聯<p/>
<img src='pic/2024.png' height='80%' width='100%' />
<p align=center>2025 千興<p/>
<img src='pic/2025.png' height='80%' width='100%' />
<p align=center>2027 大成鋼<p/>
<img src='pic/2027.png' height='80%' width='100%' />
<p align=center>2028 威致<p/>
<img src='pic/2028.png' height='80%' width='100%' />
<p align=center>2029 盛餘<p/>
<img src='pic/2029.png' height='80%' width='100%' />
<p align=center>2030 彰源<p/>
<img src='pic/2030.png' height='80%' width='100%' />
<p align=center>2031 新光鋼<p/>
<img src='pic/2031.png' height='80%' width='100%' />
<p align=center>2032 新鋼<p/>
<img src='pic/2032.png' height='80%' width='100%' />
<p align=center>2033 佳大<p/>
<img src='pic/2033.png' height='80%' width='100%' />
<p align=center>2034 允強<p/>
<img src='pic/2034.png' height='80%' width='100%' />
<p align=center>2038 海光<p/>
<img src='pic/2038.png' height='80%' width='100%' />
<p align=center>2049 上銀<p/>
<img src='pic/2049.png' height='80%' width='100%' />
<p align=center>2059 川湖<p/>
<img src='pic/2059.png' height='80%' width='100%' />
<p align=center>2062 橋椿<p/>
<img src='pic/2062.png' height='80%' width='100%' />
<p align=center>2069 運錩<p/>
<img src='pic/2069.png' height='80%' width='100%' />
<p align=center>2101 南港<p/>
<img src='pic/2101.png' height='80%' width='100%' />
<p align=center>2102 泰豐<p/>
<img src='pic/2102.png' height='80%' width='100%' />
<p align=center>2103 台橡<p/>
<img src='pic/2103.png' height='80%' width='100%' />
<p align=center>2104 中橡<p/>
<img src='pic/2104.png' height='80%' width='100%' />
<p align=center>2105 正新<p/>
<img src='pic/2105.png' height='80%' width='100%' />
<p align=center>2106 建大<p/>
<img src='pic/2106.png' height='80%' width='100%' />
<p align=center>2107 厚生<p/>
<img src='pic/2107.png' height='80%' width='100%' />
<p align=center>2108 南帝<p/>
<img src='pic/2108.png' height='80%' width='100%' />
<p align=center>2109 華豐<p/>
<img src='pic/2109.png' height='80%' width='100%' />
<p align=center>2114 鑫永銓<p/>
<img src='pic/2114.png' height='80%' width='100%' />
<p align=center>2115 六暉-KY<p/>
<img src='pic/2115.png' height='80%' width='100%' />
<p align=center>2201 裕隆<p/>
<img src='pic/2201.png' height='80%' width='100%' />
<p align=center>2204 中華<p/>
<img src='pic/2204.png' height='80%' width='100%' />
<p align=center>2206 三陽工業<p/>
<img src='pic/2206.png' height='80%' width='100%' />
<p align=center>2207 和泰車<p/>
<img src='pic/2207.png' height='80%' width='100%' />
<p align=center>2208 台船<p/>
<img src='pic/2208.png' height='80%' width='100%' />
<p align=center>2227 裕日車<p/>
<img src='pic/2227.png' height='80%' width='100%' />
<p align=center>2228 劍麟<p/>
<img src='pic/2228.png' height='80%' width='100%' />
<p align=center>2231 為升<p/>
<img src='pic/2231.png' height='80%' width='100%' />
<p align=center>2236 百達-KY<p/>
<img src='pic/2236.png' height='80%' width='100%' />
<p align=center>2239 英利-KY<p/>
<img src='pic/2239.png' height='80%' width='100%' />
<p align=center>2301 光寶科<p/>
<img src='pic/2301.png' height='80%' width='100%' />
<p align=center>2302 麗正<p/>
<img src='pic/2302.png' height='80%' width='100%' />
<p align=center>2303 聯電<p/>
<img src='pic/2303.png' height='80%' width='100%' />
<p align=center>2305 全友<p/>
<img src='pic/2305.png' height='80%' width='100%' />
<p align=center>2308 台達電<p/>
<img src='pic/2308.png' height='80%' width='100%' />
<p align=center>2311 日月光<p/>
<img src='pic/2311.png' height='80%' width='100%' />
<p align=center>2312 金寶<p/>
<img src='pic/2312.png' height='80%' width='100%' />
<p align=center>2313 華通<p/>
<img src='pic/2313.png' height='80%' width='100%' />
<p align=center>2314 台揚<p/>
<img src='pic/2314.png' height='80%' width='100%' />
<p align=center>2316 楠梓電<p/>
<img src='pic/2316.png' height='80%' width='100%' />
<p align=center>2317 鴻海<p/>
<img src='pic/2317.png' height='80%' width='100%' />
<p align=center>2321 東訊<p/>
<img src='pic/2321.png' height='80%' width='100%' />
<p align=center>2323 中環<p/>
<img src='pic/2323.png' height='80%' width='100%' />
<p align=center>2324 仁寶<p/>
<img src='pic/2324.png' height='80%' width='100%' />
<p align=center>2325 矽品<p/>
<img src='pic/2325.png' height='80%' width='100%' />
<p align=center>2327 國巨<p/>
<img src='pic/2327.png' height='80%' width='100%' />
<p align=center>2328 廣宇<p/>
<img src='pic/2328.png' height='80%' width='100%' />
<p align=center>2329 華泰<p/>
<img src='pic/2329.png' height='80%' width='100%' />
<p align=center>2330 台積電<p/>
<img src='pic/2330.png' height='80%' width='100%' />
<p align=center>2331 精英<p/>
<img src='pic/2331.png' height='80%' width='100%' />
<p align=center>2332 友訊<p/>
<img src='pic/2332.png' height='80%' width='100%' />
<p align=center>2337 旺宏<p/>
<img src='pic/2337.png' height='80%' width='100%' />
<p align=center>2338 光罩<p/>
<img src='pic/2338.png' height='80%' width='100%' />
<p align=center>2340 光磊<p/>
<img src='pic/2340.png' height='80%' width='100%' />
<p align=center>2342 茂矽<p/>
<img src='pic/2342.png' height='80%' width='100%' />
<p align=center>2344 華邦電<p/>
<img src='pic/2344.png' height='80%' width='100%' />
<p align=center>2345 智邦<p/>
<img src='pic/2345.png' height='80%' width='100%' />
<p align=center>2347 聯強<p/>
<img src='pic/2347.png' height='80%' width='100%' />
<p align=center>2348 海悅<p/>
<img src='pic/2348.png' height='80%' width='100%' />
<p align=center>2349 錸德<p/>
<img src='pic/2349.png' height='80%' width='100%' />
<p align=center>2351 順德<p/>
<img src='pic/2351.png' height='80%' width='100%' />
<p align=center>2352 佳世達<p/>
<img src='pic/2352.png' height='80%' width='100%' />
<p align=center>2353 宏碁<p/>
<img src='pic/2353.png' height='80%' width='100%' />
<p align=center>2354 鴻準<p/>
<img src='pic/2354.png' height='80%' width='100%' />
<p align=center>2355 敬鵬<p/>
<img src='pic/2355.png' height='80%' width='100%' />
<p align=center>2356 英業達<p/>
<img src='pic/2356.png' height='80%' width='100%' />
<p align=center>2357 華碩<p/>
<img src='pic/2357.png' height='80%' width='100%' />
<p align=center>2358 廷鑫<p/>
<img src='pic/2358.png' height='80%' width='100%' />
<p align=center>2359 所羅門<p/>
<img src='pic/2359.png' height='80%' width='100%' />
<p align=center>2360 致茂<p/>
<img src='pic/2360.png' height='80%' width='100%' />
<p align=center>2362 藍天<p/>
<img src='pic/2362.png' height='80%' width='100%' />
<p align=center>2363 矽統<p/>
<img src='pic/2363.png' height='80%' width='100%' />
<p align=center>2364 倫飛<p/>
<img src='pic/2364.png' height='80%' width='100%' />
<p align=center>2365 昆盈<p/>
<img src='pic/2365.png' height='80%' width='100%' />
<p align=center>2367 燿華<p/>
<img src='pic/2367.png' height='80%' width='100%' />
<p align=center>2368 金像電<p/>
<img src='pic/2368.png' height='80%' width='100%' />
<p align=center>2369 菱生<p/>
<img src='pic/2369.png' height='80%' width='100%' />
<p align=center>2371 大同<p/>
<img src='pic/2371.png' height='80%' width='100%' />
<p align=center>2373 震旦行<p/>
<img src='pic/2373.png' height='80%' width='100%' />
<p align=center>2374 佳能<p/>
<img src='pic/2374.png' height='80%' width='100%' />
<p align=center>2375 智寶<p/>
<img src='pic/2375.png' height='80%' width='100%' />
<p align=center>2376 技嘉<p/>
<img src='pic/2376.png' height='80%' width='100%' />
<p align=center>2377 微星<p/>
<img src='pic/2377.png' height='80%' width='100%' />
<p align=center>2379 瑞昱<p/>
<img src='pic/2379.png' height='80%' width='100%' />
<p align=center>2380 虹光<p/>
<img src='pic/2380.png' height='80%' width='100%' />
<p align=center>2382 廣達<p/>
<img src='pic/2382.png' height='80%' width='100%' />
<p align=center>2383 台光電<p/>
<img src='pic/2383.png' height='80%' width='100%' />
<p align=center>2385 群光<p/>
<img src='pic/2385.png' height='80%' width='100%' />
<p align=center>2387 精元<p/>
<img src='pic/2387.png' height='80%' width='100%' />
<p align=center>2388 威盛<p/>
<img src='pic/2388.png' height='80%' width='100%' />
<p align=center>2390 云辰<p/>
<img src='pic/2390.png' height='80%' width='100%' />
<p align=center>2392 正崴<p/>
<img src='pic/2392.png' height='80%' width='100%' />
<p align=center>2393 億光<p/>
<img src='pic/2393.png' height='80%' width='100%' />
<p align=center>2395 研華<p/>
<img src='pic/2395.png' height='80%' width='100%' />
<p align=center>2397 友通<p/>
<img src='pic/2397.png' height='80%' width='100%' />
<p align=center>2399 映泰<p/>
<img src='pic/2399.png' height='80%' width='100%' />
<p align=center>2401 凌陽<p/>
<img src='pic/2401.png' height='80%' width='100%' />
<p align=center>2402 毅嘉<p/>
<img src='pic/2402.png' height='80%' width='100%' />
<p align=center>2404 漢唐<p/>
<img src='pic/2404.png' height='80%' width='100%' />
<p align=center>2405 浩鑫<p/>
<img src='pic/2405.png' height='80%' width='100%' />
<p align=center>2406 國碩<p/>
<img src='pic/2406.png' height='80%' width='100%' />
<p align=center>2408 南亞科<p/>
<img src='pic/2408.png' height='80%' width='100%' />
<p align=center>2409 友達<p/>
<img src='pic/2409.png' height='80%' width='100%' />
<p align=center>2412 中華電<p/>
<img src='pic/2412.png' height='80%' width='100%' />
<p align=center>2413 環科<p/>
<img src='pic/2413.png' height='80%' width='100%' />
<p align=center>2414 精技<p/>
<img src='pic/2414.png' height='80%' width='100%' />
<p align=center>2415 錩新<p/>
<img src='pic/2415.png' height='80%' width='100%' />
<p align=center>2417 圓剛<p/>
<img src='pic/2417.png' height='80%' width='100%' />
<p align=center>2419 仲琦<p/>
<img src='pic/2419.png' height='80%' width='100%' />
<p align=center>2420 新巨<p/>
<img src='pic/2420.png' height='80%' width='100%' />
<p align=center>2421 建準<p/>
<img src='pic/2421.png' height='80%' width='100%' />
<p align=center>2423 固緯<p/>
<img src='pic/2423.png' height='80%' width='100%' />
<p align=center>2424 隴華<p/>
<img src='pic/2424.png' height='80%' width='100%' />
<p align=center>2425 承啟<p/>
<img src='pic/2425.png' height='80%' width='100%' />
<p align=center>2426 鼎元<p/>
<img src='pic/2426.png' height='80%' width='100%' />
<p align=center>2427 三商電<p/>
<img src='pic/2427.png' height='80%' width='100%' />
<p align=center>2428 興勤<p/>
<img src='pic/2428.png' height='80%' width='100%' />
<p align=center>2429 銘旺科<p/>
<img src='pic/2429.png' height='80%' width='100%' />
<p align=center>2430 燦坤<p/>
<img src='pic/2430.png' height='80%' width='100%' />
<p align=center>2431 聯昌<p/>
<img src='pic/2431.png' height='80%' width='100%' />
<p align=center>2433 互盛電<p/>
<img src='pic/2433.png' height='80%' width='100%' />
<p align=center>2434 統懋<p/>
<img src='pic/2434.png' height='80%' width='100%' />
<p align=center>2436 偉詮電<p/>
<img src='pic/2436.png' height='80%' width='100%' />
<p align=center>2437 旺詮<p/>
<img src='pic/2437.png' height='80%' width='100%' />
<p align=center>2438 翔耀<p/>
<img src='pic/2438.png' height='80%' width='100%' />
<p align=center>2439 美律<p/>
<img src='pic/2439.png' height='80%' width='100%' />
<p align=center>2440 太空梭<p/>
<img src='pic/2440.png' height='80%' width='100%' />
<p align=center>2441 超豐<p/>
<img src='pic/2441.png' height='80%' width='100%' />
<p align=center>2442 新美齊<p/>
<img src='pic/2442.png' height='80%' width='100%' />
<p align=center>2443 新利虹<p/>
<img src='pic/2443.png' height='80%' width='100%' />
<p align=center>2444 友旺<p/>
<img src='pic/2444.png' height='80%' width='100%' />
<p align=center>2448 晶電<p/>
<img src='pic/2448.png' height='80%' width='100%' />
<p align=center>2449 京元電子<p/>
<img src='pic/2449.png' height='80%' width='100%' />
<p align=center>2450 神腦<p/>
<img src='pic/2450.png' height='80%' width='100%' />
<p align=center>2451 創見<p/>
<img src='pic/2451.png' height='80%' width='100%' />
<p align=center>2453 凌群<p/>
<img src='pic/2453.png' height='80%' width='100%' />
<p align=center>2454 聯發科<p/>
<img src='pic/2454.png' height='80%' width='100%' />
<p align=center>2455 全新<p/>
<img src='pic/2455.png' height='80%' width='100%' />
<p align=center>2456 奇力新<p/>
<img src='pic/2456.png' height='80%' width='100%' />
<p align=center>2457 飛宏<p/>
<img src='pic/2457.png' height='80%' width='100%' />
<p align=center>2458 義隆<p/>
<img src='pic/2458.png' height='80%' width='100%' />
<p align=center>2459 敦吉<p/>
<img src='pic/2459.png' height='80%' width='100%' />
<p align=center>2460 建通<p/>
<img src='pic/2460.png' height='80%' width='100%' />
<p align=center>2461 光群雷<p/>
<img src='pic/2461.png' height='80%' width='100%' />
<p align=center>2462 良得電<p/>
<img src='pic/2462.png' height='80%' width='100%' />
<p align=center>2464 盟立<p/>
<img src='pic/2464.png' height='80%' width='100%' />
<p align=center>2465 麗臺<p/>
<img src='pic/2465.png' height='80%' width='100%' />
<p align=center>2466 冠西電<p/>
<img src='pic/2466.png' height='80%' width='100%' />
<p align=center>2467 志聖<p/>
<img src='pic/2467.png' height='80%' width='100%' />
<p align=center>2468 華經<p/>
<img src='pic/2468.png' height='80%' width='100%' />
<p align=center>2471 資通<p/>
<img src='pic/2471.png' height='80%' width='100%' />
<p align=center>2472 立隆電<p/>
<img src='pic/2472.png' height='80%' width='100%' />
<p align=center>2474 可成<p/>
<img src='pic/2474.png' height='80%' width='100%' />
<p align=center>2475 華映<p/>
<img src='pic/2475.png' height='80%' width='100%' />
<p align=center>2476 鉅祥<p/>
<img src='pic/2476.png' height='80%' width='100%' />
<p align=center>2477 美隆電<p/>
<img src='pic/2477.png' height='80%' width='100%' />
<p align=center>2478 大毅<p/>
<img src='pic/2478.png' height='80%' width='100%' />
<p align=center>2480 敦陽科<p/>
<img src='pic/2480.png' height='80%' width='100%' />
<p align=center>2481 強茂<p/>
<img src='pic/2481.png' height='80%' width='100%' />
<p align=center>2482 連宇<p/>
<img src='pic/2482.png' height='80%' width='100%' />
<p align=center>2483 百容<p/>
<img src='pic/2483.png' height='80%' width='100%' />
<p align=center>2484 希華<p/>
<img src='pic/2484.png' height='80%' width='100%' />
<p align=center>2485 兆赫<p/>
<img src='pic/2485.png' height='80%' width='100%' />
<p align=center>2486 一詮<p/>
<img src='pic/2486.png' height='80%' width='100%' />
<p align=center>2488 漢平<p/>
<img src='pic/2488.png' height='80%' width='100%' />
<p align=center>2489 瑞軒<p/>
<img src='pic/2489.png' height='80%' width='100%' />
<p align=center>2491 吉祥全<p/>
<img src='pic/2491.png' height='80%' width='100%' />
<p align=center>2492 華新科<p/>
<img src='pic/2492.png' height='80%' width='100%' />
<p align=center>2493 揚博<p/>
<img src='pic/2493.png' height='80%' width='100%' />
<p align=center>2495 普安<p/>
<img src='pic/2495.png' height='80%' width='100%' />
<p align=center>2496 卓越<p/>
<img src='pic/2496.png' height='80%' width='100%' />
<p align=center>2497 怡利電<p/>
<img src='pic/2497.png' height='80%' width='100%' />
<p align=center>2498 宏達電<p/>
<img src='pic/2498.png' height='80%' width='100%' />
<p align=center>2499 東貝<p/>
<img src='pic/2499.png' height='80%' width='100%' />
<p align=center>2501 國建<p/>
<img src='pic/2501.png' height='80%' width='100%' />
<p align=center>2504 國產<p/>
<img src='pic/2504.png' height='80%' width='100%' />
<p align=center>2505 國揚<p/>
<img src='pic/2505.png' height='80%' width='100%' />
<p align=center>2506 太設<p/>
<img src='pic/2506.png' height='80%' width='100%' />
<p align=center>2509 全坤建<p/>
<img src='pic/2509.png' height='80%' width='100%' />
<p align=center>2511 太子<p/>
<img src='pic/2511.png' height='80%' width='100%' />
<p align=center>2514 龍邦<p/>
<img src='pic/2514.png' height='80%' width='100%' />
<p align=center>2515 中工<p/>
<img src='pic/2515.png' height='80%' width='100%' />
<p align=center>2516 新建<p/>
<img src='pic/2516.png' height='80%' width='100%' />
<p align=center>2520 冠德<p/>
<img src='pic/2520.png' height='80%' width='100%' />
<p align=center>2524 京城<p/>
<img src='pic/2524.png' height='80%' width='100%' />
<p align=center>2527 宏璟<p/>
<img src='pic/2527.png' height='80%' width='100%' />
<p align=center>2528 皇普<p/>
<img src='pic/2528.png' height='80%' width='100%' />
<p align=center>2530 華建<p/>
<img src='pic/2530.png' height='80%' width='100%' />
<p align=center>2534 宏盛<p/>
<img src='pic/2534.png' height='80%' width='100%' />
<p align=center>2535 達欣工<p/>
<img src='pic/2535.png' height='80%' width='100%' />
<p align=center>2536 宏普<p/>
<img src='pic/2536.png' height='80%' width='100%' />
<p align=center>2537 聯上發<p/>
<img src='pic/2537.png' height='80%' width='100%' />
<p align=center>2538 基泰<p/>
<img src='pic/2538.png' height='80%' width='100%' />
<p align=center>2539 櫻花建<p/>
<img src='pic/2539.png' height='80%' width='100%' />
<p align=center>2540 愛山林<p/>
<img src='pic/2540.png' height='80%' width='100%' />
<p align=center>2542 興富發<p/>
<img src='pic/2542.png' height='80%' width='100%' />
<p align=center>2543 皇昌<p/>
<img src='pic/2543.png' height='80%' width='100%' />
<p align=center>2545 皇翔<p/>
<img src='pic/2545.png' height='80%' width='100%' />
<p align=center>2546 根基<p/>
<img src='pic/2546.png' height='80%' width='100%' />
<p align=center>2547 日勝生<p/>
<img src='pic/2547.png' height='80%' width='100%' />
<p align=center>2548 華固<p/>
<img src='pic/2548.png' height='80%' width='100%' />
<p align=center>2597 潤弘<p/>
<img src='pic/2597.png' height='80%' width='100%' />
<p align=center>2601 益航<p/>
<img src='pic/2601.png' height='80%' width='100%' />
<p align=center>2603 長榮<p/>
<img src='pic/2603.png' height='80%' width='100%' />
<p align=center>2605 新興<p/>
<img src='pic/2605.png' height='80%' width='100%' />
<p align=center>2606 裕民<p/>
<img src='pic/2606.png' height='80%' width='100%' />
<p align=center>2607 榮運<p/>
<img src='pic/2607.png' height='80%' width='100%' />
<p align=center>2608 大榮<p/>
<img src='pic/2608.png' height='80%' width='100%' />
<p align=center>2609 陽明<p/>
<img src='pic/2609.png' height='80%' width='100%' />
<p align=center>2610 華航<p/>
<img src='pic/2610.png' height='80%' width='100%' />
<p align=center>2611 志信<p/>
<img src='pic/2611.png' height='80%' width='100%' />
<p align=center>2612 中航<p/>
<img src='pic/2612.png' height='80%' width='100%' />
<p align=center>2613 中櫃<p/>
<img src='pic/2613.png' height='80%' width='100%' />
<p align=center>2614 東森<p/>
<img src='pic/2614.png' height='80%' width='100%' />
<p align=center>2615 萬海<p/>
<img src='pic/2615.png' height='80%' width='100%' />
<p align=center>2616 山隆<p/>
<img src='pic/2616.png' height='80%' width='100%' />
<p align=center>2617 台航<p/>
<img src='pic/2617.png' height='80%' width='100%' />
<p align=center>2618 長榮航<p/>
<img src='pic/2618.png' height='80%' width='100%' />
<p align=center>2633 台灣高鐵<p/>
<img src='pic/2633.png' height='80%' width='100%' />
<p align=center>2634 漢翔<p/>
<img src='pic/2634.png' height='80%' width='100%' />
<p align=center>2636 台驊<p/>
<img src='pic/2636.png' height='80%' width='100%' />
<p align=center>2637 慧洋-KY<p/>
<img src='pic/2637.png' height='80%' width='100%' />
<p align=center>2642 宅配通<p/>
<img src='pic/2642.png' height='80%' width='100%' />
<p align=center>2701 萬企<p/>
<img src='pic/2701.png' height='80%' width='100%' />
<p align=center>2702 華園<p/>
<img src='pic/2702.png' height='80%' width='100%' />
<p align=center>2704 國賓<p/>
<img src='pic/2704.png' height='80%' width='100%' />
<p align=center>2705 六福<p/>
<img src='pic/2705.png' height='80%' width='100%' />
<p align=center>2706 第一店<p/>
<img src='pic/2706.png' height='80%' width='100%' />
<p align=center>2707 晶華<p/>
<img src='pic/2707.png' height='80%' width='100%' />
<p align=center>2712 遠雄來<p/>
<img src='pic/2712.png' height='80%' width='100%' />
<p align=center>2722 夏都<p/>
<img src='pic/2722.png' height='80%' width='100%' />
<p align=center>2723 美食-KY<p/>
<img src='pic/2723.png' height='80%' width='100%' />
<p align=center>2727 王品<p/>
<img src='pic/2727.png' height='80%' width='100%' />
<p align=center>2731 雄獅<p/>
<img src='pic/2731.png' height='80%' width='100%' />
<p align=center>2739 寒舍<p/>
<img src='pic/2739.png' height='80%' width='100%' />
<p align=center>2748 雲品<p/>
<img src='pic/2748.png' height='80%' width='100%' />
<p align=center>2801 彰銀<p/>
<img src='pic/2801.png' height='80%' width='100%' />
<p align=center>2809 京城銀<p/>
<img src='pic/2809.png' height='80%' width='100%' />
<p align=center>2812 台中銀<p/>
<img src='pic/2812.png' height='80%' width='100%' />
<p align=center>2816 旺旺保<p/>
<img src='pic/2816.png' height='80%' width='100%' />
<p align=center>2820 華票<p/>
<img src='pic/2820.png' height='80%' width='100%' />
<p align=center>2823 中壽<p/>
<img src='pic/2823.png' height='80%' width='100%' />
<p align=center>2832 台產<p/>
<img src='pic/2832.png' height='80%' width='100%' />
<p align=center>2834 臺企銀<p/>
<img src='pic/2834.png' height='80%' width='100%' />
<p align=center>2836 高雄銀<p/>
<img src='pic/2836.png' height='80%' width='100%' />
<p align=center>2838 聯邦銀<p/>
<img src='pic/2838.png' height='80%' width='100%' />
<p align=center>2841 台開<p/>
<img src='pic/2841.png' height='80%' width='100%' />
<p align=center>2845 遠東銀<p/>
<img src='pic/2845.png' height='80%' width='100%' />
<p align=center>2849 安泰銀<p/>
<img src='pic/2849.png' height='80%' width='100%' />
<p align=center>2850 新產<p/>
<img src='pic/2850.png' height='80%' width='100%' />
<p align=center>2851 中再保<p/>
<img src='pic/2851.png' height='80%' width='100%' />
<p align=center>2852 第一保<p/>
<img src='pic/2852.png' height='80%' width='100%' />
<p align=center>2855 統一證<p/>
<img src='pic/2855.png' height='80%' width='100%' />
<p align=center>2856 元富證<p/>
<img src='pic/2856.png' height='80%' width='100%' />
<p align=center>2867 三商壽<p/>
<img src='pic/2867.png' height='80%' width='100%' />
<p align=center>2880 華南金<p/>
<img src='pic/2880.png' height='80%' width='100%' />
<p align=center>2881 富邦金<p/>
<img src='pic/2881.png' height='80%' width='100%' />
<p align=center>2882 國泰金<p/>
<img src='pic/2882.png' height='80%' width='100%' />
<p align=center>2883 開發金<p/>
<img src='pic/2883.png' height='80%' width='100%' />
<p align=center>2884 玉山金<p/>
<img src='pic/2884.png' height='80%' width='100%' />
<p align=center>2885 元大金<p/>
<img src='pic/2885.png' height='80%' width='100%' />
<p align=center>2886 兆豐金<p/>
<img src='pic/2886.png' height='80%' width='100%' />
<p align=center>2887 台新金<p/>
<img src='pic/2887.png' height='80%' width='100%' />
<p align=center>2888 新光金<p/>
<img src='pic/2888.png' height='80%' width='100%' />
<p align=center>2889 國票金<p/>
<img src='pic/2889.png' height='80%' width='100%' />
<p align=center>2890 永豐金<p/>
<img src='pic/2890.png' height='80%' width='100%' />
<p align=center>2891 中信金<p/>
<img src='pic/2891.png' height='80%' width='100%' />
<p align=center>2892 第一金<p/>
<img src='pic/2892.png' height='80%' width='100%' />
<p align=center>2901 欣欣<p/>
<img src='pic/2901.png' height='80%' width='100%' />
<p align=center>2903 遠百<p/>
<img src='pic/2903.png' height='80%' width='100%' />
<p align=center>2904 匯僑<p/>
<img src='pic/2904.png' height='80%' width='100%' />
<p align=center>2905 三商<p/>