-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
4167 lines (3248 loc) · 156 KB
/
index.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Hong Kong Districts Info</title>
<link>https://hong-kong-districts-info.github.io/</link>
<description>Recent content on Hong Kong Districts Info</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Thu, 15 Oct 2020 00:00:00 +0000</lastBuildDate>
<atom:link href="https://hong-kong-districts-info.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>A-01: 中環 / CHUNG WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/a-01/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-01/</guid>
<description>許智峯/HUI CHI FUNG</description>
</item>
<item>
<title>A-02: 半山東 / MID LEVELS EAST</title>
<link>https://hong-kong-districts-info.github.io/dc/a-02/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-02/</guid>
<description>吳兆康/NG SIU HONG</description>
</item>
<item>
<title>A-03: 衛城 / CASTLE ROAD</title>
<link>https://hong-kong-districts-info.github.io/dc/a-03/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-03/</guid>
<description>鄭麗琼/CHENG LAI KING</description>
</item>
<item>
<title>A-04: 山頂 / PEAK</title>
<link>https://hong-kong-districts-info.github.io/dc/a-04/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-04/</guid>
<description>楊哲安/YOUNG CHIT ON JEREMY</description>
</item>
<item>
<title>A-05: 大學 / UNIVERSITY</title>
<link>https://hong-kong-districts-info.github.io/dc/a-05/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-05/</guid>
<description>任嘉兒/YAM KA YI</description>
</item>
<item>
<title>A-06: 觀龍 / KWUN LUNG</title>
<link>https://hong-kong-districts-info.github.io/dc/a-06/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-06/</guid>
<description>梁晃維/LEUNG FONG WAI FERGUS</description>
</item>
<item>
<title>A-07: 堅摩 / KENNEDY TOWN & MOUNT DAVIS</title>
<link>https://hong-kong-districts-info.github.io/dc/a-07/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-07/</guid>
<description>黃健菁/WONG KIN CHING CHERRY</description>
</item>
<item>
<title>A-08: 西環 / SAI WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/a-08/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-08/</guid>
<description>彭家浩/PANG KA HO</description>
</item>
<item>
<title>A-09: 寶翠 / BELCHER</title>
<link>https://hong-kong-districts-info.github.io/dc/a-09/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-09/</guid>
<description>楊浩然/YEUNG SUI YIN VICTOR</description>
</item>
<item>
<title>A-10: 石塘咀 / SHEK TONG TSUI</title>
<link>https://hong-kong-districts-info.github.io/dc/a-10/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-10/</guid>
<description>葉錦龍/YIP KAM LUNG SAM</description>
</item>
<item>
<title>A-11: 西營盤 / SAI YING PUN</title>
<link>https://hong-kong-districts-info.github.io/dc/a-11/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-11/</guid>
<description>黃永志/WONG WENG CHI</description>
</item>
<item>
<title>A-12: 上環 / SHEUNG WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/a-12/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-12/</guid>
<description>甘乃威/KAM NAI WAI</description>
</item>
<item>
<title>A-13: 東華 / TUNG WAH</title>
<link>https://hong-kong-districts-info.github.io/dc/a-13/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-13/</guid>
<description>伍凱欣/NG HOI YAN BONNIE</description>
</item>
<item>
<title>A-14: 正街 / CENTRE STREET</title>
<link>https://hong-kong-districts-info.github.io/dc/a-14/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-14/</guid>
<description>張啟昕/CHEUNG KAI YIN</description>
</item>
<item>
<title>A-15: 水街 / WATER STREET</title>
<link>https://hong-kong-districts-info.github.io/dc/a-15/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/a-15/</guid>
<description>何致宏/HO CHI WANG</description>
</item>
<item>
<title>B-01: 軒尼詩 / HENNESSY</title>
<link>https://hong-kong-districts-info.github.io/dc/b-01/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-01/</guid>
<description>顧國慧/KOO KWOK WAI SABINA</description>
</item>
<item>
<title>B-02: 愛群 / OI KWAN</title>
<link>https://hong-kong-districts-info.github.io/dc/b-02/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-02/</guid>
<description>羅偉珊/LAW WAI SHAN</description>
</item>
<item>
<title>B-03: 鵝頸 / CANAL ROAD</title>
<link>https://hong-kong-districts-info.github.io/dc/b-03/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-03/</guid>
<description>麥景星/MAK KING SING</description>
</item>
<item>
<title>B-04: 銅鑼灣 / CAUSEWAY BAY</title>
<link>https://hong-kong-districts-info.github.io/dc/b-04/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-04/</guid>
<description>邱汶珊/YAU MAN SHAN CATHY</description>
</item>
<item>
<title>B-05: 維園 / VICTORIA PARK</title>
<link>https://hong-kong-districts-info.github.io/dc/b-05/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-05/</guid>
<description>李永財/LI WING CHOI</description>
</item>
<item>
<title>B-06: 天后 / TIN HAU</title>
<link>https://hong-kong-districts-info.github.io/dc/b-06/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-06/</guid>
<description>陳鈺琳/CHAN YUK LAM</description>
</item>
<item>
<title>B-07: 大坑 / TAI HANG</title>
<link>https://hong-kong-districts-info.github.io/dc/b-07/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-07/</guid>
<description>楊雪盈/YEUNG SUET YING CLARISSE</description>
</item>
<item>
<title>B-08: 渣甸山 / JARDINE'S LOOKOUT</title>
<link>https://hong-kong-districts-info.github.io/dc/b-08/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-08/</guid>
<description>林偉文/LAM WAI MAN WIND</description>
</item>
<item>
<title>B-09: 樂活 / BROADWOOD</title>
<link>https://hong-kong-districts-info.github.io/dc/b-09/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-09/</guid>
<description>謝偉俊/TSE WAI CHUN PAUL</description>
</item>
<item>
<title>B-10: 跑馬地 / HAPPY VALLEY</title>
<link>https://hong-kong-districts-info.github.io/dc/b-10/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-10/</guid>
<description>張嘉莉/CHEUNG CLARA</description>
</item>
<item>
<title>B-11: 司徒拔道 / STUBBS ROAD</title>
<link>https://hong-kong-districts-info.github.io/dc/b-11/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-11/</guid>
<description>黃宏泰/WONG WANG TAI</description>
</item>
<item>
<title>B-12: 修頓 / SOUTHORN</title>
<link>https://hong-kong-districts-info.github.io/dc/b-12/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-12/</guid>
<description>李碧儀/LEE PIK YEE</description>
</item>
<item>
<title>B-13: 大佛口 / TAI FAT HAU</title>
<link>https://hong-kong-districts-info.github.io/dc/b-13/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/b-13/</guid>
<description>梁柏堅/LEUNG PAK KIN</description>
</item>
<item>
<title>C-01: 太古城西 / TAI KOO SHING WEST</title>
<link>https://hong-kong-districts-info.github.io/dc/c-01/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-01/</guid>
<description><p>趙家賢/CHIU KA YIN ANDREW</p>
<p>(DR ANDREW CHIU</p>
</description>
</item>
<item>
<title>C-02: 太古城東 / TAI KOO SHING EAST</title>
<link>https://hong-kong-districts-info.github.io/dc/c-02/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-02/</guid>
<description>王振星/WONG CHUN SING PATRICK</description>
</item>
<item>
<title>C-03: 鯉景灣 / LEI KING WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-03/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-03/</guid>
<description>韋少力/WEI SIU LIK ALICE</description>
</item>
<item>
<title>C-04: 西灣河 / SAI WAN HO</title>
<link>https://hong-kong-districts-info.github.io/dc/c-04/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-04/</guid>
<description>麥德正/MAK TAK CHING</description>
</item>
<item>
<title>C-05: 愛秩序灣 / ALDRICH BAY</title>
<link>https://hong-kong-districts-info.github.io/dc/c-05/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-05/</guid>
<description>蘇逸恒/SO YAT HANG</description>
</item>
<item>
<title>C-06: 筲箕灣 / SHAUKEIWAN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-06/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-06/</guid>
<description>梁詠詩/LEUNG WING SZE</description>
</item>
<item>
<title>C-07: 阿公岩 / A KUNG NGAM</title>
<link>https://hong-kong-districts-info.github.io/dc/c-07/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-07/</guid>
<description>郭志聰/KWOK CHI CHUNG</description>
</item>
<item>
<title>C-08: 杏花邨 / HENG FA CHUEN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-08/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-08/</guid>
<description>黃宜/WONG YI CHRISTINE</description>
</item>
<item>
<title>C-09: 翠灣 / TSUI WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-09/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-09/</guid>
<description>古桂耀/WONG YI CHRISTINE</description>
</item>
<item>
<title>C-10: 欣藍 / YAN LAM</title>
<link>https://hong-kong-districts-info.github.io/dc/c-10/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-10/</guid>
<description>李鳳琼/ISHIGAMI LEE FUNG KING ALICE</description>
</item>
<item>
<title>C-11: 小西灣 / SIU SAI WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-11/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-11/</guid>
<description>陳榮泰/CHAN WING TAI</description>
</item>
<item>
<title>C-12: 景怡 / KING YEE</title>
<link>https://hong-kong-districts-info.github.io/dc/c-12/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-12/</guid>
<description>曾因瑩/TSANG YAN YING</description>
</item>
<item>
<title>C-13: 環翠 / WAN TSUI</title>
<link>https://hong-kong-districts-info.github.io/dc/c-13/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-13/</guid>
<description>吳卓燁/NG CHEUK IP</description>
</item>
<item>
<title>C-14: 翡翠 / FEI TSUI</title>
<link>https://hong-kong-districts-info.github.io/dc/c-14/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-14/</guid>
<description>黎志強/LAI CHI KEONG JOSEPH</description>
</item>
<item>
<title>C-15: 柏架山 / MOUNT PARKER</title>
<link>https://hong-kong-districts-info.github.io/dc/c-15/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-15/</guid>
<description><p>李清霞/LEE CHING HAR</p>
<p>(ANNIE)</p>
</description>
</item>
<item>
<title>C-16: 寶馬山 / BRAEMAR HILL</title>
<link>https://hong-kong-districts-info.github.io/dc/c-16/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-16/</guid>
<description>阮建中/YUEN KIN CHUNG KENNY</description>
</item>
<item>
<title>C-17: 炮台山 / FORTRESS HILL</title>
<link>https://hong-kong-districts-info.github.io/dc/c-17/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-17/</guid>
<description>陳嘉佑/CHAN JASON KA YAU</description>
</item>
<item>
<title>C-18: 城市花園 / CITY GARDEN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-18/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-18/</guid>
<description>仇栩欣/CHAU HUI YAN</description>
</item>
<item>
<title>C-19: 和富 / PROVIDENT</title>
<link>https://hong-kong-districts-info.github.io/dc/c-19/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-19/</guid>
<description>郭偉强/KWOK WAI KEUNG</description>
</item>
<item>
<title>C-20: 堡壘 / FORT STREET</title>
<link>https://hong-kong-districts-info.github.io/dc/c-20/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-20/</guid>
<description><p>傅佳琳/FU KAI LAM</p>
<p>(KARRINE)</p>
</description>
</item>
<item>
<title>C-21: 錦屏 / KAM PING</title>
<link>https://hong-kong-districts-info.github.io/dc/c-21/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-21/</guid>
<description>李予信/LEE YUE SHUN</description>
</item>
<item>
<title>C-22: 丹拿 / TANNER</title>
<link>https://hong-kong-districts-info.github.io/dc/c-22/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-22/</guid>
<description>鄭達鴻/CHENG TAT HUNG</description>
</item>
<item>
<title>C-23: 健康村 / HEALTHY VILLAGE</title>
<link>https://hong-kong-districts-info.github.io/dc/c-23/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-23/</guid>
<description>裴自立/PUI JAMES CHI LAP</description>
</item>
<item>
<title>C-24: 鰂魚涌 / QUARRY BAY</title>
<link>https://hong-kong-districts-info.github.io/dc/c-24/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-24/</guid>
<description>陳寶琼/CHAN PO KING</description>
</item>
<item>
<title>C-25: 南豐 / NAM FUNG</title>
<link>https://hong-kong-districts-info.github.io/dc/c-25/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-25/</guid>
<description>張國昌/CHEUNG KWOK CHEONG</description>
</item>
<item>
<title>C-26: 康怡 / KORNHILL</title>
<link>https://hong-kong-districts-info.github.io/dc/c-26/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-26/</guid>
<description><p>魏志豪/NGAI CHI HO</p>
<p>(DEREK)</p>
</description>
</item>
<item>
<title>C-27: 康山 / KORNHILL GARDEN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-27/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-27/</guid>
<description>梁兆新/LEUNG SIU SUN</description>
</item>
<item>
<title>C-28: 興東 / HING TUNG</title>
<link>https://hong-kong-districts-info.github.io/dc/c-28/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-28/</guid>
<description>張振傑/CHEUNG CHUN KIT</description>
</item>
<item>
<title>C-29: 下耀東 / LOWER YIU TUNG</title>
<link>https://hong-kong-districts-info.github.io/dc/c-29/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-29/</guid>
<description>何偉倫/HO WAI LUN</description>
</item>
<item>
<title>C-30: 上耀東 / UPPER YIU TUNG</title>
<link>https://hong-kong-districts-info.github.io/dc/c-30/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-30/</guid>
<description>周卓奇/CHOW CHEUK KI</description>
</item>
<item>
<title>C-31: 興民 / HING MAN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-31/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-31/</guid>
<description>謝妙儀/TSE MIU YEE</description>
</item>
<item>
<title>C-32: 樂康 / LOK HONG</title>
<link>https://hong-kong-districts-info.github.io/dc/c-32/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-32/</guid>
<description><p>曾健成/TSANG KIN SHING</p>
<p>(BULL)</p>
</description>
</item>
<item>
<title>C-33: 翠德 / TSUI TAK</title>
<link>https://hong-kong-districts-info.github.io/dc/c-33/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-33/</guid>
<description>蔡志強/CHOI CHI KEUNG PETER</description>
</item>
<item>
<title>C-34: 漁灣 / YUE WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/c-34/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-34/</guid>
<description>徐子見/CHUI CHI KIN</description>
</item>
<item>
<title>C-35: 佳曉 / KAI HIU</title>
<link>https://hong-kong-districts-info.github.io/dc/c-35/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/c-35/</guid>
<description>黎梓欣/LAI TSZ YAN</description>
</item>
<item>
<title>D-01: 香港仔 / ABERDEEN</title>
<link>https://hong-kong-districts-info.github.io/dc/d-01/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-01/</guid>
<description>黃銳熺/WONG YUI HEI ANGUS</description>
</item>
<item>
<title>D-02: 鴨脷洲邨 / AP LEI CHAU ESTATE</title>
<link>https://hong-kong-districts-info.github.io/dc/d-02/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-02/</guid>
<description>林玉珍/LAM YUK CHUN</description>
</item>
<item>
<title>D-03: 鴨脷洲北 / AP LEI CHAU NORTH</title>
<link>https://hong-kong-districts-info.github.io/dc/d-03/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-03/</guid>
<description>陳炳洋/CHAN PING YEUNG</description>
</item>
<item>
<title>D-04: 利東一 / LEI TUNG I</title>
<link>https://hong-kong-districts-info.github.io/dc/d-04/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-04/</guid>
<description>陳欣兒/CHAN YAN YI</description>
</item>
<item>
<title>D-05: 利東二 / LEI TUNG II</title>
<link>https://hong-kong-districts-info.github.io/dc/d-05/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-05/</guid>
<description>羅健熙/LO KIN HEI</description>
</item>
<item>
<title>D-06: 海怡東 / SOUTH HORIZONS EAST</title>
<link>https://hong-kong-districts-info.github.io/dc/d-06/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-06/</guid>
<description>俞竣晞/YU CHUN HEI JAMES</description>
</item>
<item>
<title>D-07: 海怡西 / SOUTH HORIZONS WEST</title>
<link>https://hong-kong-districts-info.github.io/dc/d-07/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-07/</guid>
<description>林浩波/LAM HO POR KELVIN</description>
</item>
<item>
<title>D-08: 華貴 / WAH KWAI</title>
<link>https://hong-kong-districts-info.github.io/dc/d-08/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-08/</guid>
<description>潘秉康/POON PING HONG</description>
</item>
<item>
<title>D-09: 華富南 / WAH FU SOUTH</title>
<link>https://hong-kong-districts-info.github.io/dc/d-09/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-09/</guid>
<description>黎熙琳/LI SHEE LIN</description>
</item>
<item>
<title>D-10: 華富北 / WAH FU NORTH</title>
<link>https://hong-kong-districts-info.github.io/dc/d-10/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-10/</guid>
<description>嚴駿豪/YIM CHUN HO</description>
</item>
<item>
<title>D-11: 薄扶林 / POKFULAM</title>
<link>https://hong-kong-districts-info.github.io/dc/d-11/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-11/</guid>
<description>司馬文/ZIMMERMAN PAULUS JOHANNES</description>
</item>
<item>
<title>D-12: 置富 / CHI FU</title>
<link>https://hong-kong-districts-info.github.io/dc/d-12/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-12/</guid>
<description>林德和/LAM ANDREW TAK WO</description>
</item>
<item>
<title>D-13: 田灣 / CHI FU</title>
<link>https://hong-kong-districts-info.github.io/dc/d-13/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-13/</guid>
<description>袁嘉蔚/YUEN KA WAI TIFFANY</description>
</item>
<item>
<title>D-14: 石漁 / SHEK YUE</title>
<link>https://hong-kong-districts-info.github.io/dc/d-14/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-14/</guid>
<description>陳衍冲/CHAN HIN CHUNG</description>
</item>
<item>
<title>D-15: 黃竹坑 / WONG CHUK HANG</title>
<link>https://hong-kong-districts-info.github.io/dc/d-15/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-15/</guid>
<description>徐遠華/TSUI YUEN WA</description>
</item>
<item>
<title>D-16: 海灣 / BAYS AREA</title>
<link>https://hong-kong-districts-info.github.io/dc/d-16/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-16/</guid>
<description><p>梁進/LEUNG CHUN</p>
<p>(JONATHAN)</p>
</description>
</item>
<item>
<title>D-17: 赤柱及石澳 / STANLEY & SHEK O</title>
<link>https://hong-kong-districts-info.github.io/dc/d-17/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/d-17/</guid>
<description><p>彭卓棋/PANG CHEUK KEI</p>
<p>(MICHAEL)</p>
</description>
</item>
<item>
<title>E-01: 尖沙咀西 / TSIM SHA TSUI WEST</title>
<link>https://hong-kong-districts-info.github.io/dc/e-01/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-01/</guid>
<description><p>陳嘉朗/CHAN KA LONG</p>
<p>(LESLIE CHAN)</p>
</description>
</item>
<item>
<title>E-02: 九龍站 / KOWLOON STATION</title>
<link>https://hong-kong-districts-info.github.io/dc/e-02/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-02/</guid>
<description><p>孔昭華/HUNG CHIU WAH</p>
<p>(DEREK)</p>
</description>
</item>
<item>
<title>E-03: 佐敦西 / JORDAN WEST</title>
<link>https://hong-kong-districts-info.github.io/dc/e-03/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-03/</guid>
<description>朱慧芳/TSUI WAI FONG NATALIE</description>
</item>
<item>
<title>E-04: 油麻地南 / YAU MA TEI SOUTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-04/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-04/</guid>
<description><p>胡穗珊/WU SUI SHAN</p>
<p>(SUZANNE)</p>
</description>
</item>
<item>
<title>E-05: 富榮 / CHARMING</title>
<link>https://hong-kong-districts-info.github.io/dc/e-05/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-05/</guid>
<description>李偉峰/LEE WAI FUNG</description>
</item>
<item>
<title>E-06: 旺角西 / MONG KOK WEST</title>
<link>https://hong-kong-districts-info.github.io/dc/e-06/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-06/</guid>
<description>許德亮/HUI TAK LEUNG</description>
</item>
<item>
<title>E-07: 富柏 / FU PAK</title>
<link>https://hong-kong-districts-info.github.io/dc/e-07/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-07/</guid>
<description>余德寶/YU TAK PO</description>
</item>
<item>
<title>E-08: 奧運 / OLYMPIC</title>
<link>https://hong-kong-districts-info.github.io/dc/e-08/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-08/</guid>
<description>涂謹申/TO KUN SUN JAMES</description>
</item>
<item>
<title>E-09: 櫻桃 / CHERRY</title>
<link>https://hong-kong-districts-info.github.io/dc/e-09/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-09/</guid>
<description>鍾澤暉/CHUNG CHAK FAI</description>
</item>
<item>
<title>E-10: 大角咀南 / TAI KOK TSUI SOUTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-10/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-10/</guid>
<description>曾自鳴/TSANG TSZ MING</description>
</item>
<item>
<title>E-11: 大角咀北 / TAI KOK TSUI NORTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-11/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-11/</guid>
<description>李傲然/LI OWAN</description>
</item>
<item>
<title>E-12: 大南 / TAI NAN</title>
<link>https://hong-kong-districts-info.github.io/dc/e-12/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-12/</guid>
<description>李國權/LEE KWOK KUEN</description>
</item>
<item>
<title>E-13: 旺角北 / MONG KOK NORTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-13/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-13/</guid>
<description>蕭德健/SIU TAK KIN LUCIFER</description>
</item>
<item>
<title>E-14: 旺角東 / MONG KOK EAST</title>
<link>https://hong-kong-districts-info.github.io/dc/e-14/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-14/</guid>
<description><p>林兆彬/LAM SIU PAN</p>
<p>(BEN)</p>
</description>
</item>
<item>
<title>E-15: 旺角南 / MONG KOK SOUTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-15/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-15/</guid>
<description>朱江瑋/CHU KONG WAI</description>
</item>
<item>
<title>E-16: 油麻地北 / YAU MA TEI NORTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-16/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-16/</guid>
<description>林健文/LAM KIN MAN</description>
</item>
<item>
<title>E-17: 尖東及京士柏 / EAST TSIM SHA TSUI & KING'S PARK</title>
<link>https://hong-kong-districts-info.github.io/dc/e-17/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-17/</guid>
<description><p>朱子洛/CHU TSZ LOK</p>
<p>(LEO)</p>
</description>
</item>
<item>
<title>E-18: 佐敦北 / JORDAN NORTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-18/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-18/</guid>
<description><p>何富榮/HO FU WING</p>
<p>(FRANK)</p>
</description>
</item>
<item>
<title>E-19: 佐敦南 / JORDAN SOUTH</title>
<link>https://hong-kong-districts-info.github.io/dc/e-19/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-19/</guid>
<description>陳梓維/CHAN TSZ WAI</description>
</item>
<item>
<title>E-20: 尖沙咀中 / TSIM SHA TSUI CENTRAL</title>
<link>https://hong-kong-districts-info.github.io/dc/e-20/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/e-20/</guid>
<description>賀卓軒/HO CHEUK HIN</description>
</item>
<item>
<title>F-01: 寶麗 / PO LAI</title>
<link>https://hong-kong-districts-info.github.io/dc/f-01/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/f-01/</guid>
<description>麥偉明/MAK WAI MING</description>
</item>
<item>
<title>F-02: 長沙灣 / CHEUNG SHA WAN</title>
<link>https://hong-kong-districts-info.github.io/dc/f-02/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/f-02/</guid>
<description>李文浩/LEE MAN HO LEOS</description>
</item>
<item>
<title>F-03: 南昌北 / NAM CHEONG NORTH</title>
<link>https://hong-kong-districts-info.github.io/dc/f-03/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/f-03/</guid>
<description>劉家衡/LAO KA HANG</description>
</item>
<item>
<title>F-04: 石硤尾 / SHEK KIP MEI</title>
<link>https://hong-kong-districts-info.github.io/dc/f-04/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/f-04/</guid>
<description>冼錦豪/SIN KAM HO (JEFFREY)</description>
</item>
<item>
<title>F-05: 南昌東 / NAM CHEONG EAST</title>
<link>https://hong-kong-districts-info.github.io/dc/f-05/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/f-05/</guid>
<description>何啟明/HO KAI MING KALVIN</description>
</item>
<item>
<title>F-06: 南昌南 / NAM CHEONG SOUTH</title>
<link>https://hong-kong-districts-info.github.io/dc/f-06/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/f-06/</guid>
<description>李庭豐/LI TING FUNG</description>
</item>
<item>
<title>F-07: 南昌中 / NAM CHEONG CENTRAL</title>
<link>https://hong-kong-districts-info.github.io/dc/f-07/</link>
<pubDate>Thu, 15 Oct 2020 00:00:00 +0000</pubDate>
<guid>https://hong-kong-districts-info.github.io/dc/f-07/</guid>
<description>劉佩玉/LAU PUI YUK</description>