/var/www/hkosl.com/ifapc/html_20210817/IFAPC2021/application/logs/post/2020-08-06.php


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
07:08:23 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)- 
array(0) {
}

09:53:36 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36- 
array(17) {
  ["category_id"]=>
  string(1) "1"
  ["nominee_title"]=>
  string(2) "ms"
  ["nominee_name_tc"]=>
  string(9) "鄧美華"
  ["nominee_name_en"]=>
  string(12) "Tang Mei Wah"
  ["nominee_email"]=>
  string(19) "tangmavis@tunbow.hk"
  ["nominee_tel"]=>
  string(14) "+852 9213 3845"
  ["company_name"]=>
  string(24) "登輝控股有限公司"
  ["company_position"]=>
  string(12) "執行董事"
  ["nominator_title"]=>
  string(4) "miss"
  ["nominator_name_tc"]=>
  string(9) "蔣麗苓"
  ["nominator_name_en"]=>
  string(22) "Chiang Lai Ling, Maria"
  ["nominator_company"]=>
  string(24) "震堅實業有限公司"
  ["nominator_job_title"]=>
  string(15) "董事總經理"
  ["nominator_email"]=>
  string(28) "mariachiang@chenchien.com.hk"
  ["nominator_tel"]=>
  string(14) "+852 9023 3361"
  ["nominator_address"]=>
  string(60) "香港新界粉嶺安樂門街17號基力工業大廈410B室"
  ["nominator_reason"]=>
  string(4319) "我從事及推動工業多年,見證了香港工業的歷史。科技日新月異讓工業不斷進升至更高水平,其中小家電工業競爭更為激烈,要在國際工業市場佔一地位,需要一位具備多項優秀條件的工業家領導,開拓出自身獨特的競爭優勢,我認為我所認識的鄧美華小姐具備這些條件。欣賞她具有作為工業家的超凡毅力、對工作的熱誠、具超卓領導才能和遠見、終身學習的精神,以及對推動本地工業發展的貢獻非常突出。我誠意推薦鄧小姐提名「大灣區傑出女企業家獎」。

鄧小姐先多年來為其服務的登輝控股有限公司在多方面均貢獻良多,令集團由原本只有狹窄產品路線,以 OEM 業務為主的廠家,銳變成為一間具備自主產品(ODM)研發能力、專營中高端產品、擁有超過50項技術專利、具多元化產品類型的先進產品發展商、工業設計者及製造商。經過多年努力,即使在充滿挑戰及競爭氛圍下,亦能突圍而出,成功讓集團轉型,促使集團於2019年成為香港聯交所主板的上市公司。我非常欣賞鄧小姐具有作為工業家必備的「毅力」,充份展現於產品研發方面。為了改善蒸發器的缺點,鄧小姐研發團隊及市場部人員積極進行調研、技術研究,走訪不同市場及採訪各個客戶意見,從減低成本開始著手,放棄傳統以不銹鋼製造的蒸發器,採用鋁壓鑄製造蒸發器,經過多次設計改良以及反覆初辦測試,終於在2010年成功研發出以鋁壓鑄製造蒸發器的核心技術,成為全球第一家生產並銷售鋁壓鑄蒸發器蒸氣熨斗的供應商。鄧小姐不遺餘力,驅使集團轉化成具自我研發能力,為集團開創更多元化的產品組合。此外,鄧小姐一直著重穩固成熟主流的歐美市場,並且早著先鞭開發新興潛力市場,如俄羅斯、波蘭、土耳其、墨西哥、巴西、前南斯拉夫共和國等新興市場,大大擴大營銷網絡,讓營利提升至可觀水平。鄧小姐的市場觸覺以及大膽創新的思維,不但改變了消費者的消費模式,更改變了國際市場的競爭生態,帶領集團步向主導市場的地位。

與時並進,裝備自己,是現代工業家必備精神。鄧小姐多年來從不間斷學習新知識,認識新科技,並將所學融會貫通注入工業發展,克服種種挑戰。我亦欣賞鄧小姐推動科技應用,創立不同自動化銷售數據分析,以優化運作流程,令管理變得省時及高效。在生產作業方面,鄧小姐也致力推動人工智能、RPA及智能自動化生產製造系統 (工業4.0),以提高產能及作業水平。鄧小姐亦善於建立及領導共融奮進的團隊,培育新一代的工業家、集團的繼承者,讓累積的經驗與智慧得以薪火相傳,故此她積極讓同事參與各種比賽以擴濶視野、增長新知識,如鄧小姐去年就帶領其公司團隊參加香港創新科技及製造業聯合總會(FITMI)舉辦的「亞洲國際創新發明大獎2019」並贏得『創新智慧熨斗發明大獎』。鄧小姐努力建構部門間緊密溝通的互助文化,以產生創新思維的協同效應,致令集團能在多方面及各層面持續推陳出新,傲視同儕。

在推動本地行業發展方面,鄧小姐表現得非常積極。近年更配合香港政府發展創新科技方向,建立以香港為基地的研發中心,培育本地畢業研發專才,鼓勵創新以及產品研發和生產一體化。

鄧小姐多年內熱心於社會公益事務,重視社區及慈善工作,每年捐款及捐贈產品於慈善機構,如公益金、仁愛堂等,經常探訪老人院舍,參加公益金慈善籌款百萬行,支持及幫助社會弱勢社群,積極回饋社會。除了自身投入各種社會義務外,鄧小姐亦倡導集團履行不同的企業社會責任,透過提供短期實習機會,例如公司註冊處的「友商有良」及僱員再培訓局的「後50.實習生計劃」等,幫助本地畢業生以至已退休但仍有意重投社會的人士,掌握就業市場的現況,裝備工作技能和調整心態,以投入市場。

"
}

