-
Notifications
You must be signed in to change notification settings - Fork 0
/
uca_title_49.txt
6151 lines (5528 loc) · 792 KB
/
uca_title_49.txt
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
Utah Code Annotated - Title 49 - Utah State Retirement and Insurance Benefit Act
================================================================================
Utah Code Annotated - Title 49 - Chapter 11 - Utah State Retirement Systems Administration
******************************************************************************************
Utah Code Annotated § 49-11-101 Title.
--------------------------------------
Utah Code Annotated § 49-11-101(1): This title is known as the "Utah State Retirement and Insurance Benefit Act."
Utah Code Annotated § 49-11-101(2): This chapter is known as the "Utah State Retirement Systems Administration."
Utah Code Annotated § 49-11-102 Definitions.
--------------------------------------------
As used in this title:Utah Code Annotated § 49-11-102(1):
Utah Code Annotated § 49-11-102(1)(a): "Active member" means a member who:
Utah Code Annotated § 49-11-102(1)(a)(i): is employed by a participating employer and accruing service credit; or
Utah Code Annotated § 49-11-102(1)(a)(ii): within the previous 120 days:
Utah Code Annotated § 49-11-102(1)(a)(ii)(A): has been employed by a participating employer; and
Utah Code Annotated § 49-11-102(1)(a)(ii)(B): accrued service credit.
Utah Code Annotated § 49-11-102(1)(b): "Active member" does not include a retiree.
Utah Code Annotated § 49-11-102(2): "Actuarial equivalent" means a benefit of equal value when computed upon the basis of mortality tables as recommended by the actuary and adopted by the executive director, including regular interest.
Utah Code Annotated § 49-11-102(3): "Actuarial interest rate" means the interest rate as recommended by the actuary and adopted by the board upon which the funding of system costs and benefits are computed.
Utah Code Annotated § 49-11-102(4): (4)(a)(i); (4)(a)
Utah Code Annotated § 49-11-102(4)(a): "Agency" means:
Utah Code Annotated § 49-11-102(4)(a)(i): a department, division, agency, office, authority, commission, board, institution, or hospital of the state;
Utah Code Annotated § 49-11-102(4)(a)(ii): a county, municipality, school district, special district, or special service district;
Utah Code Annotated § 49-11-102(4)(a)(iii): a state college or university; or
Utah Code Annotated § 49-11-102(4)(a)(iv): any other participating employer.
Utah Code Annotated § 49-11-102(4)(b): (4)(a)(i); (4)(a) "Agency" does not include an entity listed under Subsection
Utah Code Annotated § 49-11-102(5): "Allowance" or "retirement allowance" means the pension plus the annuity, including any cost of living or other authorized adjustments to the pension and annuity.
Utah Code Annotated § 49-11-102(6): 49-11-612 "Alternate payee" means a member's former spouse or family member eligible to receive payments under a Domestic Relations Order in compliance with Section
Utah Code Annotated § 49-11-102(7): "Amortization rate" means the board certified percent of salary required to amortize the unfunded actuarial accrued liability in accordance with policies established by the board upon the advice of the actuary.
Utah Code Annotated § 49-11-102(8): "Annuity" means monthly payments derived from member contributions.
Utah Code Annotated § 49-11-102(9): 49-12-407 "Appointive officer" means an employee appointed to a position for a definite and fixed term of office by official and duly recorded action of a participating employer whose appointed position is designated in the participating employer's charter, creation document, or similar document, and:
Utah Code Annotated § 49-11-102(9)(a): 49-12-407 who earns $500 or more per month, indexed as of January 1, 1990, as provided in Section
Utah Code Annotated § 49-11-102(9)(b): whose appointive position is full-time as certified by the participating employer for a Tier II appointive officer.
Utah Code Annotated § 49-11-102(10):
Utah Code Annotated § 49-11-102(10)(a): "At-will employee" means a person who is employed by a participating employer and:
Utah Code Annotated § 49-11-102(10)(a)(i): who is not entitled to merit or civil service protection and is generally considered exempt from a participating employer's merit or career service personnel systems;
Utah Code Annotated § 49-11-102(10)(a)(ii): whose on-going employment status is entirely at the discretion of the person's employer; or
Utah Code Annotated § 49-11-102(10)(a)(iii): who may be terminated without cause by a designated supervisor, manager, or director.
Utah Code Annotated § 49-11-102(10)(b): "At-will employee" does not include a career employee who has obtained a reasonable expectation of continued employment based on inclusion in a participating employer's merit system, civil service protection system, or career service personnel systems, policies, or plans.
Utah Code Annotated § 49-11-102(11): "Beneficiary" means any person entitled to receive a payment under this title through a relationship with or designated by a member, participant, covered individual, or alternate payee of a defined contribution plan.
Utah Code Annotated § 49-11-102(12): 49-11-202 "Board" means the Utah State Retirement Board established under Section
Utah Code Annotated § 49-11-102(13): 49-11-202 "Board member" means a person serving on the Utah State Retirement Board as established under Section
Utah Code Annotated § 49-11-102(14): 53B-1-402 "Board of Higher Education" or "Utah Board of Higher Education" means the Utah Board of Higher Education described in Section
Utah Code Annotated § 49-11-102(15): "Certified contribution rate" means the board certified percent of salary paid on behalf of an active member to the office to maintain the system on a financially and actuarially sound basis.
Utah Code Annotated § 49-11-102(16): Chapter 19, Utah Governors' and Legislators' Retirement Act "Contributions" means the total amount paid by the participating employer and the member into a system or to the Utah Governors' and Legislators' Retirement Plan under
Utah Code Annotated § 49-11-102(17): 49-11-205 "Council member" means a person serving on the Membership Council established under Section
Utah Code Annotated § 49-11-102(18): Chapter 20, Public Employees' Benefit and Insurance Program Act "Covered individual" means any individual covered under
Utah Code Annotated § 49-11-102(19): Chapter 12, Public Employees' Contributory Retirement Act; Chapter 13, Public Employees' Noncontributory Retirement Act; Chapter 14, Public Safety Contributory Retirement Act; Chapter 15, Public Safety Noncontributory Retirement Act; Chapter 16, Firefighters' Retirement Act; Chapter 17, Judges' Contributory Retirement Act; Chapter 18, Judges' Noncontributory Retirement Act; Chapter 19, Utah Governors' and Legislators' Retirement Act; Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act "Current service" means covered service under:
Utah Code Annotated § 49-11-102(19)(a): Chapter 12, Public Employees' Contributory Retirement Act
Utah Code Annotated § 49-11-102(19)(b): Chapter 13, Public Employees' Noncontributory Retirement Act
Utah Code Annotated § 49-11-102(19)(c): Chapter 14, Public Safety Contributory Retirement Act
Utah Code Annotated § 49-11-102(19)(d): Chapter 15, Public Safety Noncontributory Retirement Act
Utah Code Annotated § 49-11-102(19)(e): Chapter 16, Firefighters' Retirement Act
Utah Code Annotated § 49-11-102(19)(f): Chapter 17, Judges' Contributory Retirement Act
Utah Code Annotated § 49-11-102(19)(g): Chapter 18, Judges' Noncontributory Retirement Act
Utah Code Annotated § 49-11-102(19)(h): Chapter 19, Utah Governors' and Legislators' Retirement Act
Utah Code Annotated § 49-11-102(19)(i): Chapter 22, New Public Employees' Tier II Contributory Retirement Act
Utah Code Annotated § 49-11-102(19)(j): Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act
Utah Code Annotated § 49-11-102(20): "Defined benefit" or "defined benefit plan" or "defined benefit system" means a system or plan offered under this title to provide a specified allowance to a retiree or a retiree's spouse after retirement that is based on a set formula involving one or more of the following factors:
Utah Code Annotated § 49-11-102(20)(a): years of service;
Utah Code Annotated § 49-11-102(20)(b): final average monthly salary; or
Utah Code Annotated § 49-11-102(20)(c): a retirement multiplier.
Utah Code Annotated § 49-11-102(21): "Defined contribution" or "defined contribution plan" means any defined contribution plan or deferred compensation plan authorized under the Internal Revenue Code and administered by the board.
Utah Code Annotated § 49-11-102(22): (22) "Educational institution" means a political subdivision or instrumentality of the state or a combination thereof primarily engaged in educational activities or the administration or servicing of educational activities, including:
Utah Code Annotated § 49-11-102(22)(a): the State Board of Education and its instrumentalities;
Utah Code Annotated § 49-11-102(22)(b): any institution of higher education and its branches;
Utah Code Annotated § 49-11-102(22)(c): any school district and its instrumentalities;
Utah Code Annotated § 49-11-102(22)(d): any vocational and technical school; and
Utah Code Annotated § 49-11-102(22)(e): (22) any entity arising out of a consolidation agreement between entities described under this Subsection
Utah Code Annotated § 49-11-102(23): (23)(a); 20A-12-201 "Elected official":
Utah Code Annotated § 49-11-102(23)(a): means a person elected to a state office, county office, municipal office, school board or school district office, special district office, or special service district office;
Utah Code Annotated § 49-11-102(23)(b): (23)(a) includes a person who is appointed to serve an unexpired term of office described under Subsection
Utah Code Annotated § 49-11-102(23)(c): 20A-12-201 does not include a judge or justice who is subject to a retention election under Section
Utah Code Annotated § 49-11-102(24):
Utah Code Annotated § 49-11-102(24)(a): "Employer" means any department, educational institution, or political subdivision of the state eligible to participate in a government-sponsored retirement system under federal law.
Utah Code Annotated § 49-11-102(24)(b): "Employer" may also include an agency financed in whole or in part by public funds.
Utah Code Annotated § 49-11-102(25): 49-12-203; 49-13-203; 49-14-203; 49-15-203; 49-16-203 "Exempt employee" means an employee working for a participating employer:
Utah Code Annotated § 49-11-102(25)(a): 49-12-203; 49-13-203; 49-14-203; 49-15-203; 49-16-203 who is not eligible for service credit under Section
Utah Code Annotated § 49-11-102(25)(b): for whom a participating employer is not required to pay contributions or nonelective contributions.
Utah Code Annotated § 49-11-102(26): "Final average monthly salary" means the amount computed by dividing the compensation received during the final average salary period under each system by the number of months in the final average salary period.
Utah Code Annotated § 49-11-102(27): "Fund" means any fund created under this title for the purpose of paying benefits or costs of administering a system, plan, or program.
Utah Code Annotated § 49-11-102(28):
Utah Code Annotated § 49-11-102(28)(a): "Inactive member" means a member who has not been employed by a participating employer for a period of at least 120 days.
Utah Code Annotated § 49-11-102(28)(b): "Inactive member" does not include retirees.
Utah Code Annotated § 49-11-102(29):
Utah Code Annotated § 49-11-102(29)(a): "Initially entering" means hired, appointed, or elected for the first time, in current service as a member with any participating employer.
Utah Code Annotated § 49-11-102(29)(b): "Initially entering" does not include a person who has any prior service credit on file with the office.
Utah Code Annotated § 49-11-102(29)(c): "Initially entering" includes an employee of a participating employer, except for an employee that is not eligible under a system or plan under this title, who:
Utah Code Annotated § 49-11-102(29)(c)(i): does not have any prior service credit on file with the office;
Utah Code Annotated § 49-11-102(29)(c)(ii): is covered by a retirement plan other than a retirement plan created under this title; and
Utah Code Annotated § 49-11-102(29)(c)(iii): moves to a position with a participating employer that is covered by this title.
Utah Code Annotated § 49-11-102(30): 53B-1-102 "Institution of higher education" means an institution described in Section
Utah Code Annotated § 49-11-102(31): Chapter 19, Utah Governors' and Legislators' Retirement Act
Utah Code Annotated § 49-11-102(31)(a): Chapter 19, Utah Governors' and Legislators' Retirement Act "Member" means a person, except a retiree, with contributions on deposit with a system, the Utah Governors' and Legislators' Retirement Plan under
Utah Code Annotated § 49-11-102(31)(b): "Member" also includes leased employees within the meaning of Section 414(n)(2) of the Internal Revenue Code, if the employees have contributions on deposit with the office. If leased employees constitute less than 20% of the participating employer's work force that is not highly compensated within the meaning of Section 414(n)(5)(c)(ii), Internal Revenue Code, "member" does not include leased employees covered by a plan described in Section 414(n)(5) of the federal Internal Revenue Code.
Utah Code Annotated § 49-11-102(32): "Member contributions" means the sum of the contributions paid to a system or the Utah Governors' and Legislators' Retirement Plan, including refund interest if allowed by a system, and which are made by:
Utah Code Annotated § 49-11-102(32)(a): the member; and
Utah Code Annotated § 49-11-102(32)(b): the participating employer on the member's behalf under Section 414(h) of the Internal Revenue Code.
Utah Code Annotated § 49-11-102(33): "Nonelective contribution" means an amount contributed by a participating employer into a participant's defined contribution account.
Utah Code Annotated § 49-11-102(34): "Normal cost rate":
Utah Code Annotated § 49-11-102(34)(a): means the percent of salary that is necessary for a retirement system that is fully funded to maintain its fully funded status; and
Utah Code Annotated § 49-11-102(34)(b): is determined by the actuary based on the assumed rate of return established by the board.
Utah Code Annotated § 49-11-102(35): "Office" means the Utah State Retirement Office.
Utah Code Annotated § 49-11-102(36): "Participant" means an individual with voluntary deferrals or nonelective contributions on deposit with the defined contribution plans administered under this title.
Utah Code Annotated § 49-11-102(37): Chapter 12, Public Employees' Contributory Retirement Act; Chapter 13, Public Employees' Noncontributory Retirement Act; Chapter 14, Public Safety Contributory Retirement Act; Chapter 15, Public Safety Noncontributory Retirement Act; Chapter 16, Firefighters' Retirement Act; Chapter 17, Judges' Contributory Retirement Act; Chapter 18, Judges' Noncontributory Retirement Act "Participating employer" means a participating employer, as defined by
Utah Code Annotated § 49-11-102(38): 49-12-102; 49-13-102; 49-22-102 "Part-time appointed board member" means a person:
Utah Code Annotated § 49-11-102(38)(a): who is appointed to serve as a member of a board, commission, council, committee, or panel of a participating employer; and
Utah Code Annotated § 49-11-102(38)(b): 49-12-102; 49-13-102; 49-22-102 whose service as a part-time appointed board member does not qualify as a regular full-time employee as defined under Section
Utah Code Annotated § 49-11-102(39): "Pension" means monthly payments derived from participating employer contributions.
Utah Code Annotated § 49-11-102(40): Chapter 19, Utah Governors' and Legislators' Retirement Act; Chapter 22, Part 4, Tier II Defined Contribution Plan; Chapter 23, Part 4, Tier II Defined Contribution Plan; 49-11-801 "Plan" means the Utah Governors' and Legislators' Retirement Plan created by
Utah Code Annotated § 49-11-102(41): Title 11, Chapter 13, Interlocal Cooperation Act
Utah Code Annotated § 49-11-102(41)(a): "Political subdivision" means any local government entity, including cities, towns, counties, and school districts, but only if the subdivision is a juristic entity that is legally separate and distinct from the state and only if its employees are not by virtue of their relationship to the entity employees of the state.
Utah Code Annotated § 49-11-102(41)(b): "Political subdivision" includes special districts, special service districts, or authorities created by the Legislature or by local governments, including the office.
Utah Code Annotated § 49-11-102(41)(c): Title 11, Chapter 13, Interlocal Cooperation Act "Political subdivision" does not include a project entity created under
Utah Code Annotated § 49-11-102(42): Chapter 20, Public Employees' Benefit and Insurance Program Act; Chapter 21, Public Employees' Long-Term Disability Act "Program" means the Public Employees' Insurance Program created under
Utah Code Annotated § 49-11-102(43): "Public funds" means those funds derived, either directly or indirectly, from public taxes or public revenue, dues or contributions paid or donated by the membership of the organization, used to finance an activity whose objective is to improve, on a nonprofit basis, the governmental, educational, and social programs and systems of the state or its political subdivisions.
Utah Code Annotated § 49-11-102(44): "Qualified defined contribution plan" means a defined contribution plan that meets the requirements of Section 401(k) or Section 403(b) of the Internal Revenue Code.
Utah Code Annotated § 49-11-102(45): "Refund interest" means the amount accrued on member contributions at a rate adopted by the board.
Utah Code Annotated § 49-11-102(46): "Retiree" means an individual who has qualified for an allowance under this title.
Utah Code Annotated § 49-11-102(47): "Retirement" means the status of an individual who has become eligible, applies for, and is entitled to receive an allowance under this title.
Utah Code Annotated § 49-11-102(48): "Retirement date" means the date selected by the member on which the member's retirement becomes effective with the office.
Utah Code Annotated § 49-11-102(49): "Retirement related contribution":
Utah Code Annotated § 49-11-102(49)(a): means any employer payment to any type of retirement plan or program made on behalf of an employee; and
Utah Code Annotated § 49-11-102(49)(b): does not include Social Security payments or Social Security substitute payments made on behalf of an employee.
Utah Code Annotated § 49-11-102(50): "Service credit" means:
Utah Code Annotated § 49-11-102(50)(a): the period during which an employee is employed and compensated by a participating employer and meets the eligibility requirements for membership in a system or the Utah Governors' and Legislators' Retirement Plan, provided that any required contributions are paid to the office; and
Utah Code Annotated § 49-11-102(50)(b): periods of time otherwise purchasable under this title.
Utah Code Annotated § 49-11-102(51): 49-11-612 "Surviving spouse" means:
Utah Code Annotated § 49-11-102(51)(a): the lawful spouse who has been married to a member for at least six months immediately before the death date of the member; or
Utah Code Annotated § 49-11-102(51)(b): 49-11-612 a former lawful spouse of a member with a valid domestic relations order benefits on file with the office before the member's death date in accordance with Section
Utah Code Annotated § 49-11-102(52): Chapter 12, Public Employees' Contributory Retirement Act; Chapter 13, Public Employees' Noncontributory Retirement Act; Chapter 14, Public Safety Contributory Retirement Act; Chapter 15, Public Safety Noncontributory Retirement Act; Chapter 16, Firefighters' Retirement Act; Chapter 17, Judges' Contributory Retirement Act; Chapter 18, Judges' Noncontributory Retirement Act; Chapter 19, Utah Governors' and Legislators' Retirement Act; Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System "System" means the individual retirement systems created by
Utah Code Annotated § 49-11-102(53): 53B-1-101.5 "Technical college" means the same as that term is defined in Section
Utah Code Annotated § 49-11-102(54): "Tier I" means a system or plan under this title for which:
Utah Code Annotated § 49-11-102(54)(a): an employee is eligible to participate if the employee initially enters regular full-time employment before July 1, 2011; or
Utah Code Annotated § 49-11-102(54)(b): a governor or legislator who initially enters office before July 1, 2011.
Utah Code Annotated § 49-11-102(55): Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System; Chapter 22, Part 4, Tier II Defined Contribution Plan; Chapter 23, Part 4, Tier II Defined Contribution Plan
Utah Code Annotated § 49-11-102(55)(a): "Tier II" means a system or plan under this title provided in lieu of a Tier I system or plan for an employee, governor, legislator, or full-time elected official who does not have Tier I service credit in a system or plan under this title:
Utah Code Annotated § 49-11-102(55)(a)(i): if the employee initially enters regular full-time employment on or after July 1, 2011; or
Utah Code Annotated § 49-11-102(55)(a)(ii): if the governor, legislator, or full-time elected official initially enters office on or after July 1, 2011.
Utah Code Annotated § 49-11-102(55)(b): Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System; Chapter 22, Part 4, Tier II Defined Contribution Plan; Chapter 23, Part 4, Tier II Defined Contribution Plan "Tier II" includes:
Utah Code Annotated § 49-11-102(55)(b)(i): Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System the Tier II hybrid system established under:
Utah Code Annotated § 49-11-102(55)(b)(i)(A): Chapter 22, Part 3, Tier II Hybrid Retirement System
Utah Code Annotated § 49-11-102(55)(b)(i)(B): Chapter 23, Part 3, Tier II Hybrid Retirement System
Utah Code Annotated § 49-11-102(55)(b)(ii): Chapter 22, Part 4, Tier II Defined Contribution Plan; Chapter 23, Part 4, Tier II Defined Contribution Plan the Tier II Defined Contribution Plan (Tier II DC Plan) established under:
Utah Code Annotated § 49-11-102(55)(b)(ii)(A): Chapter 22, Part 4, Tier II Defined Contribution Plan
Utah Code Annotated § 49-11-102(55)(b)(ii)(B): Chapter 23, Part 4, Tier II Defined Contribution Plan
Utah Code Annotated § 49-11-102(56): "Unfunded actuarial accrued liability" or "UAAL":
Utah Code Annotated § 49-11-102(56)(a): is determined by the system's actuary; and
Utah Code Annotated § 49-11-102(56)(b): means the excess, if any, of the accrued liability of a retirement system over the actuarial value of its assets.
Utah Code Annotated § 49-11-102(57): "Voluntary deferrals" means an amount contributed by a participant into that participant's defined contribution account.
Utah Code Annotated § 49-11-103 Purpose -- Liberal construction.
----------------------------------------------------------------
Utah Code Annotated § 49-11-103(1): The purpose of this title is to establish:
Utah Code Annotated § 49-11-103(1)(a): retirement systems and the Utah Governors' and Legislators' Retirement Plan for members which provide:
Utah Code Annotated § 49-11-103(1)(a)(i): a uniform system of membership;
Utah Code Annotated § 49-11-103(1)(a)(ii): retirement requirements;
Utah Code Annotated § 49-11-103(1)(a)(iii): benefits for members;
Utah Code Annotated § 49-11-103(1)(a)(iv): funding on an actuarially sound basis;
Utah Code Annotated § 49-11-103(1)(a)(v): contributions; and
Utah Code Annotated § 49-11-103(1)(a)(vi): economy and efficiency in public service; and
Utah Code Annotated § 49-11-103(1)(b): a central administrative office and a board to administer the various systems, plans, and programs established by the Legislature or the board.
Utah Code Annotated § 49-11-103(2): This title shall be liberally construed to provide maximum benefits and protections consistent with sound fiduciary and actuarial principles.
Utah Code Annotated § 49-11-201 Establishment of retirement office -- An independent state agency -- Office exemption.
----------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-201(1):
Utah Code Annotated § 49-11-201(1)(a): There is established the Utah State Retirement Office, which may also be known and function as the Utah State Retirement Systems or the Utah Retirement Systems.
Utah Code Annotated § 49-11-201(1)(b): The office shall administer the systems, plans, and programs and perform all other functions assigned to it under this title.
Utah Code Annotated § 49-11-201(2):
Utah Code Annotated § 49-11-201(2)(a): The office is an independent state agency.
Utah Code Annotated § 49-11-201(2)(b): It is subject to legislative and executive department budgetary review and comment.
Utah Code Annotated § 49-11-201(3): The office may establish branch offices upon approval of the board.
Utah Code Annotated § 49-11-201(4): The board and office are exempt from those acts which are applicable to state and other governmental entities under this code.
Utah Code Annotated § 49-11-202 Establishment of Utah State Retirement Board -- Quorum -- Terms -- Officers -- Expenses and per diem.
-------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-202(1): There is established the Utah State Retirement Board composed of seven board members determined as follows:
Utah Code Annotated § 49-11-202(1)(a): Four board members, with experience in investments or banking, shall be appointed by the governor from the general public.
Utah Code Annotated § 49-11-202(1)(b): One board member shall be a school employee appointed by the governor from at least three nominations submitted by the governing board of the school employees' association that is representative of a majority of the school employees who are members of a system administered by the board.
Utah Code Annotated § 49-11-202(1)(c): One board member shall be a public employee appointed by the governor from at least three nominations submitted by the governing board of the public employee association that is representative of a majority of the public employees who are members of a system administered by the board.
Utah Code Annotated § 49-11-202(1)(d): One board member shall be the state treasurer.
Utah Code Annotated § 49-11-202(2): Four board members constitute a quorum for the transaction of business.
Utah Code Annotated § 49-11-202(3):
Utah Code Annotated § 49-11-202(3)(a): All appointments to the board shall be made on a nonpartisan basis, with the advice and consent of the Senate.
Utah Code Annotated § 49-11-202(3)(b): Board members shall serve until their successors are appointed and take the constitutional oath of office.
Utah Code Annotated § 49-11-202(3)(c): When a vacancy occurs on the board for any reason, the replacement shall be appointed for the unexpired term.
Utah Code Annotated § 49-11-202(4): (4)(b); (4)(a); (1)(a)
Utah Code Annotated § 49-11-202(4)(a): (4)(b) Except as required by Subsection
Utah Code Annotated § 49-11-202(4)(b): (4)(a); (1)(a) Notwithstanding the requirements of Subsection
Utah Code Annotated § 49-11-202(4)(b)(i): approximately half of the board is appointed every two years; and
Utah Code Annotated § 49-11-202(4)(b)(ii): (1)(a) no more than two of the board members appointed under Subsection
Utah Code Annotated § 49-11-202(4)(c): A board member who is appointed as a school employee or as a public employee who retires or who is no longer employed with a participating employer shall immediately resign from the board.
Utah Code Annotated § 49-11-202(5): 63A-3-106; 63A-3-107; 63A-3-106; 63A-3-107
Utah Code Annotated § 49-11-202(5)(a): Each year the board shall elect a president and vice president from its membership.
Utah Code Annotated § 49-11-202(5)(b): 63A-3-106; 63A-3-107; 63A-3-106; 63A-3-107 A board member may not receive compensation or benefits for the board member's service, but may receive per diem and travel expenses in accordance with:
Utah Code Annotated § 49-11-202(5)(b)(i): 63A-3-106 Section
Utah Code Annotated § 49-11-202(5)(b)(ii): 63A-3-107 Section
Utah Code Annotated § 49-11-202(5)(b)(iii): 63A-3-106; 63A-3-107 rules made by the Division of Finance pursuant to Sections
Utah Code Annotated § 49-11-203 Powers and duties of board.
-----------------------------------------------------------
Utah Code Annotated § 49-11-203(1): 49-11-613 The board shall:
Utah Code Annotated § 49-11-203(1)(a): appoint an executive director to administer the office;
Utah Code Annotated § 49-11-203(1)(b): receive and act upon reports covering the operations of the systems, plans, programs, and funds administered by the office;
Utah Code Annotated § 49-11-203(1)(c): ensure that the systems, plans, programs, and funds are administered according to law;
Utah Code Annotated § 49-11-203(1)(d): 49-11-613 review any final order of a hearing officer and approve or modify the order at the board's discretion in accordance with Section
Utah Code Annotated § 49-11-203(1)(e): examine and approve an annual operating budget for the office;
Utah Code Annotated § 49-11-203(1)(f): serve as investment trustees of the Utah State Retirement Investment Fund as provided under this title;
Utah Code Annotated § 49-11-203(1)(g): maintain, in conjunction with participating employers and members, the systems, plans, and programs on an actuarially sound basis;
Utah Code Annotated § 49-11-203(1)(h): report annually to the governor, the Legislature, and each participating employer the contribution rates, premium rates, and any adjustments necessary to maintain the systems, plans, and programs on a financially and actuarially sound basis;
Utah Code Annotated § 49-11-203(1)(i): receive and act upon recommendations of the executive director;
Utah Code Annotated § 49-11-203(1)(j): recommend to the governor and Legislature, through the executive director, any necessary or desirable changes to this title;
Utah Code Annotated § 49-11-203(1)(k): develop broad policy for the long-term operation of the various systems, plans, and programs under broad discretion and power to perform the board's policymaking functions, including the specific authority to interpret and define any provision or term under this title when the board or office provides written documentation which demonstrates that the interpretation or definition promotes uniformity in the administration of the systems or maintains the actuarial soundness of the systems, plans, or programs;
Utah Code Annotated § 49-11-203(1)(l): adopt interest rates, premium rates, and annual contribution rates after reviewing actuarial recommendations;
Utah Code Annotated § 49-11-203(1)(m): establish the compensation of the executive director and adopt compensation plans and policies based on market surveys for positions in the office;
Utah Code Annotated § 49-11-203(1)(n): take action consistent with this title for the administration of the systems, plans, and programs in order to carry out the purposes of this title;
Utah Code Annotated § 49-11-203(1)(o): provide for audits of the systems, plans, programs, and funds;
Utah Code Annotated § 49-11-203(1)(p): take actions not in conflict with the board's trust and fiduciary responsibilities or other law, with respect to the governance of the office which are substantially similar to those governing other public agencies;
Utah Code Annotated § 49-11-203(1)(q): in accordance with the board's fiduciary responsibilities, make investment decisions with the sole purpose of maximizing the risk-adjusted return on the investments;
Utah Code Annotated § 49-11-203(1)(r): to the extent practicable:
Utah Code Annotated § 49-11-203(1)(r)(i):
Utah Code Annotated § 49-11-203(1)(r)(i)(A): retain the right to vote investor proxies; or
Utah Code Annotated § 49-11-203(1)(r)(i)(B): if the investments are commingled with another investor's funds, request the right to vote investor proxies; and
Utah Code Annotated § 49-11-203(1)(r)(ii): ensure proxy voting is exercised to maximize risk-adjusted returns for the exclusive benefit of beneficiaries;
Utah Code Annotated § 49-11-203(1)(s): make proxy voting records available to the state treasurer upon the state treasurer's request; and
Utah Code Annotated § 49-11-203(1)(t): otherwise exercise the powers and perform the duties conferred on the board by this title.
Utah Code Annotated § 49-11-203(2): The board may:
Utah Code Annotated § 49-11-203(2)(a): subpoena witnesses and compel the witnesses' attendance to testify before the board, for which purpose each board member may administer oaths and affirmations to witnesses and others transacting business of the office;
Utah Code Annotated § 49-11-203(2)(b): establish councils to recommend to the board and the executive director policies affecting members of any systems, plans, and programs administered by the board;
Utah Code Annotated § 49-11-203(2)(c): pay the travel expenses of council members who attend council meetings; and
Utah Code Annotated § 49-11-203(2)(d): sue and be sued in the board's own name.
Utah Code Annotated § 49-11-203(3): (1)(s) The state treasurer is subject to the same restrictions on disclosure of the proxy voting records described in Subsection
Utah Code Annotated § 49-11-204 Powers and duties of executive director.
------------------------------------------------------------------------
The executive director shall:Utah Code Annotated § 49-11-204(1): act as the executive officer of the board and the office;
Utah Code Annotated § 49-11-204(2): administer the various systems, plans, programs, and functions assigned to the board or office;
Utah Code Annotated § 49-11-204(3): subject to board review, develop and implement internal policies and procedures which administer and govern the day-to-day operations of the systems, plans, and programs;
Utah Code Annotated § 49-11-204(4): 49-11-613 transmit orders of a hearing officer made under Section
Utah Code Annotated § 49-11-204(5): 49-11-618 provide information concerning the operation of the office to the board, the governor, the Legislature, participating employers, and employer and employee associations, unless otherwise restricted under Section
Utah Code Annotated § 49-11-204(6): inform the Legislature of any recommendations from the board regarding any necessary or desirable changes to this title;
Utah Code Annotated § 49-11-204(7): consult with the Legislature on all legislation under this title;
Utah Code Annotated § 49-11-204(8):
Utah Code Annotated § 49-11-204(8)(a): recommend to the board an annual administrative budget covering the operations of the office and, upon approval, submit the budget along with the actuarial status of the funds to the governor and the Legislature for review and comment; and
Utah Code Annotated § 49-11-204(8)(b): direct and control the subsequent expenditures of the budget;
Utah Code Annotated § 49-11-204(9): employ, within the limitations of the budget, personnel to administer the systems, plans, programs, and funds assigned to the office, including consultants, actuaries, attorneys, medical examiners, investment counselors, and accountants to accomplish the purposes of this title;
Utah Code Annotated § 49-11-204(10): establish independent financial records for each of the systems, plans, and programs or combine all financial records using acceptable principles of accounting to identify the assets and vested interests of each system, plan, or program;
Utah Code Annotated § 49-11-204(11): maintain individual records necessary to provide benefits under this title;
Utah Code Annotated § 49-11-204(12): keep in convenient form all records, accounts, and data necessary for the administration and actuarial valuation of the systems, plans, and programs;
Utah Code Annotated § 49-11-204(13): adopt fees, charges, and upon the recommendation of the actuary, interest rates and tables for the administration of the systems, plans, and programs;
Utah Code Annotated § 49-11-204(14): make payment of all monthly allowances and any defined contribution distributions, and may consolidate payments at the sole discretion of the executive director;
Utah Code Annotated § 49-11-204(15): ensure that the integrity of the various funds is maintained through appropriate accounting records;
Utah Code Annotated § 49-11-204(16): at least every three years:
Utah Code Annotated § 49-11-204(16)(a): make an actuarial investigation into the mortality, service, and other experience of the members, participants, beneficiaries, and covered individuals of the systems, plans, and programs;
Utah Code Annotated § 49-11-204(16)(b): actuarially value the assets and liabilities of the administered funds and accounts; and
Utah Code Annotated § 49-11-204(16)(c): determine the rate of interest being earned by the funds;
Utah Code Annotated § 49-11-204(17): (16) report to the board findings under Subsection
Utah Code Annotated § 49-11-204(18): regulate participating employers by:
Utah Code Annotated § 49-11-204(18)(a): educating them on their duties imposed by this title;
Utah Code Annotated § 49-11-204(18)(b): specifying the time, place, and manner in which contributions shall be withheld and paid; and
Utah Code Annotated § 49-11-204(18)(c): requiring any reports necessary for the administration of this title; and
Utah Code Annotated § 49-11-204(19): otherwise exercise the powers and perform the duties conferred on the executive director by this title.
Utah Code Annotated § 49-11-205 Membership Council established -- Members -- Chair -- Duties -- Expenses and per diem.
----------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-205(1): (5) There is established a Membership Council to perform the duties under Subsection
Utah Code Annotated § 49-11-205(2): The Membership Council shall be composed of 15 council members selected as follows:
Utah Code Annotated § 49-11-205(2)(a): three council members shall be school employees selected by the governing board of an association representative of a majority of school employees who are members of a system administered by the board;
Utah Code Annotated § 49-11-205(2)(b): one council member shall be a classified school employee selected by the governing board of the association representative of a majority of classified school employees who are members of a system administered by the board;
Utah Code Annotated § 49-11-205(2)(c): two council members shall be public employees selected by the governing board of the association representative of a majority of the public employees who are members of a system administered by the board;
Utah Code Annotated § 49-11-205(2)(d): one council member shall be a municipal officer or employee selected by the governing board of the association representative of a majority of the municipalities who participate in a system administered by the board;
Utah Code Annotated § 49-11-205(2)(e): one council member shall be a county officer or employee selected by the governing board of the association representative of a majority of counties who participate in a system administered by the board;
Utah Code Annotated § 49-11-205(2)(f): one council member shall be a representative of members of the Judges' Noncontributory Retirement System selected by the Judicial Council;
Utah Code Annotated § 49-11-205(2)(g): one council member shall be a representative of members of the Public Safety Retirement Systems selected by the governing board of the association representative of the majority of peace officers who are members of the Public Safety Retirement Systems;
Utah Code Annotated § 49-11-205(2)(h): one council member shall be a representative of members of the Firefighters' Retirement System selected by the governing board of the association representative of the majority of paid professional firefighters who are members of the Firefighters' Retirement System;
Utah Code Annotated § 49-11-205(2)(i): one council member shall be a retiree selected by the governing board of the association representing the largest number of retirees, who are not public education retirees, from the Public Employees' Contributory, Public Employees' Noncontributory, and New Public Employees' Tier II Contributory Retirement Systems;
Utah Code Annotated § 49-11-205(2)(j): one council member shall be a retiree selected by the governing board of the association representing the largest number of public education retirees;
Utah Code Annotated § 49-11-205(2)(k): one council member shall be a school business official selected by the governing board of the association representative of a majority of the school business officials from public education employers who participate in a system administered by the board; and
Utah Code Annotated § 49-11-205(2)(l): one council member shall be a special district officer or employee selected by the governing board of the association representing the largest number of special service districts and special districts who participate in a system administered by the board.
Utah Code Annotated § 49-11-205(3): (2); (3)(a)
Utah Code Annotated § 49-11-205(3)(a): (2) Each entity granted authority to select council members under Subsection
Utah Code Annotated § 49-11-205(3)(b): (3)(a) Each term on the council shall be for a period of four years, subject to Subsection
Utah Code Annotated § 49-11-205(3)(c): Each term begins on July 1 and expires on June 30.
Utah Code Annotated § 49-11-205(3)(d): When a vacancy occurs on the council for any reason, the replacement shall be selected for the remainder of the unexpired term.
Utah Code Annotated § 49-11-205(4): The council shall annually designate one council member as chair.
Utah Code Annotated § 49-11-205(5): 49-11-613 The council shall:
Utah Code Annotated § 49-11-205(5)(a): recommend to the board and to the Legislature benefits and policies for members of any system or plan administered by the board;
Utah Code Annotated § 49-11-205(5)(b): recommend procedures and practices to improve the administration of the systems and plans and the public employee relations responsibilities of the board and office;
Utah Code Annotated § 49-11-205(5)(c): 49-11-613 examine the record of all decisions affecting retirement benefits made by a hearing officer under Section
Utah Code Annotated § 49-11-205(5)(d): submit nominations to the board for the position of executive director if that position is vacant;
Utah Code Annotated § 49-11-205(5)(e): advise and counsel with the board and the director on policies affecting members of the various systems administered by the office; and
Utah Code Annotated § 49-11-205(5)(f): perform other duties assigned to it by the board.
Utah Code Annotated § 49-11-205(6): 63A-3-106; 63A-3-107; 63A-3-106; 63A-3-107 A member of the council may not receive compensation or benefits for the member's service, but may receive per diem and travel expenses in accordance with:
Utah Code Annotated § 49-11-205(6)(a): 63A-3-106 Section
Utah Code Annotated § 49-11-205(6)(b): 63A-3-107 Section
Utah Code Annotated § 49-11-205(6)(c): 63A-3-106; 63A-3-107 rules made by the Division of Finance pursuant to Sections
Utah Code Annotated § 49-11-301 Creation -- Board to act as trustees of the fund -- Commingling and pooling of funds -- Interest earnings -- Funded ratio.
----------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-301(1):
Utah Code Annotated § 49-11-301(1)(a): There is created a common trust fund known as the "Utah State Retirement Investment Fund" for the purpose of enlarging the investment base and simplifying investment procedures and functions.
Utah Code Annotated § 49-11-301(1)(b): The Utah State Retirement Investment Fund may sue and be sued in its own name.
Utah Code Annotated § 49-11-301(2):
Utah Code Annotated § 49-11-301(2)(a): The board shall act as trustees of the Utah State Retirement Investment Fund and, through the executive director, may commingle and pool the funds and investments of any system, plan, or program into the Utah State Retirement Investment Fund, if the principal amounts of the participating funds do not lose their individual identity and are maintained as separate trust funds on the books of the office.
Utah Code Annotated § 49-11-301(2)(b):
Utah Code Annotated § 49-11-301(2)(b)(i): In combining the investments of any fund, each of the participating funds shall be credited initially with its share of the total assets transferred to the Utah State Retirement Investment Fund.
Utah Code Annotated § 49-11-301(2)(b)(ii): The value of the transferred assets shall be calculated in accordance with generally accepted accounting principles.
Utah Code Annotated § 49-11-301(2)(c): Subsequent transfers of additional capital from participating funds shall be credited similarly to its respective trust account.
Utah Code Annotated § 49-11-301(2)(d): The income or principal or equity credit belonging to one participating fund may not be transferred to another, except for the purpose of:
Utah Code Annotated § 49-11-301(2)(d)(i): actuarially recommended transfers in order to adjust employer contribution rates for an employer that participates in both contributory and noncontributory systems; or
Utah Code Annotated § 49-11-301(2)(d)(ii): transfers which reflect the value of service credit accrued in different systems during a member's career.
Utah Code Annotated § 49-11-301(3): The assets of the funds are for the exclusive benefit of the members, participants, and covered individuals and may not be diverted or appropriated for any purpose other than that permitted by this title.
Utah Code Annotated § 49-11-301(4):
Utah Code Annotated § 49-11-301(4)(a): Interest and other earnings shall be credited to each participating fund on a pro rata equity position basis.
Utah Code Annotated § 49-11-301(4)(b):
Utah Code Annotated § 49-11-301(4)(b)(i): A portion of the interest and other earnings of the common trust fund may be credited to a reserve account within the Utah State Retirement Investment Fund to meet adverse experiences arising from investments or other contingencies.
Utah Code Annotated § 49-11-301(4)(b)(ii): Each participating fund shall retain its proportionate equity in the reserve account.
Utah Code Annotated § 49-11-301(5): (6)
Utah Code Annotated § 49-11-301(5)(a): The actuarial funded ratio of the systems may reach and be maintained at 110%, as determined by the board's actuary using assumptions adopted by the board, before the board is required to certify a decrease in contribution rates.
Utah Code Annotated § 49-11-301(5)(b): (6) Except as provided in Subsection
Utah Code Annotated § 49-11-301(6): 49-11-102(14); 49-11-203(1)(l); (5)(a)
Utah Code Annotated § 49-11-301(6)(a): 49-11-102(14); 49-11-203(1)(l) The cost of any amendment to this title shall be included in the final contribution rates adopted and certified by the board in accordance with Subsections
Utah Code Annotated § 49-11-301(6)(b): (5)(a) If a preliminary certified contribution rate approved by the board prior to an annual general session or special session of the Legislature was maintained at a previous year's level that is higher than the contribution rate calculated by the board's actuary for that year in accordance with Subsection
Utah Code Annotated § 49-11-302 Board duties with respect to fund.
------------------------------------------------------------------
Utah Code Annotated § 49-11-302(1): The board:
Utah Code Annotated § 49-11-302(1)(a): shall review and establish the asset allocation of the Utah State Retirement Investment Fund for investment, and with the executive director, shall determine the method of investing the funds;
Utah Code Annotated § 49-11-302(1)(b): through the executive director:
Utah Code Annotated § 49-11-302(1)(b)(i): shall invest the money in the Utah State Retirement Investment Fund; and
Utah Code Annotated § 49-11-302(1)(b)(ii): may provide for the holding, purchasing, selling, assigning, transferring, and disposing of any of the securities and investments in which any of the money of the Utah
Utah Code Annotated § 49-11-302(2): Fees for all services shall be paid from the interest earnings of the Utah State Retirement Investment Fund.
Utah Code Annotated § 49-11-302(3): Title to real estate or any other fund investment may be:
Utah Code Annotated § 49-11-302(3)(a): held in the name of the Utah State Retirement Investment Fund; or
Utah Code Annotated § 49-11-302(3)(b): held in another name or names as determined by the board.
Utah Code Annotated § 49-11-303 Fund investment standard -- Prudent investor rule.
----------------------------------------------------------------------------------
The fund shall be invested in accordance with the prudent investor rule established in
Utah Code Annotated § 49-11-304 Administrative costs -- Payable from fund.
--------------------------------------------------------------------------
General administrative costs of operating the office shall be assessed to the systems, plans, programs, and funds on a pro rata basis and shall be paid from earnings of the Utah State Retirement Investment Fund.
Utah Code Annotated § 49-11-305 Self-insurance option -- Purchase of liability insurance.
-----------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-305(1): The office may self insure and may purchase commercial insurance in any amount.
Utah Code Annotated § 49-11-305(2): The office may also purchase excess commercial insurance above the limits provided by the Governmental Immunity Act against any:
Utah Code Annotated § 49-11-305(2)(a): risk created or recognized by the Governmental Immunity Act; or
Utah Code Annotated § 49-11-305(2)(b): other action for which the board, office, or any of its employees, may be held liable.
Utah Code Annotated § 49-11-306 Definitions -- Scrutinized companies investment report -- Content -- Reporting -- Exceptions.
-----------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-306(1): 49-11-301 As used in this section:
Utah Code Annotated § 49-11-306(1)(a): "Active business operations" means all business operations that are not inactive business operations.
Utah Code Annotated § 49-11-306(1)(b):
Utah Code Annotated § 49-11-306(1)(b)(i): "Business operations" means investing, with actual knowledge on or after August 5, 1996, in Iran's petroleum sector which investment directly and significantly contributes to the enhancement of Iran's ability to develop the petroleum resources of Iran.
Utah Code Annotated § 49-11-306(1)(b)(ii): "Business operations" does not include the retail sale of gasoline and related consumer products.
Utah Code Annotated § 49-11-306(1)(c): "Company" means any foreign sole proprietorship, organization, association, corporation, partnership, joint venture, limited partnership, limited liability partnership, limited liability company, or any other foreign entity or business association, including all wholly-owned subsidiaries, majority-owned subsidiaries or parent companies or affiliates of these entities or business associations, that exists for the purpose of making a profit.
Utah Code Annotated § 49-11-306(1)(d):
Utah Code Annotated § 49-11-306(1)(d)(i): "Direct holdings" means all publicly traded equity securities of a company that are held directly by the investment fund or in an account or fund in which the investment fund owns all shares or interests.
Utah Code Annotated § 49-11-306(1)(d)(ii): "Direct holdings" does not include publicly traded equity securities of a company held as part of a passive indexing investment strategy.
Utah Code Annotated § 49-11-306(1)(e): "Inactive business operations" means the continued holding or renewal of rights to property previously operated for the purpose of generating revenues but not presently deployed for that purpose.
Utah Code Annotated § 49-11-306(1)(f): 49-11-301 "Investment fund" means the Utah State Retirement Investment Fund created in Section
Utah Code Annotated § 49-11-306(1)(g): "Iran" means the Islamic Republic of Iran.
Utah Code Annotated § 49-11-306(1)(h): "Petroleum resources" means petroleum or natural gas.
Utah Code Annotated § 49-11-306(1)(i): "Scrutinized business operations" means any active business operations that:
Utah Code Annotated § 49-11-306(1)(i)(i): are subject to or liable for sanctions under Public Law 104-172, the Iran Sanctions Act of 1996, as amended; and
Utah Code Annotated § 49-11-306(1)(i)(ii): involve the maintenance of:
Utah Code Annotated § 49-11-306(1)(i)(ii)(A): the company's existing assets or investments in Iran; or
Utah Code Annotated § 49-11-306(1)(i)(ii)(B): the deployment of new investments to Iran that meet or exceed the threshold referred to in Public Law 104-172, the Iran Sanctions Act of 1996, as amended.
Utah Code Annotated § 49-11-306(1)(j): "Scrutinized company" means any company engaging in scrutinized business operations.
Utah Code Annotated § 49-11-306(2):
Utah Code Annotated § 49-11-306(2)(a):
Utah Code Annotated § 49-11-306(2)(a)(i): The Utah State Retirement Office shall identify the scrutinized companies in which the investment fund has direct holdings.
Utah Code Annotated § 49-11-306(2)(a)(ii): In making the determination, the board shall review and rely on publicly available information regarding companies with business operations in Iran, including information provided by nonprofit organizations, research firms, international organizations, and government entities.
Utah Code Annotated § 49-11-306(2)(b): The office shall assemble a list of all identified scrutinized companies.
Utah Code Annotated § 49-11-306(2)(c): The office shall update the list, on an annual basis, with information provided and received from those entities listed in Subsection (2)(a).
Utah Code Annotated § 49-11-306(3): The office shall prepare an annual report of investment fund investments in scrutinized companies.
Utah Code Annotated § 49-11-306(4): The report shall include amounts and other data and statistics designed to explain the past and current extent to which public fund investments in scrutinized companies:
Utah Code Annotated § 49-11-306(4)(a): are present; and
Utah Code Annotated § 49-11-306(4)(b): are being prevented under Subsection (6).
Utah Code Annotated § 49-11-306(5): 63E-1-201 The report shall be provided to the governor, the board, the president of the Senate, the speaker of the House of Representatives, and to each member and staff of the Retirement and Independent Entities Committee created under Section
Utah Code Annotated § 49-11-306(6): Using the most current list assembled under Subsection (2), the office shall prevent the investment of investment fund's direct holdings in a scrutinized company:
Utah Code Annotated § 49-11-306(6)(a): for funds managed within the office, by not investing in direct holdings in a scrutinized company; and
Utah Code Annotated § 49-11-306(6)(b): for funds managed by contract by a professional investment manager:
Utah Code Annotated § 49-11-306(6)(b)(i): for existing contracts, by requesting that no more direct holdings be acquired in a scrutinized company; and
Utah Code Annotated § 49-11-306(6)(b)(ii): for future contracts, by stipulating in the contract that no new direct holdings be acquired in a scrutinized company.
Utah Code Annotated § 49-11-306(7): 49-11-102 The provisions of this section do not apply to:
Utah Code Annotated § 49-11-306(7)(a): 49-11-102 money invested in a defined contribution plan as defined under Section
Utah Code Annotated § 49-11-306(7)(b): investments in a company that is primarily engaged in:
Utah Code Annotated § 49-11-306(7)(b)(i): supplying goods or services intended to relieve human suffering in Iran; or
Utah Code Annotated § 49-11-306(7)(b)(ii): promoting health, education, religious, welfare, or journalistic activities in Iran.
Utah Code Annotated § 49-11-307 Report on funded status -- Study of compensation.
---------------------------------------------------------------------------------
Utah Code Annotated § 49-11-307(1): 63E-1-201; (1)(a)
Utah Code Annotated § 49-11-307(1)(a): 63E-1-201 The office shall report the funded status of the Utah State Retirement Investment Fund to the Retirement and Independent Entities Committee created under Section
Utah Code Annotated § 49-11-307(1)(b): (1)(a) The report under Subsection
Utah Code Annotated § 49-11-307(2): 63E-1-201
Utah Code Annotated § 49-11-307(2)(a): If the Utah State Retirement Investment Fund reaches a funded status of 100%, the office shall make a report to that effect.
Utah Code Annotated § 49-11-307(2)(b): 63E-1-201 The report shall be provided to the governor, the board, the president of the Senate, the speaker of the House of Representatives, and to each member and staff of the Retirement and Independent Entities Committee created under Section
Utah Code Annotated § 49-11-307(3): (2)(b) Upon receipt of the report under Subsection
Utah Code Annotated § 49-11-307(4): The committee shall report any findings and recommendations to the Legislative Management Committee.
Utah Code Annotated § 49-11-401 Transfer of service credit -- Eligibility for service credit -- Computation of service credit -- Retirement from most recent system.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-401(1):
Utah Code Annotated § 49-11-401(1)(a): The office shall make the transfer of service credit, together with related member and participating employer contributions, from one system to another upon terms and conditions established by the board.
Utah Code Annotated § 49-11-401(1)(b): The terms and conditions may not result in a loss of accrued benefits.
Utah Code Annotated § 49-11-401(2): An employee does not lose active member status by transferring employment from a position covered by one system to a position covered by another system.
Utah Code Annotated § 49-11-401(3): In the accrual of service credit, the following provisions apply:
Utah Code Annotated § 49-11-401(3)(a):
Utah Code Annotated § 49-11-401(3)(a)(i): a person employed and compensated by a participating employer who meets the eligibility requirements for membership in a system or the Utah Governors' and Legislators' Retirement Plan shall receive service credit for the term of the employment provided that all required contributions are paid to the office; and
Utah Code Annotated § 49-11-401(3)(a)(ii): the person may not receive service credit for a term of employment until all required contributions related to that service credit have been paid to the office;
Utah Code Annotated § 49-11-401(3)(b): an allowance or other benefit may not accrue under this title which is based upon the same period of employment as has been the basis for any retirement benefits under some other public retirement system;
Utah Code Annotated § 49-11-401(3)(c):
Utah Code Annotated § 49-11-401(3)(c)(i): the board shall fix the minimum time per day, per month, and per year upon the basis of which one year of service and proportionate parts of a year shall be credited toward qualification for retirement;
Utah Code Annotated § 49-11-401(3)(c)(ii): service may be computed on a fiscal or calendar year basis and portions of years served shall be accumulated and counted as service; and
Utah Code Annotated § 49-11-401(3)(c)(iii): in any event, all of the service rendered in any one fiscal or calendar year may not count for more than one year;
Utah Code Annotated § 49-11-401(3)(d): service credit shall be accrued on a fiscal or calendar year basis as determined by the participating employer;
Utah Code Annotated § 49-11-401(3)(e): a member may not accrue more than one year of service credit per fiscal or calendar year as determined by the office; and
Utah Code Annotated § 49-11-401(3)(f): fractions of years of service credit shall be accumulated and counted in proportion to the work performed.
Utah Code Annotated § 49-11-401(4): The office may estimate the amount of service credit, compensation, or age of any member, participant, or alternate payee, if information is not contained in the records.
Utah Code Annotated § 49-11-401(5): A member shall retire from the system that most recently covered the member.
Utah Code Annotated § 49-11-401(6): Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act; Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act; Chapter 12, Public Employees' Contributory Retirement Act; Chapter 13, Public Employees' Noncontributory Retirement Act; Chapter 14, Public Safety Contributory Retirement Act; Chapter 15, Public Safety Noncontributory Retirement Act; Chapter 16, Firefighters' Retirement Act; Chapter 19, Utah Governors' and Legislators' Retirement Act
Utah Code Annotated § 49-11-401(6)(a): Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act Under no circumstances may service credit earned by a member under
Utah Code Annotated § 49-11-401(6)(b): Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act; Chapter 12, Public Employees' Contributory Retirement Act; Chapter 13, Public Employees' Noncontributory Retirement Act; Chapter 14, Public Safety Contributory Retirement Act; Chapter 15, Public Safety Noncontributory Retirement Act; Chapter 16, Firefighters' Retirement Act; Chapter 19, Utah Governors' and Legislators' Retirement Act Under no circumstances may service credit earned by a member under one of the following systems be transferable to the system created under
Utah Code Annotated § 49-11-401(6)(b)(i): Chapter 12, Public Employees' Contributory Retirement Act
Utah Code Annotated § 49-11-401(6)(b)(ii): Chapter 13, Public Employees' Noncontributory Retirement Act
Utah Code Annotated § 49-11-401(6)(b)(iii): Chapter 14, Public Safety Contributory Retirement Act
Utah Code Annotated § 49-11-401(6)(b)(iv): Chapter 15, Public Safety Noncontributory Retirement Act
Utah Code Annotated § 49-11-401(6)(b)(v): Chapter 16, Firefighters' Retirement Act
Utah Code Annotated § 49-11-401(6)(b)(vi): Chapter 19, Utah Governors' and Legislators' Retirement Act
Utah Code Annotated § 49-11-402 Purchase of military service credit.
--------------------------------------------------------------------
Utah Code Annotated § 49-11-402(1): (7); (1)(b); (2) Except as provided under Subsection
Utah Code Annotated § 49-11-402(1)(a): the member, the participating employer, or the member and participating employer jointly shall make the required payments, as determined by the office, to the system in which the member participated at the time of the official call, according to the law governing that particular system;
Utah Code Annotated § 49-11-402(1)(b): prior to a member's retirement date, the required payments shall be made:
Utah Code Annotated § 49-11-402(1)(b)(i): during the period of full-time United States military service;
Utah Code Annotated § 49-11-402(1)(b)(ii): after the military service, but within a period not to exceed three times the period of military service up to a maximum of five years; or
Utah Code Annotated § 49-11-402(1)(b)(iii): as otherwise allowed by federal law;
Utah Code Annotated § 49-11-402(1)(c): required payments shall be based on the member's compensation at the time of the official military call;
Utah Code Annotated § 49-11-402(1)(d): (1)(b); (2) if a required payment is not made within the time allowed under Subsection
Utah Code Annotated § 49-11-402(1)(e): the member shall return to employment with the participating employer upon receiving an honorable discharge from military service and there may not be intervening employment outside of the employment with the participating employer.
Utah Code Annotated § 49-11-402(2):
Utah Code Annotated § 49-11-402(2)(a): A member, a participating employer, or a member and a participating employer jointly, may purchase service credit for full-time United States military service, resulting from an official call to duty, if the member has four or more years of service credit and the military service does not otherwise qualify for service credit under this title.
Utah Code Annotated § 49-11-402(2)(b): Payment to the office for a military service credit purchase shall be made to the system under which the member is currently covered in an amount determined by the office based on a formula recommended by the actuary and adopted by the board.
Utah Code Annotated § 49-11-402(2)(c): The purchase shall be made through payroll deductions or through a lump sum deposit based upon the present value of future payments.
Utah Code Annotated § 49-11-402(2)(d): If total payment is not completed prior to retirement, service credit shall be prorated in accordance with the amount paid.
Utah Code Annotated § 49-11-402(3): (2) For purposes of Subsection
Utah Code Annotated § 49-11-402(4):
Utah Code Annotated § 49-11-402(4)(a): If any of the factors used to determine the cost of a service credit purchase change at or before the member's retirement date, the cost of the purchase shall be recalculated.
Utah Code Annotated § 49-11-402(4)(b): If the recalculated cost exceeds the amount paid for the purchase, the member may:
Utah Code Annotated § 49-11-402(4)(b)(i): pay the increased cost, plus interest, to receive the full amount of service credit; or
Utah Code Annotated § 49-11-402(4)(b)(ii): not pay the increased cost and have the purchased service credit prorated.
Utah Code Annotated § 49-11-402(5): (4) If the recalculated cost under Subsection
Utah Code Annotated § 49-11-402(6):
Utah Code Annotated § 49-11-402(6)(a): The board may adopt rules under which a member may make the necessary payments to the office for purchases under this title as permitted by federal law.
Utah Code Annotated § 49-11-402(6)(b): The office may reject any payments if the office determines the tax status of the system, plans, or programs would be jeopardized by allowing the payment.
Utah Code Annotated § 49-11-402(7): (1) Notwithstanding the provisions under Subsection
Utah Code Annotated § 49-11-403 Purchase of public service credit not otherwise qualifying for benefit.
-------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-403(1): 49-11-404; (1)(g); (1)(h); (1)(i) A member, a participating employer, or a member and a participating employer jointly may purchase service credit equal to the period of the member's employment in the following:
Utah Code Annotated § 49-11-403(1)(a): United States federal employment;
Utah Code Annotated § 49-11-403(1)(b): employment in a private school based in the United States, if the member received an employer paid retirement benefit for the employment;
Utah Code Annotated § 49-11-403(1)(c): public employment in another state or territory of the United States which qualifies the member for membership in the public plan or system covering the employment, but only if the member does not qualify for any retirement benefits based on the employment;
Utah Code Annotated § 49-11-403(1)(d): forfeited service credit in this state if the member does not qualify for an allowance based on the service credit;
Utah Code Annotated § 49-11-403(1)(e): full-time public service while on an approved leave of absence;
Utah Code Annotated § 49-11-403(1)(f): 49-11-404 the period of time for which disability benefits were paid if:
Utah Code Annotated § 49-11-403(1)(f)(i): the member was receiving:
Utah Code Annotated § 49-11-403(1)(f)(i)(A): long-term disability benefits;
Utah Code Annotated § 49-11-403(1)(f)(i)(B): short-term disability benefits; or
Utah Code Annotated § 49-11-403(1)(f)(i)(C): worker's compensation disability benefits; and
Utah Code Annotated § 49-11-403(1)(f)(ii): 49-11-404 the member's employer had not entered into a benefit protection contract under Section
Utah Code Annotated § 49-11-403(1)(g): (1)(g) employment covered by a retirement plan offered by a public or private system, organization, or company designated by the Utah Board of Higher Education, if the member forfeits any retirement benefit from that retirement plan for the period of employment to be purchased under this Subsection
Utah Code Annotated § 49-11-403(1)(h): (1)(h) employment in a charter school located within the state if the member forfeits any retirement benefit under any other retirement system or plan for the period of employment to be purchased under this Subsection
Utah Code Annotated § 49-11-403(1)(i): (1)(i) employment with a participating employer that is exempt from coverage under this title under a written request for exemption with the office, if the member forfeits any retirement benefit under any other retirement system or plan for the period of employment to be purchased under this Subsection
Utah Code Annotated § 49-11-403(2): A member shall:
Utah Code Annotated § 49-11-403(2)(a): have at least four years of service credit before a purchase can be made under this section; and
Utah Code Annotated § 49-11-403(2)(b): forfeit service credit and any defined contribution balance based on employer contributions under any other retirement system or plan based on the period of employment for which service credit is being purchased.
Utah Code Annotated § 49-11-403(3):
Utah Code Annotated § 49-11-403(3)(a): To purchase credit under this section, the member, a participating employer, or a member and a participating employer jointly shall make payment to the system under which the member is currently covered.
Utah Code Annotated § 49-11-403(3)(b): The amount of the payment shall be determined by the office based on a formula that is:
Utah Code Annotated § 49-11-403(3)(b)(i): recommended by the actuary; and
Utah Code Annotated § 49-11-403(3)(b)(ii): adopted by the board.
Utah Code Annotated § 49-11-403(4): The purchase may be made through payroll deductions or through a lump sum deposit based upon the present value of future payments.
Utah Code Annotated § 49-11-403(5): Total payment must be completed prior to the member's effective date of retirement or service credit will be prorated in accordance with the amount paid.
Utah Code Annotated § 49-11-403(6):
Utah Code Annotated § 49-11-403(6)(a): For a purchase made before July 1, 2010, if any of the factors used to determine the cost of a service credit purchase change at or before the member's retirement date, the cost of the purchase shall be recalculated at the time of retirement.
Utah Code Annotated § 49-11-403(6)(b): For a purchase made before July 1, 2010, if the recalculated cost exceeds the amount paid for the purchase, the member, a participating employer, or a member and a participating employer jointly may:
Utah Code Annotated § 49-11-403(6)(b)(i): pay the increased cost, plus interest, to receive the full amount of service credit; or
Utah Code Annotated § 49-11-403(6)(b)(ii): not pay the increased cost and have the purchased service credit prorated.
Utah Code Annotated § 49-11-403(6)(c): For a purchase made on or after July 1, 2010:
Utah Code Annotated § 49-11-403(6)(c)(i): the purchase shall be made in accordance with rules:
Utah Code Annotated § 49-11-403(6)(c)(i)(A): adopted by the board based on recommendations by the board's actuary; and
Utah Code Annotated § 49-11-403(6)(c)(i)(B): in effect at the time the purchase is completed; and
Utah Code Annotated § 49-11-403(6)(c)(ii): the cost of the service credit purchase shall not be recalculated at the time of retirement.
Utah Code Annotated § 49-11-403(7): (6)(a) If the recalculated cost under Subsection
Utah Code Annotated § 49-11-403(8):
Utah Code Annotated § 49-11-403(8)(a): The board may adopt rules under which a member may make the necessary payments to the office for purchases under this title as permitted by federal law.
Utah Code Annotated § 49-11-403(8)(b): The office may reject any payments if the office determines the tax status of the system, plans, or programs would be jeopardized by allowing the payment.
Utah Code Annotated § 49-11-403(9): Chapter 22, Part 4, Tier II Defined Contribution Plan; Chapter 23, Part 4, Tier II Defined Contribution Plan An employee who elects to participate exclusively in the defined contribution plan under
Utah Code Annotated § 49-11-404 Benefit protection contract authorized -- Annual report required.
-------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-404(1): Chapter 21, Public Employees' Long-Term Disability Act; Title 31A, Insurance Code
Utah Code Annotated § 49-11-404(1)(a): A participating employer may establish a salary protection program under which the participating employer's employees are paid during periods of disability.
Utah Code Annotated § 49-11-404(1)(b): If a salary protection program is established, a participating employer may enter into benefit protection contracts with the office.
Utah Code Annotated § 49-11-404(1)(c): Chapter 21, Public Employees' Long-Term Disability Act; Title 31A, Insurance Code A salary protection program shall:
Utah Code Annotated § 49-11-404(1)(c)(i): pay benefits based on the rate of compensation of the member with a disability at the time of disability;
Utah Code Annotated § 49-11-404(1)(c)(ii): pay benefits over the period of the disability;
Utah Code Annotated § 49-11-404(1)(c)(iii): not include settlement or lump sum payments of any type;
Utah Code Annotated § 49-11-404(1)(c)(iv): Chapter 21, Public Employees' Long-Term Disability Act; Title 31A, Insurance Code be based upon the member being awarded and receiving ongoing monthly disability benefits that are:
Utah Code Annotated § 49-11-404(1)(c)(iv)(A): Chapter 21, Public Employees' Long-Term Disability Act substantially equivalent to the long-term disability programs offered under
Utah Code Annotated § 49-11-404(1)(c)(iv)(B): Title 31A, Insurance Code workers' compensation indemnity benefits provided in accordance with
Utah Code Annotated § 49-11-404(1)(c)(v): comply with requirements adopted by the board.
Utah Code Annotated § 49-11-404(2): A benefit protection contract shall allow:
Utah Code Annotated § 49-11-404(2)(a): the member with a disability to be considered an active member in a system and continue to accrue service credit and salary credit based on the member's rate of pay in effect at the time disability commences;
Utah Code Annotated § 49-11-404(2)(b): the office to require participating employer contributions to be paid before granting service credit and salary credit to the member;
Utah Code Annotated § 49-11-404(2)(c): the member with a disability to remain eligible during the contract period for any benefits provided by the system that covers the member; and
Utah Code Annotated § 49-11-404(2)(d): the benefit for the member with a disability to be improved by the annual cost-of-living increase factor applied to retired members of the system that covered the member on the date the member is eligible to receive benefits under a benefit protection contract.
Utah Code Annotated § 49-11-404(3):
Utah Code Annotated § 49-11-404(3)(a): The office shall establish the manner and times when employer contributions are paid.
Utah Code Annotated § 49-11-404(3)(b): A failure to make the required payments is cause for the office to cancel a contract.
Utah Code Annotated § 49-11-404(3)(c): Service credit and salary credit granted and accrued up to the time of cancellation may not be forfeited.
Utah Code Annotated § 49-11-404(4): Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act; Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System; Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System; Chapter 22, Part 4, Tier II Defined Contribution Plan; Chapter 23, Part 4, Tier II Defined Contribution Plan; 49-22-303(1)(a); 49-22-401(1); 49-23-302(1)(a); 49-23-401(1) For an employee covered under
Utah Code Annotated § 49-11-404(4)(a): Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System for the defined benefit portion for a member covered under
Utah Code Annotated § 49-11-404(4)(a)(i): the member with a disability to be considered an active member in a system and continue to accrue service credit and salary credit based on the member's rate of pay in effect at the time disability commences;
Utah Code Annotated § 49-11-404(4)(a)(ii): the office to require participating employer contributions to be paid before granting service credit and salary credit to the member;
Utah Code Annotated § 49-11-404(4)(a)(iii): the member with a disability to remain eligible during the contract period for any benefits provided by the system that covers the member; and
Utah Code Annotated § 49-11-404(4)(a)(iv): the benefit for the member with a disability to be improved by the annual cost-of-living increase factor applied to retired members of the system that covered the member on the date the member is eligible to receive benefits under a benefit protection contract; and
Utah Code Annotated § 49-11-404(4)(b): Chapter 22, Part 3, Tier II Hybrid Retirement System; Chapter 23, Part 3, Tier II Hybrid Retirement System; Chapter 22, Part 4, Tier II Defined Contribution Plan; Chapter 23, Part 4, Tier II Defined Contribution Plan; 49-22-303(1)(a); 49-22-401(1); 49-23-302(1)(a); 49-23-401(1) for the defined contribution portion for a member covered under
Utah Code Annotated § 49-11-404(5): A participating employer that has entered into a benefit protection contract under this section shall submit an annual report to the office, which identifies:
Utah Code Annotated § 49-11-404(5)(a): the employees receiving long-term disability benefits under policies initiated by the participating employer and approved under the benefit protection contract;
Utah Code Annotated § 49-11-404(5)(b): the employees that have applied for long-term disability benefits and who are waiting approval; and
Utah Code Annotated § 49-11-404(5)(c): the insurance carriers that are actively providing long-term disability benefits.
Utah Code Annotated § 49-11-404(6): (5) If an employer fails to provide the annual report required under Subsection
Utah Code Annotated § 49-11-404(7): The board may adopt rules to implement and administer this section.
Utah Code Annotated § 49-11-405 Service credit from different systems or plans -- Eligibility and calculation of service credit.
--------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-405(1): (1)(a)
Utah Code Annotated § 49-11-405(1)(a): A member who has service credit from two or more systems or one or more systems and the Utah Governors' and Legislators' Retirement Plan may combine service credit for purposes of determining eligibility for retirement.
Utah Code Annotated § 49-11-405(1)(b): (1)(a) The provisions of Subsection
Utah Code Annotated § 49-11-405(2): (3) To be eligible for the calculation under Subsection
Utah Code Annotated § 49-11-405(3): (2) If a member meets the requirements of Subsection
Utah Code Annotated § 49-11-405(4): The office shall establish the standards used for calculating any increase or decrease in the service credit.
Utah Code Annotated § 49-11-405(5): 49-11-504; Chapter 11, Part 12, Postretirement Reemployment Restrictions Act This section does not apply to a retiree who is subject to Section
Utah Code Annotated § 49-11-406 Governor's appointed executives and senior staff -- Appointed legislative employees -- Transfer of value of accrued defined benefit -- Procedures.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-406(1): As used in this section:
Utah Code Annotated § 49-11-406(1)(a): "Defined benefit balance" means the total amount of the contributions made on behalf of a member to a defined benefit system plus refund interest.
Utah Code Annotated § 49-11-406(1)(b): "Senior staff" means an at-will employee who reports directly to an elected official, executive director, or director and includes a deputy director and other similar, at-will employee positions designated by the governor, the speaker of the House, or the president of the Senate and filed with the Division of Human Resource Management and the Utah State Retirement Office.
Utah Code Annotated § 49-11-406(2): 67-22-2; 63L-11-201; 36-12-7 In accordance with this section and subject to requirements under federal law and rules made by the board, a member who has service credit from a system may elect to be exempt from coverage under a defined benefit system and to have the member's defined benefit balance transferred from the defined benefit system or plan to a defined contribution plan in the member's own name if the member is:
Utah Code Annotated § 49-11-406(2)(a): the state auditor;
Utah Code Annotated § 49-11-406(2)(b): the state treasurer;
Utah Code Annotated § 49-11-406(2)(c): 67-22-2 an appointed executive under Subsection
Utah Code Annotated § 49-11-406(2)(d): an employee in the Governor's Office;
Utah Code Annotated § 49-11-406(2)(e): senior staff in the Governor's Office of Planning and Budget;
Utah Code Annotated § 49-11-406(2)(f): senior staff in the Governor's Office of Economic Opportunity;
Utah Code Annotated § 49-11-406(2)(g): senior staff in the State Commission on Criminal and Juvenile Justice;
Utah Code Annotated § 49-11-406(2)(h): 63L-11-201 senior staff in the Public Lands Policy Coordinating Office, created in Section
Utah Code Annotated § 49-11-406(2)(i): 36-12-7 a legislative employee appointed under Subsection
Utah Code Annotated § 49-11-406(2)(j): a legislative employee appointed by the speaker of the House of Representatives, the House of Representatives minority leader, the president of the Senate, or the Senate minority leader.
Utah Code Annotated § 49-11-406(3): An election made under Subsection (2):
Utah Code Annotated § 49-11-406(3)(a): is final, and no right exists to make any further election;
Utah Code Annotated § 49-11-406(3)(b): is considered a request to be exempt from coverage under a defined benefits system; and
Utah Code Annotated § 49-11-406(3)(c): shall be made on forms provided by the office.
Utah Code Annotated § 49-11-406(4): The board shall adopt rules to implement and administer this section.
Utah Code Annotated § 49-11-407 Service credit purchases by active employees only.
----------------------------------------------------------------------------------
Notwithstanding any other provision of this title, only an active member may purchase service credit under this title.
Utah Code Annotated § 49-11-501 Refunds of member contributions -- Transfers of contributions to defined contribution plan.
---------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-501(1): If a member shall for any cause, except retirement, permanent or temporary disability, or death, terminate employment with a participating employer the member may leave the member contributions in the fund or may receive a refund of the member contributions as provided under this section.
Utah Code Annotated § 49-11-501(2): A member who applies for a refund of member contributions shall apply in writing on forms provided by the office.
Utah Code Annotated § 49-11-501(3): A refund of member contributions may not be made to a member within 60 days from the last date of the pay period for which contributions are made by or on behalf of the member.
Utah Code Annotated § 49-11-501(4): (3) If the member is reemployed by a participating employer within the time period under Subsection
Utah Code Annotated § 49-11-501(5): A member who receives a refund of member contributions forfeits the service credit based on those contributions.
Utah Code Annotated § 49-11-501(6): A member who is exempted from or becomes ineligible for service credit in a system but who remains employed by a participating employer may request a direct transfer of member contributions to a qualified plan.
Utah Code Annotated § 49-11-501(7): A member who remains employed with an employer which has withdrawn from a system may request a plan-to-plan transfer of member contributions to a qualified defined contribution plan administered by the board or a qualified plan offered by the member's employer.
Utah Code Annotated § 49-11-501(8): Refund interest shall be paid on refunds of member contributions under this section.
Utah Code Annotated § 49-11-502 Redeposits of refunds -- Time period.
---------------------------------------------------------------------
Utah Code Annotated § 49-11-502(1): 49-11-503
Utah Code Annotated § 49-11-502(1)(a): 49-11-503 If a member receives a refund of member contributions and is subsequently reemployed in a position covered by a system or the Utah Governors' and Legislators' Retirement Plan, the participating employer or the member may redeposit an amount equal to the member contributions refunded and interest charged under Section
Utah Code Annotated § 49-11-502(1)(b): The interest shall be compounded annually from the date of refund through the month of payment.
Utah Code Annotated § 49-11-502(1)(c): If a redeposit is made, service credit shall be restored to the member's account and credited to the same system or the Utah Governors' and Legislator's Retirement Plan from which the refund was taken.
Utah Code Annotated § 49-11-502(2): 49-11-503
Utah Code Annotated § 49-11-502(2)(a): A member may redeposit an amount equal to a prior refund of member contributions and interest charges in one lump sum or in monthly installments by payroll deduction in a time period determined by the office.
Utah Code Annotated § 49-11-502(2)(b): If the total redeposit is not made prior to the member's retirement date, the amount of redeposit paid to the office shall be refunded to the member without interest and the member is not entitled to service credit based on the amount of the refund.
Utah Code Annotated § 49-11-502(2)(c): 49-11-503 The interest rate charged during the installment period shall be a fixed rate calculated at the time of the first installment payment in accordance with Section
Utah Code Annotated § 49-11-502(3): A member who redeposits a refund of member contributions under this section shall receive the amount of service credit forfeited in taking the refund.
Utah Code Annotated § 49-11-502(4): Chapter 12, Public Employees' Contributory Retirement Act; Chapter 13, Public Employees' Noncontributory Retirement Act; Chapter 14, Public Safety Contributory Retirement Act; Chapter 15, Public Safety Noncontributory Retirement Act; Chapter 17, Judges' Contributory Retirement Act; Chapter 18, Judges' Noncontributory Retirement Act
Utah Code Annotated § 49-11-502(4)(a): Chapter 12, Public Employees' Contributory Retirement Act; Chapter 13, Public Employees' Noncontributory Retirement Act For purposes of this section, the Public Employees' Contributory Retirement System created under
Utah Code Annotated § 49-11-502(4)(b): Chapter 14, Public Safety Contributory Retirement Act; Chapter 15, Public Safety Noncontributory Retirement Act For purposes of this section, the Public Safety Contributory Retirement System created under
Utah Code Annotated § 49-11-502(4)(c): Chapter 17, Judges' Contributory Retirement Act; Chapter 18, Judges' Noncontributory Retirement Act For purposes of this section, the Judges' Contributory Retirement System created under
Utah Code Annotated § 49-11-502(5):
Utah Code Annotated § 49-11-502(5)(a): The board may make rules to allow a member to make the necessary payments to the office for redeposits under this title as permitted by federal law.
Utah Code Annotated § 49-11-502(5)(b): The office may reject any payments if the office determines the tax status of the systems, plans, or programs may be jeopardized by allowing the payment.
Utah Code Annotated § 49-11-503 Rate of interest on redeposits, adjustments, and delinquent payments.
-----------------------------------------------------------------------------------------------------
The rate of interest charged on redeposits of refunds, adjustments, or delinquent payments is the greater of:Utah Code Annotated § 49-11-503(1): the interest rate as determined under a formula approved by the board; or
Utah Code Annotated § 49-11-503(2): the actuarial interest rate as of the preceding June 30.
Utah Code Annotated § 49-11-504 Reemployment of a retiree -- Restrictions.
--------------------------------------------------------------------------
Utah Code Annotated § 49-11-504(1): 49-11-1202 As used in this section:
Utah Code Annotated § 49-11-504(1)(a): "full-time" means:
Utah Code Annotated § 49-11-504(1)(a)(i): employment requiring 20 or more hours of work per week; or
Utah Code Annotated § 49-11-504(1)(a)(ii): at least a half-time teaching contract.
Utah Code Annotated § 49-11-504(1)(b): 49-11-1202 "Reemployed," "reemploy," or "reemployment" means the same as those terms are defined in Section
Utah Code Annotated § 49-11-504(2): (3); Chapter 11, Part 12, Postretirement Reemployment Restrictions Act
Utah Code Annotated § 49-11-504(2)(a): (3); Chapter 11, Part 12, Postretirement Reemployment Restrictions Act Except for the provisions of Subsection
Utah Code Annotated § 49-11-504(2)(b): This section does not apply to employment as an elected official.
Utah Code Annotated § 49-11-504(3): A person who is not a retiree under this title is not subject to any postretirement restrictions under this title.
Utah Code Annotated § 49-11-504(4): A retiree of an agency who is reemployed may not earn additional service credit, if the retiree is reemployed by:
Utah Code Annotated § 49-11-504(4)(a): a different agency; or
Utah Code Annotated § 49-11-504(4)(b): the same agency after six months from the retirement date.
Utah Code Annotated § 49-11-504(5): (9) A retiree of an agency who is reemployed on a full-time basis by the same agency within six months of the date of retirement is subject to the following:
Utah Code Annotated § 49-11-504(5)(a): the agency shall immediately notify the office;
Utah Code Annotated § 49-11-504(5)(b): the office shall cancel the retiree's allowance and reinstate the retiree to active member status;
Utah Code Annotated § 49-11-504(5)(c): the allowance cancellation and reinstatement to active member status is effective on the first day of the month following the date of reemployment;
Utah Code Annotated § 49-11-504(5)(d): the reinstated retiree may not retire again with a recalculated benefit for a two-year period from the date of cancellation of the original allowance, and if the retiree retires again within the two-year period, the original allowance shall be resumed; and
Utah Code Annotated § 49-11-504(5)(e): (9) a reinstated retiree retiring after the two-year period shall be credited with the service credit in the retiree's account at the time of the first retirement and from that time shall be treated as a member of a system, including the accrual of additional service credit, but subject to recalculation of the allowance under Subsection
Utah Code Annotated § 49-11-504(6): (6) A retiree of an agency who is reemployed by the same agency within six months of retirement on a less than full-time basis by the same agency is subject to the following:
Utah Code Annotated § 49-11-504(6)(a): the retiree may earn, without penalty, compensation from that position which is not in excess of the exempt earnings permitted by Social Security;
Utah Code Annotated § 49-11-504(6)(b): if a retiree receives compensation in a calendar year in excess of the Social Security limitation, 25% of the allowance shall be suspended for the remainder of the six-month period;
Utah Code Annotated § 49-11-504(6)(c): the effective date of a suspension and reinstatement of an allowance shall be set by the office; and
Utah Code Annotated § 49-11-504(6)(d): (6) any suspension of a retiree's allowance under this Subsection
Utah Code Annotated § 49-11-504(7): (6); (6); (6) For six months immediately following retirement, the retiree and participating employer who are subject to Subsection
Utah Code Annotated § 49-11-504(7)(a): maintain an accurate record of gross earnings in employment;
Utah Code Annotated § 49-11-504(7)(b): report the gross earnings at least monthly to the office;
Utah Code Annotated § 49-11-504(7)(c): (6) immediately notify the office in writing of any postretirement earnings under Subsection
Utah Code Annotated § 49-11-504(7)(d): (6) immediately notify the office in writing whether postretirement earnings equal or exceed the exempt earnings under Subsection
Utah Code Annotated § 49-11-504(8): 49-11-102; (8)(b); (8)(a)
Utah Code Annotated § 49-11-504(8)(a): 49-11-102; (8)(b) If a participating employer hires a retiree, the participating employer may not make a retirement related contribution in an amount that exceeds the normal cost rate as defined under Section
Utah Code Annotated § 49-11-504(8)(b): (8)(a) The contributions under Subsection
Utah Code Annotated § 49-11-504(8)(b)(i): defined contribution plan administered by the board; or
Utah Code Annotated § 49-11-504(8)(b)(ii): deferred compensation plan administered by the board.
Utah Code Annotated § 49-11-504(9): A retiree who has returned to work, accrued additional service credit, and again retires shall have the retiree's allowance recalculated using:
Utah Code Annotated § 49-11-504(9)(a): the formula in effect at the date of the retiree's original retirement for all service credit accrued prior to that date; and
Utah Code Annotated § 49-11-504(9)(b): the formula in effect at the date of the subsequent retirement for all service credit accrued between the first and subsequent retirement dates.
Utah Code Annotated § 49-11-504(10): The board may make rules to implement this section.
Utah Code Annotated § 49-11-601 Payment of employer contributions -- Penalties for failure to comply -- Adjustments to be made.
-------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-601(1): The employer contributions, fees, premium taxes, contribution adjustments, and other required payments shall be paid to the office by the participating employer as determined by the executive director.
Utah Code Annotated § 49-11-601(2): A participating employer that fails to withhold the amount of any member contributions, as soon as administratively possible, shall also pay the member contributions to the office out of its own funds.
Utah Code Annotated § 49-11-601(3): (6); (7); 49-11-604; 49-11-503 Except as limited by Subsections
Utah Code Annotated § 49-11-601(3)(a): delinquent contributions;
Utah Code Annotated § 49-11-601(3)(b): 49-11-503 interest on the delinquent contributions as calculated under Section
Utah Code Annotated § 49-11-601(3)(c): a penalty equal to the greater of:
Utah Code Annotated § 49-11-601(3)(c)(i): $250; or
Utah Code Annotated § 49-11-601(3)(c)(ii): 50% of the total contributions for the employees for the period of the reporting error.
Utah Code Annotated § 49-11-601(4): The executive director may waive all or any part of the interest, penalties, expenses, and fees if the executive director finds there were extenuating circumstances surrounding the participating employer's failure to comply with this section.
Utah Code Annotated § 49-11-601(5): Contributions made in error will be refunded to the participating employer or member that made the contributions.
Utah Code Annotated § 49-11-601(6): 49-12-202(2)(c); (d); 49-13-202(2)(c); (d); (e); (6)(a); (6)(a); (6)(a); 49-12-202; 49-13-202
Utah Code Annotated § 49-11-601(6)(a): 49-12-202(2)(c); (d); 49-13-202(2)(c); (d); (e) An employer described in Subsection
Utah Code Annotated § 49-11-601(6)(b): (6)(a); (6)(a); (6)(a); 49-12-202; 49-13-202 An employee who received retirement benefits under Subsection
Utah Code Annotated § 49-11-601(6)(b)(i): (6)(a) acknowledges the substantial substitute received by the employee under Subsection
Utah Code Annotated § 49-11-601(6)(b)(ii): (6)(a); 49-12-202; 49-13-202 irrevocably relinquishes service credit and retirement benefits that may have accrued to the employee under this title effective from the employee's date of employment with the employer described in Subsection
Utah Code Annotated § 49-11-601(6)(c): Nothing in this section shall be construed to diminish an employer's right to recover past retirement benefits other than Social Security, paid to an employee or retiree, in error or under mistaken belief that the employer was not a participating employer.
Utah Code Annotated § 49-11-601(7): (6)(a); (6)(b) If the employer files with the office an irrevocable written relinquishment of service credit signed by the member or retiree:
Utah Code Annotated § 49-11-601(7)(a): (6)(a) the office shall proportionally reduce any delinquent contributions, penalties, fees, or interest assessed against a participating employer in connection with a member or retiree described in Subsection
Utah Code Annotated § 49-11-601(7)(b): (6)(b) the system has no liability to the employee for benefits relinquished under Subsection
Utah Code Annotated § 49-11-602 Participating employer to maintain records -- Time limit -- Penalties for failure to comply.
----------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-602(1): 49-12-102 A participating employer shall:
Utah Code Annotated § 49-11-602(1)(a): maintain records necessary to calculate benefits under this title and other records necessary for proper administration of this title as required by the office; and
Utah Code Annotated § 49-11-602(1)(b): 49-12-102 maintain records that indicate whether an employee is receiving:
Utah Code Annotated § 49-11-602(1)(b)(i): 49-12-102 a benefit under state or federal law that, under Subsection
Utah Code Annotated § 49-11-602(1)(b)(ii): a benefit under a benefit package generally offered to similarly situated employees.
Utah Code Annotated § 49-11-602(2): 49-11-603 A participating employer shall maintain all records necessary to support the participating employer's reports and certifications required by Section
Utah Code Annotated § 49-11-602(3): A participating employer shall maintain the records required under Subsections (1) and (2) until the earliest of:
Utah Code Annotated § 49-11-602(3)(a): three years after the date of retirement of the employee from a system or plan;
Utah Code Annotated § 49-11-602(3)(b): three years after the date of death of the employee; or
Utah Code Annotated § 49-11-602(3)(c): 65 years from the date of employment with the participating employer.
Utah Code Annotated § 49-11-602(4): A participating employer shall be liable to the office for:
Utah Code Annotated § 49-11-602(4)(a): any liabilities and expenses, including administrative expenses and the cost of increased benefits to members, resulting from the participating employer's failure to maintain records under this section; and
Utah Code Annotated § 49-11-602(4)(b): a penalty equal to 1% of the participating employer's last month's contributions.
Utah Code Annotated § 49-11-602(5): The executive director may waive all or any part of the interest, penalties, expenses, and fees if the executive director finds there were extenuating circumstances surrounding the participating employer's failure to comply with this section.
Utah Code Annotated § 49-11-602(6): The office may estimate the length of service, compensation, or age of any member, if that information is not contained in the records.
Utah Code Annotated § 49-11-602(7):
Utah Code Annotated § 49-11-602(7)(a): A participating employer shall enroll an employee, make reports, submit contributions, and provide other requested information electronically in a manner approved by the office.
Utah Code Annotated § 49-11-602(7)(b): A participating employer shall treat any information provided electronically or otherwise by the office as subject to the confidentiality provisions of this title.
Utah Code Annotated § 49-11-603 Participating employer to report and certify -- Time limit -- Penalties for failure to comply.
------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-603(1): As soon as administratively possible, but in no event later than 30 days after the end of each pay period, a participating employer shall report and certify to the office:
Utah Code Annotated § 49-11-603(1)(a): the eligibility for service credit accrual of:
Utah Code Annotated § 49-11-603(1)(a)(i): each current employee;
Utah Code Annotated § 49-11-603(1)(a)(ii): each new employee as the new employee begins employment; and
Utah Code Annotated § 49-11-603(1)(a)(iii): any changes to eligibility for service credit accrual of each employee;
Utah Code Annotated § 49-11-603(1)(b): the compensation of each current employee eligible for service credit; and
Utah Code Annotated § 49-11-603(1)(c): other factors relating to the proper administration of this title as required by the executive director.
Utah Code Annotated § 49-11-603(2): (1)
Utah Code Annotated § 49-11-603(2)(a): (1) Each participating employer shall submit the reports required under Subsection
Utah Code Annotated § 49-11-603(2)(b): Each participating employer shall include in the reports a certification, for each employee, whether the employee is:
Utah Code Annotated § 49-11-603(2)(b)(i): an eligible employee who is accruing service credit;
Utah Code Annotated § 49-11-603(2)(b)(ii): an ineligible employee who may not accrue service credit;
Utah Code Annotated § 49-11-603(2)(b)(iii): a reemployed retiree; or
Utah Code Annotated § 49-11-603(2)(b)(iv): an employee who is eligible for employer contributions to a defined contribution plan administered under this title.
Utah Code Annotated § 49-11-603(3): A participating employer shall be liable to the office for:
Utah Code Annotated § 49-11-603(3)(a): any liabilities and expenses, including administrative expenses and the cost of increased benefits to employees, resulting from the participating employer's failure to correctly report and certify records under this section;
Utah Code Annotated § 49-11-603(3)(b): a penalty equal to the greater of:
Utah Code Annotated § 49-11-603(3)(b)(i): $250; or
Utah Code Annotated § 49-11-603(3)(b)(ii): 50% of the total contributions for the employees for the period of the reporting error; and
Utah Code Annotated § 49-11-603(3)(c): attorney fees.
Utah Code Annotated § 49-11-603(4): The executive director may waive all or any part of the interest, penalties, expenses, and fees if the executive director finds there were extenuating circumstances surrounding the participating employer's failure to comply with this section.
Utah Code Annotated § 49-11-603(5): The office may estimate the length of service, compensation, or age of any employee, if that information is not contained in the records.
Utah Code Annotated § 49-11-604 Office audits of participating employers -- Penalties for failure to comply.
------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-604(1):
Utah Code Annotated § 49-11-604(1)(a): The office may perform an on-site compliance audit of a participating employer to determine compliance with reporting, contribution, and certification requirements under this title.
Utah Code Annotated § 49-11-604(1)(b): The office or its independent auditor may perform an on-site compliance audit of a participating employer or request records to be provided by the participating employer, including records required to complete:
Utah Code Annotated § 49-11-604(1)(b)(i): audited financial statements;
Utah Code Annotated § 49-11-604(1)(b)(ii): schedules of employer allocations and pension reporting in accordance with Governmental Accounting Standards Board statements; and
Utah Code Annotated § 49-11-604(1)(b)(iii): service organizational controls reports.
Utah Code Annotated § 49-11-604(1)(c): The office may request records to be provided by the participating employer at the time of the audit.
Utah Code Annotated § 49-11-604(1)(d): Audits shall be conducted at the sole discretion of the office after reasonable notice to the participating employer of at least five working days.
Utah Code Annotated § 49-11-604(1)(e): The participating employer shall extract and provide records as requested by the office in an appropriate, organized, and usable format.
Utah Code Annotated § 49-11-604(1)(f): Failure of a participating employer to allow access, provide records, or comply in any way with an office audit shall result in the participating employer being liable to the office for:
Utah Code Annotated § 49-11-604(1)(f)(i): any liabilities and expenses, including administrative expenses and travel expenses, resulting from the participating employer's failure to comply with the audit; and
Utah Code Annotated § 49-11-604(1)(f)(ii): a penalty equal to 1% of the participating employer's last month's contributions.
Utah Code Annotated § 49-11-604(2): 49-11-601; 49-11-602; 49-11-603 If the audit reveals a participating employer's failure to make contributions as required under Section
Utah Code Annotated § 49-11-604(2)(a): any liability or expense, including an administrative expense or the cost of increased benefits to members, resulting from the participating employer's failure to fully comply with the participating employer's reporting, contribution, certification, or record keeping requirements under this title; and
Utah Code Annotated § 49-11-604(2)(b): a penalty, not to exceed 50% of the participating employer's total contributions for the time period of the error.
Utah Code Annotated § 49-11-604(3): 49-11-601; 49-11-602; 49-11-603 If the audit reveals that an incorrect benefit has been paid by the office to a member, participant, alternate payee, or beneficiary due to a participating employer's failure to comply with the requirements of Section
Utah Code Annotated § 49-11-604(3)(a): the actuarial cost of correcting the incorrect benefit; and
Utah Code Annotated § 49-11-604(3)(b): administrative expenses.
Utah Code Annotated § 49-11-604(4): The executive director may waive all or any part of the interest, penalties, expenses, and fees if the executive director finds there were extenuating circumstances surrounding the participating employer's failure to comply with this section.
Utah Code Annotated § 49-11-605 Notification and correction of violations.
--------------------------------------------------------------------------
If a participating employer discovers that it has violated Section
Utah Code Annotated § 49-11-606 Full participation.
---------------------------------------------------
Except as provided in Sections
Utah Code Annotated § 49-11-607 Determination of benefits -- Errors in records or calculations -- Correction of errors by the office.
-------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-607(1): (2); (3); (4) After the retirement date, which shall be set by a member in the member's application for retirement, no alteration, addition, or cancellation of a benefit may be made except as provided in Subsections
Utah Code Annotated § 49-11-607(2):
Utah Code Annotated § 49-11-607(2)(a): Errors in the records or in the calculations of the office which result in an incorrect benefit to any member, retiree, participant, covered individual, alternate payee, or beneficiary shall be corrected by the office if the correction results in a modification of the benefit amount of $5 or more.
Utah Code Annotated § 49-11-607(2)(b): Future payments shall be made to any member, retiree, participant, covered individual, alternate payee, or beneficiary to:
Utah Code Annotated § 49-11-607(2)(b)(i): pay the benefit to which the member or beneficiary was entitled; or
Utah Code Annotated § 49-11-607(2)(b)(ii): recover any overpayment.
Utah Code Annotated § 49-11-607(3): 49-11-503
Utah Code Annotated § 49-11-607(3)(a): Errors in the records or calculation of a participating employer which result in an incorrect benefit to a member, retiree, participant, covered individual, alternate payee, or beneficiary shall be corrected by the participating employer.
Utah Code Annotated § 49-11-607(3)(b): 49-11-503 If insufficient employer contributions have been received by the office, the participating employer shall pay any delinquent employer contributions, plus interest under Section
Utah Code Annotated § 49-11-607(3)(c): If excess contributions have been received by the office, the contributions shall be refunded to the participating employer or member which paid the contributions.
Utah Code Annotated § 49-11-607(4): If a dispute exists between a participating employer and a member or the office and a member at the time of the member's retirement which will affect the member's benefit calculation, and notice of the dispute is given to the office prior to the calculation of a member's benefit, the benefit may be paid based on the member's retirement date and the records available and then recalculated upon settlement of the dispute.
Utah Code Annotated § 49-11-608 False statements or records -- Unlawfully cashing benefit checks -- Unlawfully obtaining or appropriating benefit payments.
-----------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-608(1): 76-6-504 A person who knowingly makes any false statement, or who falsifies or permits to be falsified any record necessary for carrying out the intent of this title is in violation of Section
Utah Code Annotated § 49-11-608(2): 76-6-501 A person cashing a benefit check to which that person is not entitled is in violation of Section
Utah Code Annotated § 49-11-608(3): 76-6-407 A person who obtains a benefit payment, including a direct deposit or electronic benefit payment, to which that person is not entitled and who fails to take reasonable measures to return the benefit payment to the office is in violation of Section
Utah Code Annotated § 49-11-608(4): 76-6-407 A person who appropriates property or a benefit of another person, including a direct deposit or electronic benefit payment, by obtaining or exercising unauthorized control over the property or the benefit is in violation of Section
Utah Code Annotated § 49-11-609 Beneficiary designations -- Revocation of beneficiary designation -- Procedure -- Beneficiary not designated -- Payment to survivors in order established under the Uniform Probate Code -- Restrictions on payment -- Payment of deceased's expenses.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-609(1): 49-12-404; 49-13-404; 49-22-307; 49-23-306 As used in this section, "member" includes a member, retiree, participant, covered individual, a spouse of a retiree participating in the insurance benefits created by Sections
Utah Code Annotated § 49-11-609(2): (2)(b); (c); (2)(b)(i); (2)(b); (2)(b)
Utah Code Annotated § 49-11-609(2)(a): (2)(b); (c) Except as provided under Subsection
Utah Code Annotated § 49-11-609(2)(b): (2)(b)(i)
Utah Code Annotated § 49-11-609(2)(b)(i): The divorce or annulment of a member's marriage shall revoke the member's former spouse as a beneficiary from any of the member's beneficiary designations.
Utah Code Annotated § 49-11-609(2)(b)(ii): (2)(b)(i) A revocation of a former spouse as a beneficiary in accordance with Subsection
Utah Code Annotated § 49-11-609(2)(c): (2)(b) A former spouse whose beneficiary designation is revoked solely under Subsection
Utah Code Annotated § 49-11-609(2)(c)(i): the member's remarriage to the former spouse; or
Utah Code Annotated § 49-11-609(2)(c)(ii): a nullification of the divorce or annulment.
Utah Code Annotated § 49-11-609(2)(d): (2)(b) A revocation under Subsection
Utah Code Annotated § 49-11-609(2)(e): The office is not liable for having made a payment of any benefits to a beneficiary designated in a beneficiary designation affected by a divorce, annulment, or remarriage before the office received written notice of the divorce, annulment, or remarriage.
Utah Code Annotated § 49-11-609(3):
Utah Code Annotated § 49-11-609(3)(a): Except where an optional continuing benefit is chosen, or the law makes a specific benefit designation to a dependent spouse, a member may revoke a beneficiary designation at any time and may execute and file a different beneficiary designation with the office.
Utah Code Annotated § 49-11-609(3)(b): A beneficiary designation or change of beneficiary designation shall be completed on forms provided by the office.
Utah Code Annotated § 49-11-609(4): Title 75, Chapter 2, Intestate Succession and Wills; (4)(a)
Utah Code Annotated § 49-11-609(4)(a): Title 75, Chapter 2, Intestate Succession and Wills All benefits payable by the office may be paid or applied to the benefit of the decedent's heirs in the order of precedence established under
Utah Code Annotated § 49-11-609(4)(a)(i): no beneficiary is designated or if all designated beneficiaries have predeceased the member;
Utah Code Annotated § 49-11-609(4)(a)(ii): the location of the beneficiary or secondary beneficiaries cannot be ascertained by the office within 12 months of the date a reasonable attempt is made by the office to locate the beneficiaries; or
Utah Code Annotated § 49-11-609(4)(a)(iii): the beneficiary has not completed the forms necessary to pay the benefits within six months of the date that beneficiary forms are sent to the beneficiary's last-known address.
Utah Code Annotated § 49-11-609(4)(b): (4)(a)
Utah Code Annotated § 49-11-609(4)(b)(i): (4)(a) A payment may not be made to a person included in any of the groups referred to in Subsection
Utah Code Annotated § 49-11-609(4)(b)(ii): Payment to a person in any group may be based upon receipt of an affidavit in a form satisfactory to the office that:
Utah Code Annotated § 49-11-609(4)(b)(ii)(A): there are no living individuals in the group preceding it;
Utah Code Annotated § 49-11-609(4)(b)(ii)(B): the probate of the estate of the deceased has not been commenced; and
Utah Code Annotated § 49-11-609(4)(b)(ii)(C): more than 30 days have elapsed since the date of death of the decedent.
Utah Code Annotated § 49-11-609(5): Benefits paid under this section shall be:
Utah Code Annotated § 49-11-609(5)(a): a full satisfaction and discharge of all claims for benefits under this title; and
Utah Code Annotated § 49-11-609(5)(b): payable by reason of the death of the decedent.
Utah Code Annotated § 49-11-610 Benefits payable in name of beneficiary -- Delivery.
------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-610(1): Title 75, Utah Uniform Probate Code
Utah Code Annotated § 49-11-610(1)(a): Title 75, Utah Uniform Probate Code Any benefits payable to a beneficiary shall be made in the name of and delivered to the beneficiary or the lawfully appointed guardian or conservator of the beneficiary, or delivered as otherwise ordered by a court of competent jurisdiction under
Utah Code Annotated § 49-11-610(1)(b): If the benefit involves a payment not to exceed an amount authorized by the Utah Uniform Probate Code to any one beneficiary, the office may, without the appointment of a guardian or conservator or the giving of a bond, pay the amount due to the beneficiary or to the persons assuming their support.
Utah Code Annotated § 49-11-610(1)(c): The payment shall be in either a lump sum or in monthly amounts.
Utah Code Annotated § 49-11-610(1)(d): The total of the payments made under this section shall fully discharge and release the office from any further claims.
Utah Code Annotated § 49-11-610(2): A beneficiary who qualifies for a monthly benefit under this section shall apply in writing to the office.
Utah Code Annotated § 49-11-610(3): The allowance shall begin on the first day of the month following the month in which the:
Utah Code Annotated § 49-11-610(3)(a): member or participant died, if the application is received by the office within 90 days of the date of death of the member or participant; or
Utah Code Annotated § 49-11-610(3)(b): application is received by the office, if the application is received by the office more than 90 days after the date of death of the member or participant.
Utah Code Annotated § 49-11-611 Benefits and money in the fund exempt from taxation -- Exceptions.
--------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-611(1): (2) Except as provided under Subsection
Utah Code Annotated § 49-11-611(2): Title 59, Chapter 10, Individual Income Tax Act An allowance, a refund of member contributions, or other benefits that are subject to federal income tax, which is received by a member, retiree, alternate payee, participant, or beneficiary of any system or plan administered by the board and which has not been taxed is subject to
Utah Code Annotated § 49-11-612 Domestic relations order benefits -- Nonassignability of benefits or payments -- Exemption from legal process.
----------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-612(1): Part 8, Defined Contribution Plans; Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act; Chapter 14, Part 5, Death Benefit; Chapter 15, Part 5, Death Benefit; Chapter 16, Part 5, Death Benefit; Chapter 17, Part 5, Death Benefit; Chapter 18, Part 5, Death Benefit; Chapter 19, Part 5, Death Benefit; Chapter 12, Part 5, Death Benefit; Chapter 13, Part 5, Death Benefit; Chapter 22, Part 5, Death Benefit; Chapter 23, Part 5, Death Benefit As used in this section, "domestic relations order benefits" means:
Utah Code Annotated § 49-11-612(1)(a): an allowance;
Utah Code Annotated § 49-11-612(1)(b): Part 8, Defined Contribution Plans; Chapter 22, New Public Employees' Tier II Contributory Retirement Act; Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act a defined contribution account established under:
Utah Code Annotated § 49-11-612(1)(b)(i): Part 8, Defined Contribution Plans
Utah Code Annotated § 49-11-612(1)(b)(ii): Chapter 22, New Public Employees' Tier II Contributory Retirement Act
Utah Code Annotated § 49-11-612(1)(b)(iii): Chapter 23, New Public Safety and Firefighter Tier II Contributory Retirement Act
Utah Code Annotated § 49-11-612(1)(c): Chapter 14, Part 5, Death Benefit; Chapter 15, Part 5, Death Benefit; Chapter 16, Part 5, Death Benefit; Chapter 17, Part 5, Death Benefit; Chapter 18, Part 5, Death Benefit; Chapter 19, Part 5, Death Benefit a continuing monthly death benefit established under:
Utah Code Annotated § 49-11-612(1)(c)(i): Chapter 14, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(c)(ii): Chapter 15, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(c)(iii): Chapter 16, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(c)(iv): Chapter 17, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(c)(v): Chapter 18, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(c)(vi): Chapter 19, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(d): Chapter 12, Part 5, Death Benefit; Chapter 13, Part 5, Death Benefit; Chapter 22, Part 5, Death Benefit; Chapter 23, Part 5, Death Benefit a lump sum death benefit provided under:
Utah Code Annotated § 49-11-612(1)(d)(i): Chapter 12, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(d)(ii): Chapter 13, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(d)(iii): Chapter 22, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(d)(iv): Chapter 23, Part 5, Death Benefit
Utah Code Annotated § 49-11-612(1)(e): a refund of member contributions upon termination.
Utah Code Annotated § 49-11-612(2): (3); (4); (5) Except as provided in Subsections
Utah Code Annotated § 49-11-612(3):
Utah Code Annotated § 49-11-612(3)(a): The office may, upon the request of the retiree, deduct from the retiree's allowance, insurance premiums or other dues payable on behalf of the retiree, but only to those entities that have received the deductions prior to February 1, 2002.
Utah Code Annotated § 49-11-612(3)(b): The office may, upon the request of a retiree of a public safety or firefighter system, deduct insurance premiums from the retiree's allowance or defined contribution plan administered by the board.
Utah Code Annotated § 49-11-612(4): (4)(d)(ii)
Utah Code Annotated § 49-11-612(4)(a): The office shall provide for the division of domestic relations order benefits with former spouses and family members under an order of a court of competent jurisdiction with respect to domestic relations matters on file with the office.
Utah Code Annotated § 49-11-612(4)(b): The court order shall specify the manner in which the domestic relations order benefits shall be partitioned, whether as a fixed amount or as a percentage of the benefit.
Utah Code Annotated § 49-11-612(4)(c): Domestic relations order benefits split under a domestic relations order are subject to the following:
Utah Code Annotated § 49-11-612(4)(c)(i): the amount to be paid or the period for which payments shall be made under the original domestic relations order may not be altered if the alteration affects the actuarial calculation of the allowance;
Utah Code Annotated § 49-11-612(4)(c)(ii): payments to an alternate payee shall begin at the time the member or beneficiary begins receiving payments; and
Utah Code Annotated § 49-11-612(4)(c)(iii): the alternate payee shall receive payments in the same form as allowances received by the member or beneficiary.
Utah Code Annotated § 49-11-612(4)(d): (4)(d)(ii)
Utah Code Annotated § 49-11-612(4)(d)(i): (4)(d)(ii) Except as provided under Subsection
Utah Code Annotated § 49-11-612(4)(d)(ii): A court order under this section received by the office after the member's date of death shall be considered valid if it is received in good order before benefits relating to the member's death are paid or settled.
Utah Code Annotated § 49-11-612(4)(e): A court order under this section may not require and may not be interpreted in any way to require the office to provide any type of benefit or any option not otherwise provided under this title.
Utah Code Annotated § 49-11-612(5): In accordance with federal law, the board may deduct the required amount from any benefit, payment, or other right accrued or accruing to any member or beneficiary of a system, plan, or program under this title to offset any amount that member or beneficiary owes to a system, plan, or program administered by the board.
Utah Code Annotated § 49-11-612(6): The board shall make rules to implement this section.
Utah Code Annotated § 49-11-613 Appeals procedure -- Right of appeal to hearing officer -- Board reconsideration -- Judicial review -- Docketing abstract of final administrative order.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-613(1): 49-11-613.5; 49-11-613.5; 49-11-613.5
Utah Code Annotated § 49-11-613(1)(a): A member, retiree, participant, alternative payee, covered individual, employer, participating employer, and covered employer shall inform themselves of their benefits, rights, obligations, and employment rights under this title.
Utah Code Annotated § 49-11-613(1)(b): Subject to Subsection (8), any dispute regarding a benefit, right, obligation, or employment right under this title is subject to the procedures provided under this section.
Utah Code Annotated § 49-11-613(1)(c): 49-11-613.5
Utah Code Annotated § 49-11-613(1)(c)(i): A person who disputes a benefit, right, obligation, or employment right under this title shall request a ruling by the executive director who may delegate the decision to the deputy director.
Utah Code Annotated § 49-11-613(1)(c)(ii): 49-11-613.5 A request for a ruling to the executive director under this section shall constitute the initiation of an action for purposes of the limitations periods described in Section
Utah Code Annotated § 49-11-613(1)(d): 49-11-613.5 A person who is dissatisfied by a ruling under Subsection (1)(c) with respect to any benefit, right, obligation, or employment right under this title may request a review of that claim by a hearing officer within the time period described in Section
Utah Code Annotated § 49-11-613(1)(e): 49-11-613.5
Utah Code Annotated § 49-11-613(1)(e)(i): The executive director, on behalf of the board, may request that the hearing officer review a dispute regarding any benefit, right, obligation, or employment right under this title by filing a notice of board action and providing notice to all affected parties in accordance with rules adopted by the board.
Utah Code Annotated § 49-11-613(1)(e)(ii): 49-11-613.5 The filing of a notice of board action shall constitute the initiation of an action for purposes of the limitations periods described in Section
Utah Code Annotated § 49-11-613(2): The hearing officer shall:
Utah Code Annotated § 49-11-613(2)(a): be hired by the executive director after consultation with the board;
Utah Code Annotated § 49-11-613(2)(b): follow and enforce the procedures and requirements of:
Utah Code Annotated § 49-11-613(2)(b)(i): this title;
Utah Code Annotated § 49-11-613(2)(b)(ii): the rules adopted by the board in accordance with Subsection (10); and
Utah Code Annotated § 49-11-613(2)(b)(iii): Title 63G, Chapter 4, Administrative Procedures Act, except as specifically modified under this title or the rules adopted by the board in accordance with Subsection (10);
Utah Code Annotated § 49-11-613(2)(c): hear and determine all facts relevant to a decision, including facts pertaining to applications for benefits under any system, plan, or program under this title and all matters pertaining to the administration of the office; and
Utah Code Annotated § 49-11-613(2)(d): make conclusions of law in determining the person's rights under any system, plan, or program under this title and matters pertaining to the administration of the office.
Utah Code Annotated § 49-11-613(3): The board shall review and approve or deny all final orders and judgments of the hearing officer in accordance with rules adopted by the board in accordance with Subsection (10).
Utah Code Annotated § 49-11-613(4): The moving party in any proceeding brought under this section shall bear the burden of proof.
Utah Code Annotated § 49-11-613(5): A party may file an application for reconsideration by the board upon any of the following grounds:
Utah Code Annotated § 49-11-613(5)(a): that the board acted in excess of the board's powers;
Utah Code Annotated § 49-11-613(5)(b): that the order or the award was procured by fraud;
Utah Code Annotated § 49-11-613(5)(c): that the evidence does not justify the determination of the hearing officer; or
Utah Code Annotated § 49-11-613(5)(d): that the party has discovered new material evidence that could not, with reasonable diligence, have been discovered or procured prior to the hearing.
Utah Code Annotated § 49-11-613(6): The board shall affirm, reverse, or modify the final order or judgment of the hearing officer, or remand the application to the hearing officer for further consideration.
Utah Code Annotated § 49-11-613(7): A party aggrieved by the board's final decision under Subsection (6) may obtain judicial review by complying with the procedures and requirements of:
Utah Code Annotated § 49-11-613(7)(a): this title;
Utah Code Annotated § 49-11-613(7)(b): rules adopted by the board in accordance with Subsection (10); and
Utah Code Annotated § 49-11-613(7)(c): Title 63G, Chapter 4, Administrative Procedures Act, except as specifically modified under this title or the rules adopted by the board in accordance with Subsection (10).
Utah Code Annotated § 49-11-613(8): The program shall provide an appeals process for medical claims that complies with federal law.
Utah Code Annotated § 49-11-613(9):
Utah Code Annotated § 49-11-613(9)(a):
Utah Code Annotated § 49-11-613(9)(a)(i): Any interested party may file, in a district court of any county in the state, an abstract of a final administrative order approved by the board in accordance with this section.
Utah Code Annotated § 49-11-613(9)(a)(ii): Upon receiving the filing of an abstract, the clerk of the district court shall:
Utah Code Annotated § 49-11-613(9)(a)(ii)(A): docket the abstract; and
Utah Code Annotated § 49-11-613(9)(a)(ii)(B): note the date of the abstract's receipt on the abstract and in the docket.
Utah Code Annotated § 49-11-613(9)(b):
Utah Code Annotated § 49-11-613(9)(b)(i): From the day on which an interested party files the abstract with a district court, the final administrative order approved by the board is a lien upon the real property of the obligor situated in that county.
Utah Code Annotated § 49-11-613(9)(b)(ii): Unless satisfied, the lien is for a period of eight years after the day on which the board approves the final administrative order.
Utah Code Annotated § 49-11-613(9)(c): The final administrative order approved by the board fixing the liability of the obligor has the same effect as any other money judgment entered by a district court.
Utah Code Annotated § 49-11-613(9)(d):
Utah Code Annotated § 49-11-613(9)(d)(i): Except as provided in Subsection (9)(d)(ii), an attachment, a garnishment, or an execution on a judgment included in or accruing under a final administrative order approved by the board and filed and docketed in accordance with Subsection (9)(a) has the same manner and same effect as an attachment, a garnishment, or an execution on a judgment of a district court.
Utah Code Annotated § 49-11-613(9)(d)(ii): A writ of garnishment on earnings continues to operate, and to require the garnishee to withhold the nonexempt portion of earnings at each succeeding earnings disbursement interval, until the office or a court releases the writ of garnishment in writing.
Utah Code Annotated § 49-11-613(9)(e): The lien and enforcement remedies provided by this section are in addition to any other lien or remedy provided by law.
Utah Code Annotated § 49-11-613(9)(f): A party may bring an action upon a final administrative order approved by the board within eight years after the day on which the board approves the final administrative order.
Utah Code Annotated § 49-11-613(9)(g): A final administrative order may be renewed administratively by complying with the procedures and requirements provided in rule adopted by the board in accordance with Subsection (10).
Utah Code Annotated § 49-11-613(10):
Utah Code Annotated § 49-11-613(10)(a): The board shall make rules to implement this section and to establish procedures and requirements for adjudicative proceedings.
Utah Code Annotated § 49-11-613(10)(b): The rules shall be substantially similar to or incorporate provisions of the Utah Rules of Civil Procedure, the Utah Rules of Evidence, and Title 63G, Chapter 4, Administrative Procedures Act.
Utah Code Annotated § 49-11-613.5 Limitation of actions -- Cause of action.
---------------------------------------------------------------------------
Utah Code Annotated § 49-11-613.5(1): 49-11-613; (3); 49-11-613
Utah Code Annotated § 49-11-613.5(1)(a): 49-11-613; (3) Subject to the procedures provided in Section
Utah Code Annotated § 49-11-613.5(1)(b): 49-11-613 A person who is dissatisfied with an executive director's ruling under Section
Utah Code Annotated § 49-11-613.5(2):
Utah Code Annotated § 49-11-613.5(2)(a): A cause of action accrues under this title and the limitation period in this section runs from the day on which the aggrieved party became aware, or through the exercise of reasonable diligence should have become aware, of the facts giving rise to the cause of action, including when:
Utah Code Annotated § 49-11-613.5(2)(a)(i): a benefit, right, or employment right is or should have been granted;
Utah Code Annotated § 49-11-613.5(2)(a)(ii): a payment is or should have been made; or
Utah Code Annotated § 49-11-613.5(2)(a)(iii): an obligation is or should have been performed.
Utah Code Annotated § 49-11-613.5(2)(b): If a claim involves a retirement service credit issue under this title:
Utah Code Annotated § 49-11-613.5(2)(b)(i): a cause of action specifically accrues at the time the requisite retirement contributions relating to that retirement service credit are paid or should have been paid to the office; and
Utah Code Annotated § 49-11-613.5(2)(b)(ii): the person is deemed to be on notice of the payment or nonpayment of those retirement contributions.
Utah Code Annotated § 49-11-613.5(3): If an aggrieved party fails to discover the facts giving rise to the cause of action due to misrepresentation, fraud, intentional nondisclosure, or other affirmative steps to conceal the cause of action, a limitation period prescribed in this section does not begin to run until the aggrieved party actually discovers the existence of the cause of action.
Utah Code Annotated § 49-11-613.5(4): The person claiming a benefit, right, obligation, or employment right arising under this title has the burden of bringing the action within the period prescribed in this section.
Utah Code Annotated § 49-11-613.5(5): Nothing in this section relieves a member, retiree, participant, alternative payee, covered individual, employer, participating employer, or covered employer of the obligations under this title.
Utah Code Annotated § 49-11-613.5(6): The office is not required to bring a claim on behalf of a member, retiree, participant, alternative payee, covered individual, employer, participating employer, or covered employer.
Utah Code Annotated § 49-11-613.5(7): Title 78B, Chapter 2, Statutes of Limitations
Utah Code Annotated § 49-11-613.5(7)(a): A limitation period provided in this section does not apply to actions for which a specific limit is otherwise specified in this title or by contract, including master policies or other insurance contracts.
Utah Code Annotated § 49-11-613.5(7)(b): Title 78B, Chapter 2, Statutes of Limitations For actions arising under this title, this section supersedes any applicable limitation period provided in
Utah Code Annotated § 49-11-614 Vesting on termination of system or plan.
-------------------------------------------------------------------------
If any system or the Utah Governors' and Legislators' Retirement Plan is terminated, the accrued benefits of each member in the terminated system or plan shall immediately become vested and nonforfeitable.
Utah Code Annotated § 49-11-615 Election to grandfather -- Applicability of provisions.
---------------------------------------------------------------------------------------
Utah Code Annotated § 49-11-615(1): Notwithstanding any other provision of this title, the allowance payable to any person who becomes a member of any system, administered by the board on or after January 1, 1990, may not exceed the limitation imposed by Section 415 of the Internal Revenue Code of 1986, as amended, which is incorporated by reference.
Utah Code Annotated § 49-11-615(2): This constitutes an election of the grandfather provision under Section 415(b)(10)(C) of the Internal Revenue Code.
Utah Code Annotated § 49-11-616 Benefits information.
-----------------------------------------------------
Utah Code Annotated § 49-11-616(1): The office shall provide written general information to each participating employer concerning benefits available under this title.
Utah Code Annotated § 49-11-616(2): (1); (1); (2)(a)
Utah Code Annotated § 49-11-616(2)(a): (1) A participating employer shall provide the information under Subsection
Utah Code Annotated § 49-11-616(2)(a)(i): immediately upon termination of service, leave of absence, commencement of long-term disability benefits, or retirement; and
Utah Code Annotated § 49-11-616(2)(a)(ii): in person or, if the employee is unavailable to receive the information in person, by mailing the information to the employee's last known address.
Utah Code Annotated § 49-11-616(2)(b): (1); (2)(a)
Utah Code Annotated § 49-11-616(2)(b)(i): (1); (2)(a) Each participating employer shall maintain the records necessary to demonstrate that the employer has provided the information outlined in Subsection
Utah Code Annotated § 49-11-616(2)(b)(ii): The records shall be made available to the office upon request.
Utah Code Annotated § 49-11-616(3): (1); (2)(a)(ii); (3)
Utah Code Annotated § 49-11-616(3)(a): The office shall provide each participating employer with a form to be signed by each employee to verify that the employee has been given in person the information required by this section.
Utah Code Annotated § 49-11-616(3)(b): (1); (2)(a)(ii); (3) If an employer provides information under Subsection
Utah Code Annotated § 49-11-616(3)(b)(i): indicate on the form that the information was mailed to the employee and the address to which the information was mailed;
Utah Code Annotated § 49-11-616(3)(b)(ii): (3) maintain the records necessary to demonstrate that the employer complied with the requirements under this Subsection
Utah Code Annotated § 49-11-616(3)(b)(iii): make the records available to the office upon request.