10:06:42 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36- 
array(42) {
  ["category_id"]=>
  string(1) "1"
  ["nominee_title"]=>
  string(2) "ms"
  ["nominee_name_tc"]=>
  string(9) "鄧美華"
  ["nominee_name_en"]=>
  string(12) "Tang Mei Wah"
  ["nominee_birth_date"]=>
  string(10) "1974-05-15"
  ["nominee_birth_place"]=>
  string(6) "香港"
  ["nominee_email"]=>
  string(19) "tangmavis@tunbow.hk"
  ["nominee_tel"]=>
  string(14) "+852 9213 3845"
  ["nominee_wechat"]=>
  string(13) "Mavis92133845"
  ["nominee_assistant_title"]=>
  string(2) "ms"
  ["nominee_assistant_name_tc"]=>
  string(9) "范素儀"
  ["nominee_assistant_name_en"]=>
  string(10) "Fan So Yee"
  ["nominee_assistant_email"]=>
  string(16) "fanzoe@tunbow.hk"
  ["nominee_assistant_tel"]=>
  string(14) "+852 2751 2049"
  ["company_name"]=>
  string(24) "登輝控股有限公司"
  ["company_address"]=>
  string(53) "香港九龍觀塘興業街15號中美中心A座10樓"
  ["company_position"]=>
  string(12) "執行董事"
  ["company_position_years"]=>
  string(1) "3"
  ["company_is_founder"]=>
  string(1) "0"
  ["company_is_family_business"]=>
  string(1) "0"
  ["company_founded_year"]=>
  string(4) "2017"
  ["company_industry"]=>
  string(9) "家電業"
  ["company_website"]=>
  string(15) "www.townray.com"
  ["company_is_listed"]=>
  string(1) "1"
  ["company_stock_code"]=>
  string(4) "1692"
  ["organization_name"]=>
  array(1) {
    [0]=>
    string(18) "東保慈善基金"
  }
  ["service_position"]=>
  array(1) {
    [0]=>
    string(6) "成員"
  }
  ["participation_year"]=>
  array(1) {
    [0]=>
    string(13) "2010年至今"
  }
  ["involvement"]=>
  array(1) {
    [0]=>
    string(42) "每年捐款及捐贈產品於慈善機構"
  }
  ["achievement"]=>
  array(1) {
    [0]=>
    string(295) "東保慈善基金5個主要合作夥伴是:仁愛堂,玄圓學院,香港青年航空學會(HKYAA),香港公益金及獅子會。未來,除了預定的捐款名單外,東保慈善基金管理人還會繼續評核各個慈善機構捐贈請求,希望讓更有需要的人受惠。"
  }
  ["narrative_enterprise"]=>
  string(2533) "•    企業的歷史背景、策略和/或業務發展思路
    登輝控股有限公司(下稱「登輝」)為香港聯交所主板上市公司(股份代號: 1692),是一家專營家電及廚電的設計、技術開發及生產的製造商及供應商。

    登輝著重產品創新及顧客體驗,秉持「五個最佳」的企業理念,即至臻溝通、至臻服務、至臻品質、至臻設計及至臻價值,積極進取,致力保持主導市場地位。

    核心技術方面的優勢讓登輝成功扭轉以往單一以OEM為主的狹窄業務模式,發展成OEM與ODM兼備、專營中高端產品、擁有超過50項技術專利、具多元化產品類型的先進產品發展商、工業設計者及製造商。同時登輝亦成功走向垂直製造模式,令供應鏈更穩定、生產流程更具靈活性、生產成本降低,更具市場競爭力。

    升級轉型不但提高了集團的競爭力,讓營利提升至可觀水平,更促使集團戰勝種種挑戰及競爭,於 2019年成為香港聯交所主板上市公司。

•    企業的主要發展項目及可持續性
    憑藉多年的經營歷史,登輝在與壓力、體積及溫度、蒸氣、電機、電子和電路相關的技術領域積累了豐富的知識及經驗,擁有強大的設計和研發能力。

    由此,登輝開發及應用了各個方面的技術於產品上,包括熱動力學、泵壓力、電機驅動、咖啡沖泡系統、電子控制和使用介面控制。

    登輝在電熱家用電器生產過程中應用了各種技術和工藝,如注塑成型、金屬沖壓、鋁壓鑄、熱板╱感應焊接、自動靜電噴塗系統、自動點膠系統、自動蒸氣催化噴射系統、激光蝕刻和自動測試系統。

•    對企業未來發展的願景和規劃
    集團的未來發展方向,將集中在提升生產設施及產能、加強產品設計和開發能力以拓展產品範圍、擴大客戶群以及升級資訊技術系統。

    登輝將致力走向人工智能、RPA及智能自動化生產製造系統 (工業4.0),以提高產能及作業水平,擴大惠州工廠的生產規模,並加強集團發展的可持續性。

    今年,登輝在香港開設獨立產品研發中心,聘用了10位本地研發專才,預期其優勢可加強集團的產品設計和開發能力,開拓更能改善人們生活的產品。登輝已計劃了未來兩年開發至少30款ODM新產品,目標是將團隊擴大到40人。
"
  ["narrative_industry"]=>
  string(2238) "•    對所屬業界的進一步發展有積極貢獻
    登輝一直不為餘力為推動本地工業發展作出貢獻。為配合香港政府發展創新科技的方向,培育香港新生代,承傳香港工業發展,登輝建立了一個以香港為基地的專業研發中心。成功聘用了一班年青本地畢業研發專才,注入新動力鼓勵創新。

    登輝深信香港的新一代有創新的開發能力、廣闊的國際視野以及豐富的技術知識,故此登輝致力推動工業年輕化,承傳香港工業精神。

•    創建及推動新產品/服務、開發新市場方面取得驕人成績
    以往全球所有用於泵壓式蒸氣熨斗的蒸發器均以不銹鋼製造,成本高,預熱時間長,而且使用時產生的壓力對用家有潛在風險。

    為了改善蒸發器的缺點,登輝的研發團隊及市場部人員積極進行調研、技術研究,走訪不同市場及採訪各個客戶意見,從減低成本開始著手,放棄傳統以不銹鋼製造的蒸發器,採用鋁壓鑄製造蒸發器,經過多次設計改良以及反覆初辦測試,終於在2010年成功研發出以鋁壓鑄製造蒸發器的核心技術,成為全球第一家生產並銷售鋁壓鑄蒸發器蒸氣熨斗的供應商。

    鋁壓鑄蒸發器比傳統不銹鋼蒸發器的成本可減少約50%,蒸氣量亦由原本的每分鐘70-80 克增至約100克;預熱時間由4分鐘減至少於1分鐘,最重要是鋁壓鑄蒸發器可以解決傳統不銹鋼蒸發器的高壓高温問題,使用時可以隨時注水入蒸氣熨斗,大大提升蒸氣熨斗的安全性。

    有了是次成功經驗後,登輝以同一創意方程式發展出其他新核心技術應用於不同類型之產品上,如“即熱式”電蒸鍋、煮湯機、咖啡機等,踏進煮食類家電市場,同時躍升衣物護理產品的技術及性能,大大加強集團的產品範圍及競爭力,使集團成為於亞洲首間研發及製造同類型具國際級水平產品的工業家,帶領集團達致更高的市場地位。

    於2019年更於FITMI舉辦的「亞洲國際創新發明大獎2019」中贏得『創新智慧熨斗發明大獎』。
"
  ["narrative_contribution"]=>
  string(1091) "•    展示如何配合大灣區的發展而創造互惠互利的商業模式(包括經濟發展、青年及人才培訓、創新科技、社會聯繫)
    登輝讓其高級管理層積極參與各工業團體及商會,並積極協辦及參與工業團體及商會的研討及交流活動,藉以匯聚香港和國內外工業行業的力量,加強科技資訊、技術及經驗的交流, 鼓勵創意及創新,矢志提升中港兩地製造業的科技水平。

    藉著工業團體及商會的力量向香港政府反映業界從(1)基礎設施、(2)資金、(3)技術和(4)人才培訓四大方面的需求,讓香港工業走向高端及智能製造,運用新科技如雲端科技和加入工業4.0元素,克服土地及人力成本等問題,吸引高產值工業回流香港。

    透過提供短期實習機會,例如「友商友良」及 僱員再培訓局 的「後50.實習生計劃」等,讓本地畢業生以致已退休但仍有就業意欲及能力的人士,掌握就業市場的現況,裝備工作技能和調整心態,以投入市場。
"
  ["narrative_corporate"]=>
  string(773) "•    候選人如何回饋社區?
    登輝透過其子公司自2010年起成立東保慈善基金,每年捐款及捐贈產品於慈善機構。

    現時,東保慈善基金5個主要合作夥伴是:仁愛堂,玄圓學院,香港青年航空學會(HKYAA),香港公益金及獅子會。

    未來,除了預定的捐款名單外,東保慈善基金管理人還會繼續評核各個慈善機構捐贈請求,希望讓更有需要的人受惠。

•    如何積極在公司推動社會企業責任?
    物資捐獻外,登輝更組織員工透過參與各慈善機構舉辦的義工服務,如探訪老人院舍,參加公益金慈善籌款百萬行等,直接關懷受惠人士,支持及幫助社會弱勢社群,積極回饋社會。
"
  ["narrative_personal"]=>
  string(1635) "•    候選人曾獲頒授獎的獎項或勳銜
1    2018    傑出商界女領袖奬 2018 – 鄧美華女士    香港商報
2    2020    人才企業嘉許計劃- 人才企業    僱員再培訓局
3    2020    最佳僱主奬 2020    騰龍青年商會

•    候選人公司曾獲頒授獎的獎項或勳銜
1    2018    Best Presenter Award - Innovation Forum 2018 亞太策略研究所
2    2019     亞洲國際創新發明大獎2019 — 銀獎    香港創新科技及製造業聯合總會
3    2019     亞洲國際創新發明大獎2019 —創新智能熨斗發明大獎 —特別大獎    香港創新科技及製造業聯合總會
4    2020    商界顯關懹 2009/2021    香港社會服務聯會
5    2020    環保傑出伙伴 EcoPartner    中國銀行

•    媒體對候選人的相關報導
商報 2018年12月19日 
http://today.hkcd.com/content/2018-12/19/content_1115336.html

FITMI 創科.薈萃 2019年12月
https://www.fitmi.org.hk/Mobile/Publication/detail/id/4.html

頭條日報 2020年3月24日
https://hd.stheadline.com/news/realtime/fin/1730478/%E5%8D%B3%E6%99%82-%E8%B2%A1%E7%B6%93-1692-%E7%99%BB%E8%BC%9D%E6%93%AC%E6%98%8E%E5%B9%B4%E5%BA%95%E5%89%8D%E6%8E%A830%E6%AC%BE%E7%94%A2%E5%93%81-%E6%8E%A2%E8%A8%8E%E6%93%B4%E5%B1%95%E4%B8%AD%E5%9C%8B%E7%AD%89%E5%B8%82%E5%A0%B4

星島日報  2020年3月24日
https://std.stheadline.com/realtime/article/1230478/%E5%8D%B3%E6%99%82-%E8%B2%A1%E7%B6%93-1692-%E7%99%BB%E8%BC%9D%E6%93%AC%E6%98%8E%E5%B9%B4%E5%BA%95%E5%89%8D%E6%8E%A830%E6%AC%BE%E7%94%A2%E5%93%81-%E6%8E%A2%E8%A8%8E%E6%93%B4%E5%B1%95%E4%B8%AD%E5%9C%8B%E7%AD%89%E5%B8%82%E5%A0%B4

am730 2020年7月15日

經濟日報2020年7月21日
"
  ["terms_is_attend"]=>
  string(2) "on"
  ["terms_is_declaration"]=>
  string(2) "on"
  ["support_units"]=>
  string(33) "香港模具及產品科技協會"
  ["nominator_title"]=>
  string(4) "miss"
  ["nominator_name_tc"]=>
  string(9) "蔣麗苓"
  ["nominator_name_en"]=>
  string(22) "Chiang Lai Ling, Maria"
  ["nominator_email"]=>
  string(28) "mariachiang@chenchien.com.hk"
}

13:55:40 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36- 
array(34) {
  ["category_id"]=>
  string(1) "3"
  ["nominee_name_tc"]=>
  string(0) ""
  ["nominee_name_en"]=>
  string(0) ""
  ["nominee_birth_date"]=>
  string(0) ""
  ["nominee_birth_place"]=>
  string(0) ""
  ["nominee_email"]=>
  string(0) ""
  ["nominee_tel"]=>
  string(0) ""
  ["nominee_wechat"]=>
  string(0) ""
  ["nominee_assistant_name_tc"]=>
  string(0) ""
  ["nominee_assistant_name_en"]=>
  string(0) ""
  ["nominee_assistant_email"]=>
  string(0) ""
  ["nominee_assistant_tel"]=>
  string(0) ""
  ["company_name"]=>
  string(0) ""
  ["company_address"]=>
  string(0) ""
  ["company_position"]=>
  string(0) ""
  ["company_position_years"]=>
  string(0) ""
  ["company_founded_year"]=>
  string(0) ""
  ["company_industry"]=>
  string(0) ""
  ["company_website"]=>
  string(0) ""
  ["company_stock_code"]=>
  string(0) ""
  ["organization_name"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["service_position"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["participation_year"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["involvement"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["achievement"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["narrative_enterprise"]=>
  string(0) ""
  ["narrative_industry"]=>
  string(0) ""
  ["narrative_contribution"]=>
  string(0) ""
  ["narrative_corporate"]=>
  string(0) ""
  ["narrative_personal"]=>
  string(0) ""
  ["terms_is_attend"]=>
  string(2) "on"
  ["nominator_name_tc"]=>
  string(0) ""
  ["nominator_name_en"]=>
  string(0) ""
  ["nominator_email"]=>
  string(0) ""
}

13:55:48 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36- 
array(34) {
  ["category_id"]=>
  string(1) "3"
  ["nominee_name_tc"]=>
  string(0) ""
  ["nominee_name_en"]=>
  string(0) ""
  ["nominee_birth_date"]=>
  string(0) ""
  ["nominee_birth_place"]=>
  string(0) ""
  ["nominee_email"]=>
  string(0) ""
  ["nominee_tel"]=>
  string(0) ""
  ["nominee_wechat"]=>
  string(0) ""
  ["nominee_assistant_name_tc"]=>
  string(0) ""
  ["nominee_assistant_name_en"]=>
  string(0) ""
  ["nominee_assistant_email"]=>
  string(0) ""
  ["nominee_assistant_tel"]=>
  string(0) ""
  ["company_name"]=>
  string(0) ""
  ["company_address"]=>
  string(0) ""
  ["company_position"]=>
  string(0) ""
  ["company_position_years"]=>
  string(0) ""
  ["company_founded_year"]=>
  string(0) ""
  ["company_industry"]=>
  string(0) ""
  ["company_website"]=>
  string(0) ""
  ["company_stock_code"]=>
  string(0) ""
  ["organization_name"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["service_position"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["participation_year"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["involvement"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["achievement"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["narrative_enterprise"]=>
  string(0) ""
  ["narrative_industry"]=>
  string(0) ""
  ["narrative_contribution"]=>
  string(0) ""
  ["narrative_corporate"]=>
  string(0) ""
  ["narrative_personal"]=>
  string(0) ""
  ["terms_is_attend"]=>
  string(2) "on"
  ["nominator_name_tc"]=>
  string(0) ""
  ["nominator_name_en"]=>
  string(0) ""
  ["nominator_email"]=>
  string(0) ""
}

15:27:11 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36- 
array(39) {
  ["category_id"]=>
  string(1) "3"
  ["nominee_title"]=>
  string(2) "ms"
  ["nominee_name_tc"]=>
  string(9) "楊梓呈"
  ["nominee_name_en"]=>
  string(15) "Yeung Tsz Ching"
  ["nominee_birth_date"]=>
  string(10) "1984-11-23"
  ["nominee_birth_place"]=>
  string(9) "GuangDong"
  ["nominee_email"]=>
  string(21) "Kara.yeung@hkcyia.org"
  ["nominee_tel"]=>
  string(8) "68884938"
  ["nominee_wechat"]=>
  string(0) ""
  ["nominee_assistant_title"]=>
  string(4) "miss"
  ["nominee_assistant_name_tc"]=>
  string(9) "梁詠欣"
  ["nominee_assistant_name_en"]=>
  string(11) "Hanna Leung"
  ["nominee_assistant_email"]=>
  string(22) "hanna.leung@hkcyia.org"
  ["nominee_assistant_tel"]=>
  string(8) "68161884"
  ["company_name"]=>
  string(43) "Hong Kong Yacht Services Management Limited"
  ["company_address"]=>
  string(62) "S301, Kai Tak Cruise Terminal, 33 Shing Fung Road, Kowloon Bay"
  ["company_position"]=>
  string(18) "Executive Director"
  ["company_position_years"]=>
  string(1) "4"
  ["company_is_founder"]=>
  string(1) "1"
  ["company_is_family_business"]=>
  string(1) "1"
  ["company_founded_year"]=>
  string(4) "2016"
  ["company_industry"]=>
  string(23) "Cruise & Yacht Industry"
  ["company_website"]=>
  string(2) "NA"
  ["company_is_listed"]=>
  string(1) "0"
  ["company_stock_code"]=>
  string(0) ""
  ["organization_name"]=>
  array(1) {
    [0]=>
    string(45) "Hong Kong Cruise & Yacht Industry Association"
  }
  ["service_position"]=>
  array(1) {
    [0]=>
    string(18) "Executive Director"
  }
  ["participation_year"]=>
  array(1) {
    [0]=>
    string(15) "04/2016-01/2020"
  }
  ["involvement"]=>
  array(1) {
    [0]=>
    string(52) "舉辦國際郵輪服務業資訊日-推動郵輪業"
  }
  ["achievement"]=>
  array(1) {
    [0]=>
    string(0) ""
  }
  ["narrative_enterprise"]=>
  string(0) ""
  ["narrative_industry"]=>
  string(0) ""
  ["narrative_contribution"]=>
  string(0) ""
  ["narrative_corporate"]=>
  string(0) ""
  ["narrative_personal"]=>
  string(0) ""
  ["terms_is_attend"]=>
  string(2) "on"
  ["nominator_name_tc"]=>
  string(0) ""
  ["nominator_name_en"]=>
  string(0) ""
  ["nominator_email"]=>
  string(0) ""
}

16:18:37 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)- 
array(0) {
}

16:46:05 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362- 
array(41) {
  ["category_id"]=>
  string(1) "1"
  ["nominee_title"]=>
  string(2) "ms"
  ["nominee_name_tc"]=>
  string(9) "郭致因"
  ["nominee_name_en"]=>
  string(18) "KWOK CHI YAN GAMMY"
  ["nominee_birth_date"]=>
  string(10) "1961-11-22"
  ["nominee_birth_place"]=>
  string(9) "HONG KONG"
  ["nominee_email"]=>
  string(20) "gammycykwok@herbs.hk"
  ["nominee_tel"]=>
  string(8) "92408189"
  ["nominee_wechat"]=>
  string(0) ""
  ["nominee_assistant_title"]=>
  string(4) "miss"
  ["nominee_assistant_name_tc"]=>
  string(9) "袁泳欣"
  ["nominee_assistant_name_en"]=>
  string(13) "YUEN WING YAN"
  ["nominee_assistant_email"]=>
  string(16) "yanyuen@herbs.hk"
  ["nominee_assistant_tel"]=>
  string(8) "23562811"
  ["company_name"]=>
  string(24) "草姬國際有限公司"
  ["company_address"]=>
  string(68) "香港九龍長沙灣荔枝角道838號勵豐中心23樓2309-2310室"
  ["company_position"]=>
  string(12) "行政總監"
  ["company_position_years"]=>
  string(2) "22"
  ["company_is_founder"]=>
  string(1) "1"
  ["company_is_family_business"]=>
  string(1) "0"
  ["company_founded_year"]=>
  string(4) "1998"
  ["company_industry"]=>
  string(9) "零售業"
  ["company_website"]=>
  string(12) "www.herbs.hk"
  ["company_is_listed"]=>
  string(1) "0"
  ["company_stock_code"]=>
  string(0) ""
  ["organization_name"]=>
  array(16) {
    [0]=>
    string(27) "香港女童軍南區分會"
    [1]=>
    string(27) "中西區文化藝術協會"
    [2]=>
    string(15) "創意創業會"
    [3]=>
    string(45) "國際美容健康總聯合會 - 香港分會"
    [4]=>
    string(27) "香港中山石岐聯誼會"
    [5]=>
    string(27) "中西區文化藝術協會"
    [6]=>
    string(24) "香港長者產業聯會"
    [7]=>
    string(49) "青躍 Teen's Key – 青少女發展網絡 (NGO)"
    [8]=>
    string(15) "創意創業會"
    [9]=>
    string(15) "九龍樂善堂"
    [10]=>
    string(15) "九龍樂善堂"
    [11]=>
    string(15) "創意創業會"
    [12]=>
    string(24) "中國女企業家協會"
    [13]=>
    string(30) "香港商業專業評審中心"
    [14]=>
    string(36) "創意創業會 (城市青年商會)"
    [15]=>
    string(21) "香港中成藥商會"
  }
  ["service_position"]=>
  array(16) {
    [0]=>
    string(12) "名譽會長"
    [1]=>
    string(27) "執行委員及名譽會長"
    [2]=>
    string(6) "會長"
    [3]=>
    string(32) "項目主席(健康營養管理)"
    [4]=>
    string(9) "副主席"
    [5]=>
    string(12) "名譽會長"
    [6]=>
    string(6) "董事"
    [7]=>
    string(6) "董事"
    [8]=>
    string(9) "副會長"
    [9]=>
    string(33) "2017    九龍樂善堂    當年委員"
    [10]=>
    string(12) "當年總理"
    [11]=>
    string(15) "董事兼秘書"
    [12]=>
    string(30) "中國企業創新優秀人物"
    [13]=>
    string(6) "院士"
    [14]=>
    string(6) "董事"
    [15]=>
    string(6) "會董"
  }
  ["participation_year"]=>
  array(16) {
    [0]=>
    string(9) "2020-2022"
    [1]=>
    string(9) "2020-2022"
    [2]=>
    string(9) "2019-2020"
    [3]=>
    string(4) "2020"
    [4]=>
    string(4) "2020"
    [5]=>
    string(9) "2018-2020"
    [6]=>
    string(9) "2018-2019"
    [7]=>
    string(4) "2018"
    [8]=>
    string(9) "2015-2018"
    [9]=>
    string(4) "2017"
    [10]=>
    string(9) "2015-2016"
    [11]=>
    string(9) "2013-2014"
    [12]=>
    string(4) "2010"
    [13]=>
    string(4) "2008"
    [14]=>
    string(9) "2007-2008"
    [15]=>
    string(9) "2007-2008"
  }
  ["involvement"]=>
  array(16) {
    [0]=>
    string(117) "成為香港卓越的國際性青少年團體,致力培養女孩子及青年婦女的個人發展和領導才能。"
    [1]=>
    string(63) "為一非牟利的註冊社團,並本著服務社群的宗旨"
    [2]=>
    string(120) "一個非牟利的團體,致力加強推動香港、中國內地及海外的「創意創業」精神及商務教育。"
    [3]=>
    string(42) "一個領導美麗和健康生活的組織"
    [4]=>
    string(45) "香港三十三個中山社團組合而成。"
    [5]=>
    string(63) "為一非牟利的註冊社團,並本著服務社群的宗旨"
    [6]=>
    string(258) "隨著戰後嬰兒潮世代的年歲增長,全球人口急速老化,養老產業有如雨後春筍,很多先進地區例如美國、英國、日本、台灣、以至中國等也有類似長者產業聯會的商業組織,香港則有待急起直追!"
    [7]=>
    string(81) "一個致力改善香港邊緣年輕女性及青少女處境的註冊慈善機構"
    [8]=>
    string(120) "一個非牟利的團體,致力加強推動香港、中國內地及海外的「創意創業」精神及商務教育。"
    [9]=>
    string(45) "九龍樂善堂是香港的一個慈善機構"
    [10]=>
    string(45) "九龍樂善堂是香港的一個慈善機構"
    [11]=>
    string(120) "一個非牟利的團體,致力加強推動香港、中國內地及海外的「創意創業」精神及商務教育。"
    [12]=>
    string(67) "具有社團法人地位的唯一一家全國性女企業家組織 "
    [13]=>
    string(171) "一所非牟利的專業機構,旨在協助商業服務行業的從業員提升其專業水平,從而獲取認可的專業資格,促進香港商業服務專業化。"
    [14]=>
    string(133) "城市青年商會創立於1981年,為國際青年商會香港總會﹙前身為香港青年商會﹚屬下二十一個商會之一"
    [15]=>
    string(253) "香港中成藥商會係於2002年6月28日註冊成立的行業性商會,成員包括本地中成藥代理批發商、進出口商、製造商及大型零售連鎖集團。會員經營各類中成藥產品達數仟種,在行內具有廣泛的代表"
  }
  ["achievement"]=>
  array(16) {
    [0]=>
    string(96) "讓女孩子及青年婦女發展她們的潛能,使她們成為有責任感的世界公民。"
    [1]=>
    string(108) "在中西區舉辦各類型的文化及藝術活動,藉此培養市民對文化藝術的興趣及參與。"
    [2]=>
    string(171) "大賞嚴謹選出具創意的香港企業,以表揚「創意創業」的肯定,參賽得奬者提供的服務或產品,做到以心為改善社會生活作出貢獻"
    [3]=>
    string(425) "全球共有十多個分會,至今已有三十年歷史,集合美容、美髮、化妝品及保健行業協會的總聯合機構。在韓國、中國、香港特別行政區、澳門特別行政區、日本、臺灣地區、美國、英國、馬來西亞、菲律賓、泰國、新加坡、越南等都設有分會,下設有 180 個各類行業分會, 1000 多家企業,是國際規模最大的行業機構之一。"
    [4]=>
    string(84) "以各社團愛國愛港愛鄉情意,弘揚鄉親之間團結互助精神為宗旨"
    [5]=>
    string(108) "在中西區舉辦各類型的文化及藝術活動,藉此培養市民對文化藝術的興趣及參與。"
    [6]=>
    string(119) "本聯會抱負: 構建香港具影響力的長者產業互通平台,創造機遇促進業界發展,造福社群。"
    [7]=>
    string(177) "青少女發展網絡致力緩解⾹港青少⼥成長期間面對的問題和需要;以非牟利形式促進性別教育及性教育,促進香港的社會和諧及平等。"
    [8]=>
    string(171) "大賞嚴謹選出具創意的香港企業,以表揚「創意創業」的肯定,參賽得奬者提供的服務或產品,做到以心為改善社會生活作出貢獻"
    [9]=>
    string(289) "配合時代需要,致力為廣大市民提供適切及優質之多元化服務,為香港未來而努力。無論時代、社會如何改變,樂善堂都會以真摯的關懷陪伴香港走過每一天,與大家一同成長、一同進步。 貫徹始終關懷情真、樂善同行"
    [10]=>
    string(289) "配合時代需要,致力為廣大市民提供適切及優質之多元化服務,為香港未來而努力。無論時代、社會如何改變,樂善堂都會以真摯的關懷陪伴香港走過每一天,與大家一同成長、一同進步。 貫徹始終關懷情真、樂善同行"
    [11]=>
    string(171) "大賞嚴謹選出具創意的香港企業,以表揚「創意創業」的肯定,參賽得奬者提供的服務或產品,做到以心為改善社會生活作出貢獻"
    [12]=>
    string(114) "會員中集中了成功的女企業家、傑出高級經營管理人才及全國著名企業的廠長、經理。"
    [13]=>
    string(459) "發展至今,商評中心轄下已有多個商會會員,涵蓋批發零售業:電器業、攝影器材業、化妝品業、鐘表業、中成藥業、汽車業、珠寶首飾業、地產代理業、毛皮業及美容美髮業等多個界別,從業員數目超過十萬。展望未來,我盼望能與業界同仁繼續同心攜手,積極推廣,宣傳持續教育,發揚終身學習的精神,鼓勵及推動更多行業加入我們的行列。"
    [14]=>
    string(297) "本會造就不少社會領袖及精英,工作計劃則圍繞著青商各大訓練機會而舉行。今天,城市青年商會獨特的“團結和諧”文化,從而培育更多青年領袖,已成為一個充滿幹勁熱誠的青年組織,會員得以訓練自我及一同共創明天。"
    [15]=>
    string(461) "本會創立之目的與宗旨主要包括: 弘揚中華醫藥,提倡中藥現代化,推動本港中成藥業發展﹔加強同業團結,積極爭取、維護業界合理權益﹔傳達政府中醫藥政策,代表業界就共同關注的問題與政府溝通並反映意見﹔協助會員瞭解、執行各項法規,制定行業指引,提高營商操守,杜絶偽劣產品﹔以及與相關機構舉辦交流活動,互通信息,共創商機。"
  }
  ["narrative_enterprise"]=>
  string(479) "A.
背景:
草姬國際有限公司是香港知名保健品牌。公司於1998年成立,開創中式名貴藥材精裝成膠囊的先河,好讓繁忙的城市人可以簡單輕鬆地服用中式的名貴藥材,保健養生。

發展:
香港是華人的社會,但同時有著西方的智慧,加上草姬在保健品鑽研的22年多經驗,按著華人的體質,巧妙配合中、西草本的各自優點,繼續研發最適合華人的天然保健品。
"
  ["narrative_industry"]=>
  string(287) "- 推出超過100款保健食品,領導保健食品市場。
- 優質保健食品普及化,大眾負擔到的價錢,更捐贈免費產品予弱勢社群。
- 一個專業的健康顧問團隊,配以免費的中西醫講座及工作坊,把健康帶到大眾的生活中。

"
  ["narrative_contribution"]=>
  string(341) "- 配合大灣區發展,2015年拓展澳門市場
- 於2018年被邀請參展第一屆上海舉辦中國國際進口博覽會
- 於2019年被邀請入註“天貓”,令全中國人也可以享用到適合亞洲人體質的保健品。
- 於2020年獲參與湖南衛視“我是帶貨王”綜藝節目,緊貼市場推廣潮流。
"
  ["narrative_corporate"]=>
  string(793) "- 連續7年與香港心理衛生會合作,把部份加工包裝交予香港心理衛生會身的工場負責,為殘疾及精神復康人士提供工作機會,讓他們能夠自力更生。
- 2016年為樂善堂當年總理
- 2018年為青躍Teen's Key董事,而在2019年5月冠名贊助「躍」您同行慈善晚宴,並共籌得近百萬善款。
- 2019年母親節活動鼓勵子女關心媽媽健康,草姬送出約1000盒產品給香港媽媽。
- 推廣健康生活 (例如:Facebook Pages “Gammy Kwok 郭致因 健康智慧”、晴報Skypost專欄)
- 每兩年舉辦一次公司的義工活動 (例如:草姬長者關愛日2017、草姬義工日2018)
- 2020年在新冠肺炎期間,公司多次派發保健品及防疫物資予前線醫護及弱勢社群。
"
  ["narrative_personal"]=>
  string(242) "- 獲選出任創意創業會第七屆會長
- 《資本壹週》「智選品牌大獎2018」
- 《旭茉JESSICA》成功女性 2017 
- 中國女企業家協會 – 中國企業創新優秀人物2010
- 都市日報 / 晴報Skypost專欄
"
  ["terms_is_attend"]=>
  string(2) "on"
  ["terms_is_declaration"]=>
  string(2) "on"
  ["nominator_title"]=>
  string(2) "ms"
  ["nominator_name_tc"]=>
  string(9) "謝景霞"
  ["nominator_name_en"]=>
  string(9) "Grace Tse"
  ["nominator_email"]=>
  string(18) "info@idance.com.hk"
}

17:17:05 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36- 
array(41) {
  ["category_id"]=>
  string(1) "2"
  ["nominee_title"]=>
  string(2) "ms"
  ["nominee_name_tc"]=>
  string(6) "孫悅"
  ["nominee_name_en"]=>
  string(7) "SUN YUE"
  ["nominee_birth_date"]=>
  string(10) "1988-05-19"
  ["nominee_birth_place"]=>
  string(12) "遼寧大連"
  ["nominee_email"]=>
  string(16) "ss@ucharm.com.hk"
  ["nominee_tel"]=>
  string(8) "95097777"
  ["nominee_wechat"]=>
  string(7) "S880519"
  ["nominee_assistant_title"]=>
  string(4) "miss"
  ["nominee_assistant_name_tc"]=>
  string(6) "王樂"
  ["nominee_assistant_name_en"]=>
  string(7) "WANG LE"
  ["nominee_assistant_email"]=>
  string(28) "jacquelinewang2019@gmail.com"
  ["nominee_assistant_tel"]=>
  string(8) "60969012"
  ["company_name"]=>
  string(42) "香港優才國際教育咨詢有限公司"
  ["company_address"]=>
  string(61) "香港九龍觀塘創業街25號創富中心9樓901-902、905"
  ["company_position"]=>
  string(12) "執行董事"
  ["company_position_years"]=>
  string(1) "7"
  ["company_is_founder"]=>
  string(1) "1"
  ["company_is_family_business"]=>
  string(1) "0"
  ["company_founded_year"]=>
  string(4) "2014"
  ["company_industry"]=>
  string(6) "教育"
  ["company_website"]=>
  string(17) "www.ucharm.com.hk"
  ["company_is_listed"]=>
  string(1) "0"
  ["company_stock_code"]=>
  string(0) ""
  ["organization_name"]=>
  array(3) {
    [0]=>
    string(21) "香港副學位協會"
    [1]=>
    string(12) "帶路先鋒"
    [2]=>
    string(30) "亞太國際教育交流協會"
  }
  ["service_position"]=>
  array(3) {
    [0]=>
    string(12) "創會主席"
    [1]=>
    string(12) "副秘書長"
    [2]=>
    string(21) "執行委員會主席"
  }
  ["participation_year"]=>
  array(3) {
    [0]=>
    string(1) "5"
    [1]=>
    string(1) "4"
    [2]=>
    string(1) "7"
  }
  ["involvement"]=>
  array(3) {
    [0]=>
    string(94) "2015至2020年,走進50多個內地城市,組織參與三百餘場公益招生宣講會。"
    [1]=>
    string(643) "2017至2019年,作為籌委會核心成員與香港專業及資深行政人員協會、新界社團聯會、新界青年聯會主辦了粵港澳大灣區高級別賽事《一帶一路·與我何干》綜合能力比賽公開組的全程統籌。賽事吸引了來自香港、澳門、深圳、珠海等地近百名高校優秀青年參與角逐,並得到業界熱烈反響,行政長官林鄭月娥女士親臨現場寄語。賽事的舉辦幫助粵港澳地區的青年人盡早明白及掌握「一帶一路」的資訊和脈搏,能提早為自我前途設立明確目標;讓年青人有機會實地參與跨地域的文化交流。"
    [2]=>
    string(291) "2014 年至今,亞太國際教育交流協會致力為學子創造國際化視野的交流平臺, 開展了中港臺兩岸三地學生領袖交流活動,資深高管求職面試分享會,中港教育交流論壇、職來職往—香港專場、清水灣名人論壇等多項活動。"
  }
  ["achievement"]=>
  array(3) {
    [0]=>
    string(463) "協會将香港副学位这一黄金教育途径,推广到 20 万余家庭,大力推動兩岸教育文化資源共享和信息溝通,提升大眾對其的認知度和認可度,從而讓更多的非本地學生了解這一黃金升學新路徑。同時,協會為所有入會的非本地副學位學生提供優質、高效、專業、貼心的服務,為廣大學子搭建一個相互溝通交流的橋樑,促進兩地教育的共同發展和進步。"
    [1]=>
    string(934) "作為“帶路先鋒”籌委會副秘書長,同香港特別行政區行政會議召集人陳智思先生,香港城市大學校董會前主席胡曉明工程師,全國人大代表/民建聯副主席陳勇先生等一行,帶領優秀粵港澳青年一起,深度外訪泰國,受到中国驻泰王国大使馆公使衔赞的親切接見。同時獲邀參觀當地最大金融機構盤穀銀行總部,考察馬六甲、泰國 4.0 等最新情況,深入瞭解社會和經濟狀況及發展機遇,成果豐碩。 此外,外訪團還帶領優秀的帶路先鋒大使,到訪了一帶一路重要國家馬來西亞越南等,實地了解了中國與各國的政策相通、設施聯通、貿易暢通、資金融通、民心相通的全方位合作交流。也讓更多青年人抓住“一帶一路”政策發展機遇,結合個人興趣,定立目標,及早裝備,成長為把握時代脈搏的精英人才。"
    [2]=>
    string(360) "亞太國際教育交流協會通過不定期舉辦各種校際乃至國際學術論壇,遊學考察,以及名人講座等學術活動,進行亞太地區的建設性交流,助力個人及企業全面提升競爭優勢,為亞太地區青年創造了眾多具有國際化視野的交流平臺,為亞太地區教育及社會發展作出突出貢獻。"
  }
  ["narrative_enterprise"]=>
  string(1471) "2014年香港優才國際教育咨詢有限公司正式成立,首創香港聯合培養精英計劃五年本碩連讀100%升學保障體系;2015年【香港聯合培養精英計劃】發佈,成為第一家將香港副學位升學路徑引進內地的機構平台;2016年優才招生人數大規模增長,首創港校招生官同行聯合招生、首創提前批港校面試專場、首創港校提前批預錄取;2017年優才學生事務處正式成立,首創特色國際名校本碩連讀保障體系、首創針對內地升大學預備精英集訓營;2018年學員成績蟬聯全港第一,優才校友會成立;2019年香港優才精英公寓正式落成,首創優才舍堂文化、首創香港教育精英領袖管理培訓生計劃;2020年優才中國學生事務處進駐一帶一路國家,澳洲伍倫貢大學 (馬來西亞校區)中國招生中心掛牌成立,【一帶一路聯合培養優才計劃】啟動。
香港優才國際教育服務涵蓋留學、遊學及教育培訓三大方面。【香港聯合培養精英計劃】是優才教育獨家首創的VIP一站式留學服務計劃,為學員提供持續五年的培訓服務體系。
香港優才國際教育將香港本地國際化教育制度與內地傳統教學方法有機結合,為內地與香港地區高等教育交流互通作出突出貢獻,積極打造“一帶一路”和“粵港澳大灣區”國際精英人才孵化基地和優才生態文化圈。"
  ["narrative_industry"]=>
  string(1274) "香港優才國際教育首創副學士升學100%成功率保障體系、特色國際名校本碩連讀保障體系、內地生全方位監管式服務體系、學業規劃及職業發展培訓體系、內地生一站式管理校外公寓舍堂文化體系,在中國內地幾十個城市成立留學辦事處,分別位於深圳、中山、江門、汕頭、珠海、湛江、佛山、廣州、潮州、揭陽、大連、南寧、廈門、福州、南昌、溫州、寧波、紹興、杭州、嘉興、蘇州、揚州、常州、馬鞍山、鄭州、濟寧、淄博、臨沂、青島、濰坊、濟南、煙台、天津、北京、長春、哈爾濱、雙鴨山、呼和浩特、西安、太原、蘭州、武漢、重慶、長沙、常德、貴陽、成都、昆明、大慶、東莞、漳州等。
同時,香港優才國際教育連續7年取得招生人數業界第一、學生成績業界第一、生源質量業界第一、升學率業界第一、錄取院校綜合排名業界第一、斬獲offer數量業界第一,並獲得【2019年度教育企業大獎】、【中國(行業)十大領軍品牌】、【最具影響力的教育創新產品】、【2017年度最具品牌影響力留學機構】、【香港城市大學專上學院官方表彰等獎項。"
  ["narrative_contribution"]=>
  string(446) "香港優才國際教育已與香港各大專院校建立起了廣泛的聯系,通過公益宣講會的方式,把香港先進的高等教育體系介紹給內地家庭和學子。優才教育帶著港校招生官一同走進全國50多個城市的知名重點高中,召開上百場宣講會,覆蓋了全國數十萬家庭,讓內地的學生和家長全面了解和認識了赴港就讀的升學路徑,助力港校提高收生數量。"
  ["narrative_corporate"]=>
  string(788) "內地生長、赴港求學,孫悅默默探索和研究香港和祖國內地教育體制的異同,一方面感念於香港中西合璧的先進教育制度,一方面深刻思索如何從自我奉獻開始,親力親為組織參與了百餘場教育類公益講座,搭建中港教育文化交流的橋梁,加速中港文化的溝通和融合。
孫悅牽頭創立了香港優才國際教育,公司所有招生宣講會都免費對家長和學生開放,不求回報,只為了貫徹優才教育謙卑育人的理念。另外,為響應國家“一帶一路”政策號召,促進大灣區青年的交流互動,公司開展了【中港臺兩岸三地學生領袖交流活動】、【資深高管求職面試分享會】、【中港教育交流論壇】等多項活動。"
  ["narrative_personal"]=>
  string(1024) "孫悅曾獲【2016十大傑出新香港青年】、【2017年度教育創新創業領軍人物】,現任香港副學位協會創會會長、帶路先鋒副秘書長、亞太國際教育交流協會執委會主席、香港浸會大學研究生會第11屆執行主席、中央音樂學院藝友同盟創辦人、香港研究生聯合會高級顧問。
1. China Daily: Educating with charm
2. 文匯報:2016十大傑出新香港青年孫悅:領軍香港優才國際教育 搭建兩岸教育服務橋樑
3. 中國新聞網:“十大傑出新香港青年”評選 28歲大連姑娘脫穎而出當選
4. 大連財經廣播專訪
5. 香港電台e線金融網專訪
6. 香港新城電台金錢管家、大灣創富好生活專訪
7. CCTV當代資本說——《靜傾大灣區》專訪
8. 搜狐網:十大傑出新香港青年,有咱大連女孩
9. 大連新聞網:大連女孩孫悅躋身“十大傑出新香港青年”
10.香港紫荊網:28歲大連女孩獲選第二屆“十大傑出新香港青年”"
  ["terms_is_attend"]=>
  string(2) "on"
  ["terms_is_declaration"]=>
  string(2) "on"
  ["nominator_title"]=>
  string(2) "dr"
  ["nominator_name_tc"]=>
  string(9) "陳鳳翔"
  ["nominator_name_en"]=>
  string(11) "Wilson Chan"
  ["nominator_email"]=>
  string(22) "wilsonchanfc@gmail.com"
}

17:24:31 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36- 
array(17) {
  ["category_id"]=>
  string(1) "2"
  ["nominee_title"]=>
  string(2) "ms"
  ["nominee_name_tc"]=>
  string(6) "孫悅"
  ["nominee_name_en"]=>
  string(7) "SUN YUE"
  ["nominee_email"]=>
  string(16) "ss@ucharm.com.hk"
  ["nominee_tel"]=>
  string(8) "95097777"
  ["company_name"]=>
  string(42) "香港優才國際教育咨詢有限公司"
  ["company_position"]=>
  string(12) "執行董事"
  ["nominator_title"]=>
  string(2) "dr"
  ["nominator_name_tc"]=>
  string(9) "陳鳳翔"
  ["nominator_name_en"]=>
  string(11) "Wilson Chan"
  ["nominator_company"]=>
  string(12) "帶路先鋒"
  ["nominator_job_title"]=>
  string(6) "主席"
  ["nominator_email"]=>
  string(22) "wilsonchanfc@gmail.com"
  ["nominator_tel"]=>
  string(8) "96531000"
  ["nominator_address"]=>
  string(44) "九龍尖沙咀柯士甸道7號UQ Place 3樓"
  ["nominator_reason"]=>
  string(2135) "本人誠意提名香港優才國際教育咨詢有限公司執行董事孫悅女士為“2020大灣區傑出青年女企業家獎”。
孫悅是我認識的女士中非常傑出的代表,尤其是她的邏輯表達能力、組織協調能力以及領導才能都是我十分欣賞的。
2019年4月,我與孫悅作為嘉賓受邀參加香港新城電台節目總監朱子昭先生節目訪問時,她的中文表達能力給我留下了非常深刻的印象,不用一分鐘便出口成文,而且邏輯清晰、要點明確、表達順暢。
在擔任帶路先鋒副秘書長時,孫悅的組織協調能力也得到了各方廣泛讚許,每項活動顺利开展都離不開她的積極組織和協調。2017至2019年,作為籌委會核心成員,她與香港專業及資深行政人員協會、新界社團聯會、新界青年聯會主辦參與了粵港澳大灣區高級別賽事《一帶一路·與我何干》綜合能力比賽公開組的全程統籌。同時,她還同香港特別行政區行政會議召集人陳智思先生,香港城市大學校董會前主席胡曉明工程師,全國人大代表/民建聯副主席陳勇先生等一行,帶領優秀粵港澳青年一起,深度外訪“一帶一路”沿線國家,取得豐碩成果。
談到孫悅就必須要提及她所創辦的香港優才國際教育,整個行業無人不知、無人不曉。這是第一家將香港副學位升學路徑引進內地的機構平台,首創香港聯合培養精英計劃五年本碩連讀100%升學保障體系。在她的領導下,公司招生人數大規模增長,營業額急劇增加,香港各大專院校建立都與其起了廣泛的聯系,助數千學子圓夢香港及海外,創造了多項業界紀錄,已經連續七年穩居行業第一的寶座,並計劃上市進一步拓展其業務範圍。
因此,本人竭誠推薦孫悅女士為“2020大灣區傑出青年女企業家獎”。如蒙評委會肯定,我相信她一定會成為獲獎者的重要代言人,將“大灣區青年女企業家獎”的評選活動進一步推廣出去,帶來更廣泛的影響力。"
}

17:26:10 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36- 
array(41) {
  ["category_id"]=>
  string(1) "3"
  ["nominee_title"]=>
  string(2) "ms"
  ["nominee_name_tc"]=>
  string(9) "邱詠筠"
  ["nominee_name_en"]=>
  string(21) "Chiu Wing Kwan Winnie"
  ["nominee_birth_date"]=>
  string(10) "1980-04-24"
  ["nominee_birth_place"]=>
  string(9) "Hong Kong"
  ["nominee_email"]=>
  string(23) "winnie.chiu@dorsett.com"
  ["nominee_tel"]=>
  string(8) "29219829"
  ["nominee_wechat"]=>
  string(0) ""
  ["nominee_assistant_title"]=>
  string(4) "miss"
  ["nominee_assistant_name_tc"]=>
  string(9) "梁恬怡"
  ["nominee_assistant_name_en"]=>
  string(11) "Timyi Leung"
  ["nominee_assistant_email"]=>
  string(23) "timyi.leung@dorsett.com"
  ["nominee_assistant_tel"]=>
  string(8) "60727571"
  ["company_name"]=>
  string(33) "Dorsett Hospitality International"
  ["company_address"]=>
  string(72) "18/F., Far East Consortium Building, 121 Des Voeux Road Central, Central"
  ["company_position"]=>
  string(30) "President & Executive Director"
  ["company_position_years"]=>
  string(1) "9"
  ["company_is_founder"]=>
  string(1) "0"
  ["company_is_family_business"]=>
  string(1) "1"
  ["company_founded_year"]=>
  string(4) "2007"
  ["company_industry"]=>
  string(21) "Hotel and Hospitality"
  ["company_website"]=>
  string(40) "https://www.dorsett.com/zh-hk/index.html"
  ["company_is_listed"]=>
  string(1) "0"
  ["company_stock_code"]=>
  string(0) ""
  ["organization_name"]=>
  array(3) {
    [0]=>
    string(25) "HK Philharmonic Orchestra"
    [1]=>
    string(21) "Asia Youth Orchestra "
    [2]=>
    string(46) "The society of the Academy for Performing Arts"
  }
  ["service_position"]=>
  array(3) {
    [0]=>
    string(8) "Director"
    [1]=>
    string(8) "Director"
    [2]=>
    string(21) "Joint Vice Presidents"
  }
  ["participation_year"]=>
  array(3) {
    [0]=>
    string(4) "2010"
    [1]=>
    string(4) "2011"
    [2]=>
    string(4) "2014"
  }
  ["involvement"]=>
  array(3) {
    [0]=>
    string(14) "Arts & Culture"
    [1]=>
    string(14) "Arts & Culture"
    [2]=>
    string(14) "Arts & Culture"
  }
  ["achievement"]=>
  array(3) {
    [0]=>
    string(149) "raised over $HK3 million to fund HK Phil’s Outreach and Education programmes to promote the appreciation of classical music in local communities.  "
    [1]=>
    string(94) "continuously provide scholarship for Asian Youth Orchestra students to promote higher learning"
    [2]=>
    string(29) "Raised $30m in past few years"
  }
  ["narrative_enterprise"]=>
  string(2287) "1. Winnie joined the Far East Consortium Group in 2005 as a director of property development and was subsequently appointed as the President and an Executive Director of Dorsett Hospitality international, in Jun 2010 and Nov 2011 respectively. In June 2019, Winnie was appointed as Chairman of Japan listed AGORA Hospitality Group in June 2015 and Executive Director of Far East Consortium. As of June 2020, the portfolio of the major shareholder of Dorsett’s parent company FEC owns, manages and develops 64 hotel properties with approximately 14,000 rooms worldwide through different structures.

2. International expansion by extending market reach & geography diversification – expanded the company rapidly from 18 hotels with 3,600 rooms in 3 geographies in 2010 to 64 hotels with a total of over 14,000 rooms across Hong Kong, Mainland China, Malaysia, Singapore, Japan, Australia, United Kingdom and Continental Europe. With an occupancy rate of over 90% in HK and around 80% in other regions over the past few years. 

3. Capital market - Led the company spin-off which raised over 10 billion HKD in Oct 2010 and privatization in Oct 2015, which have been honoured with corporate awards such as, Best Small Cap Company Award 2012 (by Asiamoney) and Best Valued Hotels Group Award 2014 (by Mediazone Group) etc.

4. Innovation - launched our own CRM loyalty programme “Dorsett Your Rewards” on Oct 2018 and with around 350,000 members to date 

5. Numerous recognition and accolades - Dorsett Hospitality International and its hotels have been awarded TTG Asia Media’s Best mid-range hotel group 2019, CTrip.com’s 2019 Best Hotel Group, The 11th China Hotel Starlight Awards’ Most Progressing Hotel Groups of China and the 28th ASEANTA Awards for Excellence’s Best ASEAN Marketing and Promotional Programme Award etc. 

6. Giving back to the society as part of “Dorsett Cares”- involved in many community programmes, particularly in the field of culture and education by providing scholarships over worth 10 million HKD and internship opportunities which benefits over 1,500 students. Over 6,000 annual hours of community service across Dorsett Hospitality International teams who support various local charities to give back to the local community. "
  ["narrative_industry"]=>
  string(3026) "1. Strategic vision for Dorsett Hospitality International over the next 18-36 months

- Asian Wallet strategy - focus on cities with strong population growth 
- Form strategic partnerships & acquire new business - work with strong partners (Chow Tai Fook and The Star Entertainment Group in Australia, AMTD in Singapore, etc) to strengthen and build presence in new and existing markets while branching out into new business opportunities with TWC in Continental Europe, integrated resorts in Brisbane etc. 
- Identify new opportunities - Working with potential JV partners to further develop third party management contracts, looking for potential new business model with synergies, such as co-living, retirement home, confinement center etc.

2. The Dorsett Hospitality International difference
- Operates 3 brands that cover distinct segments - Dorsett Hotels (our flagship 4-star hotel brand delivering highly personalised and remarkable experiences), d.Collection (a collection of boutique hotels celebrating the charm and artistic vibes surrounding each property) & Silka (our value-led brand offering cost-effective essentials and a fuss-free experience). Our diverse portfolio of 3 to 4-star hotels allows us to attract clientele from various market segments with different spending powers from around the globe 
- Delivering style and comfort with affordability - Being one of Asian’s fastest growing hotel groups, we offer our guests the unique combination of a variety of stylish settings with a choice of typically more than one, if not more, type of property per city with an affordable price tag, this is a unique selling point in the market and definitely makes us stand out.
- Management Philosophy - 4Is core values (Integrity, Inspiration, Innovation and Initiative), 5-Star Talents, Lean Structure, Resilience & Adaptability to Market Changes, Cost Efficiency

3. During COVID-19
- All hotels worldwide, especially those in Hong Kong, acted extremely quickly to enforce strict anti-epidemic measures guided by local health authorities and the World Health Organisation. A video was also made to reassure our guests on these measures: https://www.youtube.com/watch?v=7uJPFpW9t1Y  
- Supporting the community by being one of the first to officially welcome and provide accommodation and prepare meals and other forms of support for various medical teams, policemen and guests who are unable to perform home quarantine due to personal reasons such as older grandparents living at home, in our hotels in China, Hong Kong, Singapore, Malaysia and London during the COVID-19 outbreak. 
- Occupancy rate in our 9 hotels in Hong Kong have beaten up our competition and our “Dorsett” name has shined out in many publications including local media papers & TV and even internationally in Wall Street Journal.
- Recently, we start to work with Harmony House, a local HK NGO, to support up to 50 Hong Kong families with a safe home, by offering temporary accommodation for its residents-in-need. 
"
  ["narrative_contribution"]=>
  string(639) "1. In company level, Dorsett Hospitality International always look for new business opportunities in Greater Bay Area, by collaborating with local property developer to offer the best hospitality experience to guests and meanwhile provides more job opportunities to people in GBA. 

2. Dorsett also provides internship and working opportunities for mainland students to be able to get more oversea exposure in our hotels in HK, Singapore, Malaysia, Japan, Australia, UK and continental Europe. 

3. Being one of the member in Greater Bay Area Homeland Youth Community Foundation, Winnie is dedicating herself in the GBA development. 
"
  ["narrative_corporate"]=>
  string(1860) "1. A firm advocate of CSR with following social responsibilities: 
- Chairman of Hong Kong Art School
- Council Member of Hong Kong Arts Development Council
- Joint Vice President of The Society of The Academy for Performing Arts
- Board Member of the Hong Kong Arts Centre
- Board Member of Asia Youth Orchestra 
- Board Member of Wu Yee Sun College, the Chinese University of Hong Kong
- The Council Member at The Better Hong Kong Foundation
- Board Member of The Community Chest
- Advisor of Our Hong Kong Foundation
- Honorary Vice President of The Federation of Hong Kong Hotel Owners 
- Member of Hong Kong –Japan Business Co-Operation Committee

2. HKAPA - Lead the organising Committee for the annual Academy Ball since 2014, and raised over $HK60 million to support scholarships for 500 Academy students.

3. HK Phil – Being the fundraising concert chair for the Spring Together Concert which raised over $HK3 million to fund HK Phil’s Outreach and Education programmes to promote the appreciation of classical music in local communities.  

4. AYO & JCCSS – continuously provide scholarship for Asian Youth Orchestra and Ju Ching Chu Secondary School students to promote higher learning. 

5. CUHK – Knowledge sharing as Guest lecturer at Chinese University of Hong Kong and Higher Programme in Tourism Marketing and Communication managed by the Completeness University of Madrid and the magazine Conde Nast Traveller, and BNP Paribas’s Wealth Management Next Generation Programme to name a few. 

6. DHI - Throughout the years, Dorsett Hospitality International has been involved in many community programmes particularly in the field of culture and education by providing scholarship and internship opportunities which can be illustrated by its Caring Company Logo awarded by The Hong Kong Council of Social Service"
  ["narrative_personal"]=>
  string(1126) "1. One of the youngest Justice of the Peace (JP) appointed by the Hong Kong Government (https://www.info.gov.hk/cml/miscell/index3e.htm)
2. Honorary Fellowship by The Hong Kong Academy for Performing Arts (https://www.hkapa.edu/honorary-awardees/winnie-chiu-wing-kwan)
3. Honorary Fellowship by Vocational Training Council (https://www.vtc.edu.hk/html/en/about/honorary_fellows_243.html)
4. The 2017 Female Leader Legacy Award, the Golden Bauhinia Women Entrepreneur Award (https://www.gbwea.org/a-list/28717-cht)
5. The World Outstanding Chinese Youth Award (http://wcbfund.org/wocya.html)
6. The Women of Hope 2016 Award: Global Champion category (https://www.hkahf.org.hk/woh/index.php)
7. Forbes Asia 2014: Top 12 Asia’s Power Businesswomen (https://www.forbes.com/sites/forbesasia/2014/02/26/asias-power-businesswomen-2014-12-to-watch/#71a37b024284)
8. The 2014 Hong Kong Professional Elite Ladies Award (https://www.stars-hk.com/2014/08/19/%E3%80%8C2014%E5%85%A8%E6%B8%AF%E6%99%82%E5%B0%9A%E5%B0%88%E6%A5%AD%E5%A5%B3%E6%80%A7%E9%81%B8%E8%88%89%E3%80%8D%E9%A0%92%E7%8D%8E%E7%A6%AE-%E9%99%84%E5%9C%96%E8%BC%AF/)
"
  ["terms_is_attend"]=>
  string(2) "on"
  ["terms_is_declaration"]=>
  string(2) "on"
  ["nominator_title"]=>
  string(2) "mr"
  ["nominator_name_tc"]=>
  string(9) "邱達昌"
  ["nominator_name_en"]=>
  string(10) "David Chiu"
  ["nominator_email"]=>
  string(23) "dylan.song@fecil.com.hk"
}

20:16:11 /var/www/gba-owea.com/GBAOWE2020/application/controllers/Application.php -Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)- 
array(0) {
}