-
Notifications
You must be signed in to change notification settings - Fork 0
/
moset_02_22Q3_Rogers.json
3926 lines (3926 loc) · 222 KB
/
moset_02_22Q3_Rogers.json
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
{
"pre_script": [
"l mkdir $SITENAME_SetParameter",
"$timeCheck = `date \"+%y%m%d_%H%M%S\"`",
"l+ $SITENAME_SetParameter/$SITENAME_SetParameter_$timeCheck.log",
"",
"gs-",
"alt",
"hget NRCellCU=.*, threshXHighQ|threshXLowQ",
"#set1x GNBDUFunction=1,NRCellDU= tddSpecialSlotPattern 0",
"#set1x GNBDUFunction=1,NRCellDU= tddUlDlPattern 0",
"#set1x NRCellDU=....N[XYZ] tddSpecialSlotPattern 4",
"#set1x NRCellDU=....N[XYZ] tddUlDlPattern 1",
"#set1x NRCellDU=....N[123456] ssbDuration 2",
"#set1x NRCellDU=....N[KLMXYZ] ssbDuration 1",
"#set1x GNBDUFunction=1,NRCellDU= ssbOffset 0",
"#set1x GNBCUUPFunction=1 sNSSAIList sd=1,sst=1",
"#set1x NRCellDU=....N[123456KLMNXYZRST] sNSSAIList sd=1,sst=1",
"#set1x NRCellDU=....N[123456KLMNXYZRST] sNSSAIList sd=1,sst=1",
"#set1x NRCellCU=....N[123],NRFreqRelation= threshXHighQ 0",
"#set1x NRCellCU=....N[123],NRFreqRelation= threshXLowQ 0",
"#set1x NRCellCU=....N[123],EUtranFreqRelation= threshXHighQ 0",
"#set1x NRCellCU=....N[123],EUtranFreqRelation= threshXLowQ 0",
"#set1x GNBCUCPFunction=1,NRCellCU=....N[123]$ threshServingLowQ 0",
"#set1x GNBCUCPFunction=1,NRCellCU=....N[123]$ sNonIntraSearchQ 0",
"#set1x GNBDUFunction=1,NRCellDU=....N[XYZ] csiRsConfig8P csiRsControl8Ports=1,i11Restriction=FFFF,i12Restriction=",
"#set1x GNBDUFunction=1,NRCellDU=....N[XYZ] csiRsConfig16P csiRsControl16Ports=1,i11Restriction=FFFFFFFF,i12Restriction=",
"#set1x GNBDUFunction=1,NRCellDU=....N[XYZ] csiRsConfig32P csiRsControl32Ports=0,i11Restriction=,i12Restriction=",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=3 encapsulation Synchronization=1,TimeSyncIO=1",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=1 encapsulation Ptp=1,BoundaryOrdinaryClock=1",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=4 encapsulation Ptp=1,BoundaryOrdinaryClock=2",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=3 priority 1",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=1 priority 4",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=4 priority 5",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=3 useQLFrom 1",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=1 useQLFrom 1",
"#set1x Synchronization=1,RadioEquipmentClock=1,RadioEquipmentClockReference=4 useQLFrom 1",
"#commit",
"",
"gs+",
"alt",
"",
""
],
"post_script": [
"",
"!!PLESAE CHECK AND MODIFY YOUR POST SCRIPT BEFORE RUN!!",
"",
"# ------------------------------------",
"# eutranFreqToQciProfileRelation",
"# ------------------------------------",
"# GVA Cluster: BC_GREATER_VANCOUVER",
"# GTA Cluster: ON_DURHAM;ON_PEEL;ON_HALTON;ON_TORONTO;ON_YORK",
"#-------------------------------------",
"",
"#LteMaster (Default) qciA1A2ThrOffsets",
"#set UeMeasControl=1,ReportConfigSearch=1 qciA1A2ThrOffsets a1a2ThrRsrpQciOffset=0,a1a2ThrRsrqQciOffset=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1",
"",
"#LteMaster (GTA and GVA) qciA1A2ThrOffsets",
"#set UeMeasControl=1,ReportConfigSearch=1 qciA1A2ThrOffsets a1a2ThrRsrpQciOffset=5,a1a2ThrRsrqQciOffset=20,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1",
"",
"#UtranFreqToQciProfileRelation",
"#lset ENodeBFunction=1,EUtranCellFDD=.*,EUtranFreqRelation=.*_LTE eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#LTE MASTER => SET all EUtranFreqRelation (Default/NON-SUFFIX)",
"#lset ENodeBFunction=1,EUtranCellFDD=.*,EUtranFreqRelation=.*_LTE eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#LteCross",
"#from Any to 675 (1900) => EUtranCellFDD=.*,EUtranFreqRelation=.*_LTE675",
"#lset ENodeBFunction=1,EUtranCellFDD=.*,EUtranFreqRelation=.*_LTE675 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci8,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci5,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci6,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci7,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci9,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci128,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci129,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci130,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci180,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=30,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci181,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#from 675 (LTE_1900) to 3050 (LTE_2600) ==> EUtranCellFDD=.*X[DEF],EUtranFreqRelation=.*_LTE3050 ; EUtranCellFDD=.*X[DEF] earfcndl = 675",
"#lset ENodeBFunction=1,EUtranCellFDD=.*X[DEF],EUtranFreqRelation=.*_LTE3050 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci8,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci5,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci6,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci7,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci9,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci128,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci129,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci130,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci180,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1;a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=0,a5Thr1RsrqFreqQciOffset=0,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=0,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=6,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=0,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfileOperatorDefined=qci181,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#from 675 (LTE_1900) to [2025/5060/2435/68686] => EUtranCellFDD=.*X[DEF],EUtranFreqRelation=.*_LTE[2025/5060/2435/68686] ; EUtranCellFDD=.*X[DEF] earfcndl = 675",
"#lset ENodeBFunction=1,EUtranCellFDD=.*X[DEF],EUtranFreqRelation=.*_LTE2025|ENodeBFunction=1,EUtranCellFDD=.*X[DEF],EUtranFreqRelation=.*_LTE5060|ENodeBFunction=1,EUtranCellFDD=.*X[DEF],EUtranFreqRelation=.*_LTE2435|ENodeBFunction=1,EUtranCellFDD=.*X[DEF],EUtranFreqRelation=.*_LTE68686 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#from [2025/5060/2435/3050/68686] to [2025/5060/2435/3050/68686]",
"#EUtranCellFDD=.*X[456],EUtranFreqRelation=.*_LTE[2025/5060/2435/3050/68686] ; EUtranCellFDD=.*X[456] earfcndl = 2025",
"#lset ENodeBFunction=1,EUtranCellFDD=.*X[456],EUtranFreqRelation=.*_LTE2025|ENodeBFunction=1,EUtranCellFDD=.*X[456],EUtranFreqRelation=.*_LTE5060|ENodeBFunction=1,EUtranCellFDD=.*X[456],EUtranFreqRelation=.*_LTE2435|ENodeBFunction=1,EUtranCellFDD=.*X[456],EUtranFreqRelation=.*_LTE3050|ENodeBFunction=1,EUtranCellFDD=.*X[456],EUtranFreqRelation=.*_LTE68686 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#EUtranCellFDD=.*X[ABC],EUtranFreqRelation=.*_LTE[2025/5060/2435/3050/68686] ; EUtranCellFDD=.*X[ABC] earfcndl = 5060",
"#lset ENodeBFunction=1,EUtranCellFDD=.*X[ABC],EUtranFreqRelation=.*_LTE2025|ENodeBFunction=1,EUtranCellFDD=.*X[ABC],EUtranFreqRelation=.*_LTE5060|ENodeBFunction=1,EUtranCellFDD=.*X[ABC],EUtranFreqRelation=.*_LTE2435|ENodeBFunction=1,EUtranCellFDD=.*X[ABC],EUtranFreqRelation=.*_LTE3050|ENodeBFunction=1,EUtranCellFDD=.*X[ABC],EUtranFreqRelation=.*_LTE68686 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#EUtranCellFDD=.*X[GHJ],EUtranFreqRelation=.*_LTE[2025/5060/2435/3050/68686] ; EUtranCellFDD=.*X[GHJ] earfcndl = 2435",
"#lset ENodeBFunction=1,EUtranCellFDD=.*X[GHJ],EUtranFreqRelation=.*_LTE2025|ENodeBFunction=1,EUtranCellFDD=.*X[GHJ],EUtranFreqRelation=.*_LTE5060|ENodeBFunction=1,EUtranCellFDD=.*X[GHJ],EUtranFreqRelation=.*_LTE2435|ENodeBFunction=1,EUtranCellFDD=.*X[GHJ],EUtranFreqRelation=.*_LTE3050|ENodeBFunction=1,EUtranCellFDD=.*X[GHJ],EUtranFreqRelation=.*_LTE68686 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#EUtranCellFDD=.*X[789],EUtranFreqRelation=.*_LTE[2025/5060/2435/3050/68686] ; EUtranCellFDD=.*X[789] earfcndl = 3050",
"#lset ENodeBFunction=1,EUtranCellFDD=.*X[789],EUtranFreqRelation=.*_LTE2025|ENodeBFunction=1,EUtranCellFDD=.*X[789],EUtranFreqRelation=.*_LTE5060|ENodeBFunction=1,EUtranCellFDD=.*X[789],EUtranFreqRelation=.*_LTE2435|ENodeBFunction=1,EUtranCellFDD=.*X[789],EUtranFreqRelation=.*_LTE3050|ENodeBFunction=1,EUtranCellFDD=.*X[789],EUtranFreqRelation=.*_LTE68686 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"#EUtranCellFDD=.*X[XYZ],EUtranFreqRelation=.*_LTE[2025/5060/2435/3050/68686] ; EUtranCellFDD=.*X[789] earfcndl = 68686",
"#lset ENodeBFunction=1,EUtranCellFDD=.*X[XYZ],EUtranFreqRelation=.*_LTE2025|ENodeBFunction=1,EUtranCellFDD=.*X[XYZ],EUtranFreqRelation=.*_LTE5060|ENodeBFunction=1,EUtranCellFDD=.*X[XYZ],EUtranFreqRelation=.*_LTE2435|ENodeBFunction=1,EUtranCellFDD=.*X[XYZ],EUtranFreqRelation=.*_LTE3050|ENodeBFunction=1,EUtranCellFDD=.*X[XYZ],EUtranFreqRelation=.*_LTE68686 eutranFreqToQciProfileRelation a3RsrpFreqQciOffsetAdjustment=0,a3RsrqFreqQciOffsetAdjustment=0,a5Thr1RsrpFreqQciOffset=5,a5Thr1RsrqFreqQciOffset=20,a5Thr2RsrpFreqQciOffset=0,a5Thr2RsrqFreqQciOffset=20,atoThresh1QciProfileHandling=0,atoThresh2QciProfileHandling=0,lbA5Threshold2RsrpOffset=0,lbA5Threshold2RsrqOffset=0,lbQciProfileHandling=1,qciProfileRef=ENodeBFunction=1,QciTable=default,QciProfilePredefined=qci1,timeToTriggerA3=-1,timeToTriggerA3Rsrq=-1",
"",
"gs-",
"",
"alt",
"l-",
"! ~/countbeta2.sh $SITENAME_SetParameter/$SITENAME_SetParameter_$timeCheck.log"
],
"script_number": "01",
"row_start": 2,
"col_start": 1,
"col_end": 7,
"col_sitename": 1,
"col_manageobject": 2,
"col_moclass": 4,
"col_parameter": 5,
"col_baseline": 7,
"category_order": [
"UndefinedBaseline",
"ReadOnly",
"EricssonOnly",
"Transport",
"SystemConstants",
"EquipmentSupportFunction",
"SystemFunctions",
"NodeSupport",
"ENodeBFunction",
"GNBCUCPFunction",
"GNBCUUPFunction",
"GNBDUFunction",
"Others"
],
"read_only": [
"ManagedElement_managedElementType",
"ManagedElement_managedElementTypeList",
"ManagedElement_release",
"AdditionalPLMNInfo_pLMNIdList",
"CUCP5qiTable_reservedBy",
"EUtranCellRelation_essCellScPairs",
"EUtranFrequency_reservedBy",
"EndpointResource_reservedBy",
"ExternalEUtranCell_operationalState",
"ExternalEUtranCell_reservedBy",
"ExternalNRCellCU_reservedBy",
"IntraFreqMCCellProfile_reservedBy",
"IntraFreqMCFreqRelProfile_reservedBy",
"McfbCellProfile_reservedBy",
"McpcPCellEUtranFreqRelProfile_reservedBy",
"McpcPCellNrFreqRelProfile_reservedBy",
"McpcPCellProfile_reservedBy",
"McpcPSCellNrFreqRelProfile_reservedBy",
"McpcPSCellProfile_reservedBy",
"MdtCellProfile_reservedBy",
"NRCellCU_pLMNIdList",
"NRCellCU_reservedBy",
"NRCellCU_sNSSAIList",
"NRFreqRelation_reservedBy",
"NRFrequency_bandList",
"NRFrequency_reservedBy",
"NrdcMnCellProfile_reservedBy",
"NrdcSnTermination_reservedBy",
"PmUeIntraFreqCellProfile_reservedBy",
"ResourcePartition_reservedBy",
"RibTmRelation_availabilityStatus",
"RibTmRelation_operationalState",
"TermPointToAmf_availabilityStatus",
"TermPointToAmf_operationalState",
"TermPointToAmf_pLMNIdList",
"TermPointToAmf_sNSSAIList",
"TermPointToAmf_servedGuamiList",
"TermPointToENodeB_availabilityStatus",
"TermPointToENodeB_operationalState",
"TermPointToGNBCUUP_availabilityStatus",
"TermPointToGNBCUUP_operationalState",
"TermPointToGNBDU_availabilityStatus",
"TermPointToGNBDU_operationalState",
"TermPointToGNodeB_availabilityStatus",
"TermPointToGNodeB_operationalState",
"TrStPSCellProfile_reservedBy",
"TrStSaCellProfile_reservedBy",
"TrStSaEUtranFreqRelProfile_reservedBy",
"TrStSaNrFreqRelProfile_reservedBy",
"UeMCCellProfile_reservedBy",
"UeMCEUtranFreqRelProfile_reservedBy",
"UeMCNrFreqRelProfile_reservedBy",
"CUUP5qiTable_reservedBy",
"EndpointResource_reservedBy",
"PpControlLink_localEndPoint",
"PpControlLink_remoteEndPoint",
"ResourcePartition_reservedBy",
"RpUserPlaneLink_localEndPoint",
"RpUserPlaneLink_remoteEndPoint",
"S1ULink_localEndPoint",
"S1ULink_remoteEndPoint",
"CaSCellHandling_reservedBy",
"CellResourceMapping_reservedBy",
"CommonBeamforming_supportedCbfMacroTaperTypes",
"CommonBeamforming_supportedCoverageShapes",
"ConfiguredGrantUeCfg_reservedBy",
"DU5qiTable_reservedBy",
"DrxProfile_reservedBy",
"EndpointResource_reservedBy",
"InterMeLink_availabilityStatus",
"InterMeLink_operationalState",
"LinkAdaptationUeCfg_reservedBy",
"NRCellDU_availabilityStatus",
"NRCellDU_bandList",
"NRCellDU_csiRsActivePortConfig",
"NRCellDU_operationalState",
"NRSectorCarrier_availabilityStatus",
"NRSectorCarrier_operationalState",
"NRSectorCarrier_reservedBy",
"PreschedulingUeCfg_reservedBy",
"ResourceAllocationPolicy_reservedBy",
"ResourcePartition_reservedBy",
"SchedulingProfile_reservedBy",
"TermPointToGNBCUCP_availabilityStatus",
"TermPointToGNBCUCP_operationalState",
"UeBbProfile_reservedBy",
"ExtTrx_rfBranchRx",
"Trx_rfBranchRx",
"AbConfProfile_reservedBy",
"AdditionalCoreNetwork_reservedBy",
"AirIfLoadProfile_reservedBy",
"Cdma2000Freq_reservedBy",
"Cdma2000FreqBand_reservedBy",
"CellPortionRd_altitude",
"CellPortionRd_floorInformation",
"CellPortionRd_latitude",
"CellPortionRd_longitude",
"CellPortionRd_lppaCellPortionId",
"CellPortionRd_radioDotCoverage",
"CellSleepFunction_sleepEndTimeApplied",
"CellSleepFunction_sleepProhibitStartTime",
"CellSleepFunction_sleepStartTimeApplied",
"CellSleepFunction_sleepState",
"CtsFunction_ctsMlAcsState",
"CtsFunction_ctsMlSCellSelState",
"DiffAdmCtrlFilteringProfile_reservedBy",
"ENodeBFunction_mfbiSupport",
"ENodeBFunction_obsStatus",
"ENodeBFunction_release",
"EUtranCellFDD_activeServiceAreaId",
"EUtranCellFDD_additionalFreqBandList",
"EUtranCellFDD_ailgActive",
"EUtranCellFDD_availabilityStatus",
"EUtranCellFDD_bcCdma2000SysTimeType",
"EUtranCellFDD_dlPowerState",
"EUtranCellFDD_freqBand",
"EUtranCellFDD_gpsTimeSFN0DecimalSecond",
"EUtranCellFDD_gpsTimeSFN0Seconds",
"EUtranCellFDD_lbabBarringPriorityLevel",
"EUtranCellFDD_loadBasedBarringFactor",
"EUtranCellFDD_noOfCrsPorts",
"EUtranCellFDD_noOfPucchCqiUsersCalc",
"EUtranCellFDD_noOfPucchSrUsersCalc",
"EUtranCellFDD_nrOfPreallocatedSrRes",
"EUtranCellFDD_operationalState",
"EUtranCellFDD_pa",
"EUtranCellFDD_pb",
"EUtranCellFDD_physicalLayerCellId",
"EUtranCellFDD_plmnPabBarringPriorityLevel",
"EUtranCellFDD_prsConfigIndexMapped",
"EUtranCellFDD_prsMutingPattern",
"EUtranCellFDD_reservedBy",
"EUtranCellRelation_amoState",
"EUtranCellRelation_createdBy",
"EUtranCellRelation_eranExternalUlCompGroupAvail",
"EUtranCellRelation_hoSuccLevel",
"EUtranCellRelation_incomingLoadBalancing",
"EUtranCellRelation_lastModification",
"EUtranCellRelation_mobilityStatus",
"EUtranCellRelation_sleepModeCapacityCell",
"EUtranCellRelation_sleepModeCoverageCell",
"EUtranCellTDD_activeServiceAreaId",
"EUtranCellTDD_additionalFreqBandList",
"EUtranCellTDD_ailgActive",
"EUtranCellTDD_availabilityStatus",
"EUtranCellTDD_bcCdma2000SysTimeType",
"EUtranCellTDD_dlPowerState",
"EUtranCellTDD_freqBand",
"EUtranCellTDD_gpsTimeSFN0DecimalSecond",
"EUtranCellTDD_gpsTimeSFN0Seconds",
"EUtranCellTDD_lbabBarringPriorityLevel",
"EUtranCellTDD_loadBasedBarringFactor",
"EUtranCellTDD_noOfCrsPorts",
"EUtranCellTDD_noOfPucchCqiUsersCalc",
"EUtranCellTDD_noOfPucchSrUsersCalc",
"EUtranCellTDD_nrOfPreallocatedSrRes",
"EUtranCellTDD_operationalState",
"EUtranCellTDD_pa",
"EUtranCellTDD_pb",
"EUtranCellTDD_physicalLayerCellId",
"EUtranCellTDD_plmnPabBarringPriorityLevel",
"EUtranCellTDD_prsConfigIndexMapped",
"EUtranCellTDD_prsMutingPattern",
"EUtranCellTDD_reservedBy",
"EUtranFreqRelation_candNeighborRel",
"EUtranFreqRelation_createdBy",
"EUtranFreqRelation_lastModification",
"EUtranFreqRelation_timeOfLastModification",
"EUtranFrequency_additionalFreqBandList",
"EUtranFrequency_freqBand",
"EUtranFrequency_reservedBy",
"EabConfProfileBr_reservedBy",
"EndcProfile_reservedBy",
"EndcProfilePredefined_meNbS1TermReqArpLev",
"EndcProfilePredefined_reservedBy",
"EndcProfilePredefined_splitNotAllowedUeArpLev",
"EndcProfilePredefined_userLabelPredefined",
"EndcUserProfile_reservedBy",
"ExternalCdma20001xRttCell_reservedBy",
"ExternalCdma2000Cell_reservedBy",
"ExternalENodeBFunction_createdBy",
"ExternalENodeBFunction_lastModification",
"ExternalENodeBFunction_timeOfLastModification",
"ExternalEUtranCellFDD_additionalFreqBandList",
"ExternalEUtranCellFDD_createdBy",
"ExternalEUtranCellFDD_dlChannelBandwidth",
"ExternalEUtranCellFDD_freqBand",
"ExternalEUtranCellFDD_lastModification",
"ExternalEUtranCellFDD_physicalLayerCellId",
"ExternalEUtranCellFDD_plmnListVerifiedByX2OrCgi",
"ExternalEUtranCellFDD_reservedBy",
"ExternalEUtranCellFDD_timeOfLastModification",
"ExternalEUtranCellFDD_ulChannelBandwidth",
"ExternalEUtranCellTDD_additionalFreqBandList",
"ExternalEUtranCellTDD_channelBandwidth",
"ExternalEUtranCellTDD_createdBy",
"ExternalEUtranCellTDD_freqBand",
"ExternalEUtranCellTDD_lastModification",
"ExternalEUtranCellTDD_physicalLayerCellId",
"ExternalEUtranCellTDD_plmnListVerifiedByX2OrCgi",
"ExternalEUtranCellTDD_specialSubframePattern",
"ExternalEUtranCellTDD_subframeAssignment",
"ExternalEUtranCellTDD_timeOfLastModification",
"ExternalEUtranCellUnlicensed_freqBand",
"ExternalEUtranCellUnlicensed_lastModification",
"ExternalEUtranCellUnlicensed_physicalLayerCellId",
"ExternalEUtranCellUnlicensed_reservedBy",
"ExternalEUtranCellUnlicensed_timeOfCreation",
"ExternalEUtranCellUnlicensed_timeOfLastModification",
"ExternalEUtranCellUnlicensed_uniqueCellId",
"ExternalGNodeBFunction_createdBy",
"ExternalGUtranCell_bandList",
"ExternalGUtranCell_cellState",
"ExternalGUtranCell_configuredTAC",
"ExternalGUtranCell_createdBy",
"ExternalGUtranCell_nRPCI",
"ExternalGUtranCell_pointAArfcnDl",
"ExternalGUtranCell_pointAArfcnUl",
"ExternalGUtranCell_reservedBy",
"ExternalGUtranCell_serviceStatus",
"ExternalGUtranCell_transmissionBwDl",
"ExternalGUtranCell_transmissionBwUl",
"ExternalGeranCell_lastModification",
"ExternalGeranCell_reservedBy",
"ExternalGeranCell_rimAssociationStatus",
"ExternalGeranCell_timeOfLastModification",
"ExternalUtranCellFDD_lastModification",
"ExternalUtranCellFDD_reservedBy",
"ExternalUtranCellFDD_rimAssociationStatus",
"ExternalUtranCellFDD_timeOfLastModification",
"ExternalUtranCellTDD_lastModification",
"ExternalUtranCellTDD_reservedBy",
"ExternalUtranCellTDD_rimAssociationStatus",
"ExternalUtranCellTDD_timeOfLastModification",
"FastCoordinationGroup_activeList",
"FastCoordinationGroup_candidateList",
"FastCoordinationGroup_eranFeatureName",
"GUtranCellRelation_createdBy",
"GUtranCellRelation_essCellScPairs",
"GUtranCellRelation_mobilityStatusNR",
"GUtranCellRelation_reservedBy",
"GUtranCellRelation_timeOfCreation",
"GUtranSyncSignalFrequency_bandList",
"GUtranSyncSignalFrequency_gscn",
"GUtranSyncSignalFrequency_reservedBy",
"GeranCellRelation_createdBy",
"GeranCellRelation_hoSuccLevel",
"GeranCellRelation_lastModification",
"GeranCellRelation_mobilityStatus",
"GeranCellRelation_timeOfCreation",
"GeranCellRelation_timeOfLastModification",
"GeranFreqGroup_reservedBy",
"GeranFrequency_reservedBy",
"GtpPath_echoPeerStatus",
"IuaProfile_reservedBy",
"LogicalChannelGroup_reservedBy",
"MbmsService_availabilityStatus",
"MbmsService_operationalState",
"MbsfnAreaCellRelation_mbsfnAreaCellStatus",
"MeasCellGroup_reservedBy",
"MimoSleepFunction_sleepEndTimeApplied",
"MimoSleepFunction_sleepStartTimeApplied",
"MimoSleepFunction_sleepState",
"NbIotCell_actualRsrpThreshold1",
"NbIotCell_actualRsrpThreshold2",
"NbIotCell_availabilityStatus",
"NbIotCell_freqBand",
"NbIotCell_operationalState",
"ParameterChangeRequests_latestUpdate",
"PlmnAbConfProfile_reservedBy",
"PmFlexCounterFilter_endcFilterMax",
"PreschedProfile_reservedBy",
"PtmCellProfile_reservedBy",
"PtmSubscriberGroup_reservedBy",
"QciTable_reservedBy",
"ReportConfigEUtraInterFreqPm_reservedBy",
"ReportConfigEUtraInterFreqSec_reservedBy",
"ReportConfigEUtraIntraFreqPm_reservedBy",
"ReportConfigEUtraIntraFreqSec_reservedBy",
"ReportConfigInterRatPm_reservedBy",
"ReportConfigInterRatSec_reservedBy",
"ResourcePartition_reservedBy",
"ResourcePartitionGroup_reservedBy",
"SciProfile_reservedBy",
"SectorCarrier_availabilityStatus",
"SectorCarrier_maximumTransmissionPower",
"SectorCarrier_noOfUsedRxAntennas",
"SectorCarrier_noOfUsedTxAntennas",
"SectorCarrier_operationalState",
"SectorCarrier_reservedBy",
"SectorCarrier_supportedSectorShapes",
"SectorCarrier_supportedVerticalTaperTypes",
"SectorCarrier_usedSectorShape",
"SubscriberGroupProfile_profileIndex",
"TermPointToCts_availabilityStatus",
"TermPointToCts_operationalState",
"TermPointToCts_usedIpAddress",
"TermPointToENB_availabilityStatus",
"TermPointToENB_createdBy",
"TermPointToENB_eranUlCompSwCompatibility",
"TermPointToENB_lastModification",
"TermPointToENB_operationalState",
"TermPointToENB_timeOfLastModification",
"TermPointToENB_usedIpAddress",
"TermPointToGNB_availabilityStatus",
"TermPointToGNB_createdBy",
"TermPointToGNB_operationalState",
"TermPointToGNB_usedIpAddress",
"TermPointToMme_availabilityStatus",
"TermPointToMme_mmeName",
"TermPointToMme_operationalState",
"TermPointToMme_relativeMmeCapacity",
"TermPointToMme_usedIpAddress",
"TermPointToSGW_usedIpAddress",
"TimerProfile_reservedBy",
"UlCompGroup_availabilityStatus",
"UlCompGroup_operationalState",
"UnlicensedBandProfile_reservedBy",
"UnsupportedFreqProfile_reservedBy",
"UserProfile_reservedBy",
"UtranCellRelation_createdBy",
"UtranCellRelation_lastModification",
"UtranCellRelation_mobilityStatus",
"UtranCellRelation_timeOfCreation",
"UtranCellRelation_timeOfLastModification",
"UtranFreqRelation_maxNrUtranCellRelations",
"UtranFrequency_reservedBy",
"BbProcessingResource_dlBbCapacityMaxLimit",
"BbProcessingResource_dlBbCapacityNet",
"BbProcessingResource_ulBbCapacityMaxLimit",
"BbProcessingResource_ulBbCapacityNet",
"TermPointToMmeM3_availabilityStatus",
"TermPointToMmeM3_operationalState",
"TermPointToMmeM3_usedIpAddress",
"PpControlLink_localEndPoint",
"PpControlLink_remoteEndPoint",
"BrmBackup_backupName",
"BrmBackup_creationTime",
"BrmBackup_creationType",
"BrmBackup_status",
"BrmBackup_swVersion",
"BrmBackupManager_backupDomain",
"BrmBackupManager_backupType",
"BrmFailsafeBackup_usageState",
"CertMCapabilities_keySupport",
"EnrollmentAuthority_reservedBy",
"EnrollmentServerGroup_reservedBy",
"ExternalTrustedCertificate_reservedBy",
"TrustedCertificate_reservedBy",
"Sftp_supportedCiphers",
"Sftp_supportedKeyExchanges",
"Sftp_supportedMacs",
"FailedHcRuleEntity_entity",
"FailedHcRuleEntity_entityResult",
"FailedHcRuleEntity_outputParameters",
"HcJob_status",
"HcJob_subTypeStatus",
"HcJob_typeStatus",
"HcRule_categoryList",
"HcRule_description",
"HcRule_inputParameters",
"HcRule_name",
"HcRule_outputParameters",
"HcRule_recommendedAction",
"HcRule_ruleType",
"HcRule_severity",
"HcRuleFailed_hcRule",
"HcRuleFailed_severity",
"HcRuleFailed_usedInputParameters",
"HcRuleLocked_hcRule",
"HcRuleLocked_lockedInfo",
"HcRuleLocked_usedInputParameters",
"HcRuleSuccess_hcRule",
"HcRuleSuccess_usedInputParameters",
"HealthCheckM_lastStatus",
"HealthCheckM_supportedCategories",
"SuccessHcRuleEntity_entity",
"SuccessHcRuleEntity_entityResult",
"SuccessHcRuleEntity_outputParameters",
"HwInventory_timeOfLatestInvChange",
"HwItem_additionalInformation",
"HwItem_dateOfLastService",
"HwItem_hwCapability",
"HwItem_hwModel",
"HwItem_hwName",
"HwItem_hwType",
"HwItem_hwUnitLocation",
"HwItem_manualDataEntry",
"HwItem_serialNumber",
"HwItem_vendorName",
"AutonomousMode_activationState",
"AutonomousMode_expiration",
"CapacityKey_grantedCapacityLevel",
"CapacityKey_licensedCapacityLimit",
"CapacityKey_licensedCapacityLimitReached",
"CapacityKey_name",
"CapacityKey_validFrom",
"CapacityState_currentCapacityLimit",
"CapacityState_description",
"CapacityState_grantedCapacityLevel",
"CapacityState_keyId",
"CapacityState_licenseState",
"CapacityState_licensedCapacityLimitReached",
"EmergencyUnlock_activationState",
"EmergencyUnlock_activationsLeft",
"FeatureKey_name",
"FeatureKey_validFrom",
"FeatureState_description",
"FeatureState_keyId",
"FeatureState_licenseState",
"FeatureState_serviceState",
"GracePeriod_gracePeriodState",
"IntegrationUnlock_activationState",
"IntegrationUnlock_activationsLeft",
"KeyFileInformation_installationTime",
"KeyFileInformation_locatable",
"KeyFileInformation_sequenceNumber",
"Lm_fingerprintUpdateable",
"Lm_lastInventoryChange",
"Lm_lastLicenseInventoryRefresh",
"Lm_lmState",
"Log_reportProgress",
"LogM_reportProgress",
"LogPushTransfer_operationalState",
"EventGroup_generation",
"EventJob_currentJobState",
"EventJob_jobControl",
"FilePullCapabilities_alignedReportingPeriod",
"FilePullCapabilities_finalROP",
"FilePullCapabilities_outputDirectory",
"PmJob_currentJobState",
"PmMeasurementCapabilities_jobStartStopSupport",
"PmMeasurementCapabilities_maxNoOfJobs",
"PmMeasurementCapabilities_measurementJobSupport",
"PmMeasurementCapabilities_realTimeJobSupport",
"PmMeasurementCapabilities_supportedCompressionTypes",
"PmMeasurementCapabilities_supportedMeasJobGps",
"PmMeasurementCapabilities_supportedRopPeriods",
"PmMeasurementCapabilities_supportedRtJobGps",
"PmMeasurementCapabilities_supportedThreshJobGps",
"PmMeasurementCapabilities_thresholdJobSupport",
"AuthenticationOrder_authenticationMethodOrder",
"AuthorizationOrder_authorizationMethodOrder",
"Dtls_enabledCiphers",
"Dtls_reservedBy",
"Dtls_selectedProtocolVersion",
"Dtls_supportedCiphers",
"Dtls_supportedProtocolVersion",
"ServerKey_fingerprint",
"ServerKey_publicKey",
"ServerKey_publicKeyFormat",
"Ssh_supportedCiphers",
"Ssh_supportedKeyExchanges",
"Ssh_supportedMacs",
"Tls_enabledCiphers",
"Tls_supportedCiphers",
"SwInventory_active",
"SwItem_consistsOf",
"SwVersion_consistsOf",
"SwM_actionCapable",
"UpgradePackage_activationStep",
"UpgradePackage_administrativeData",
"UpgradePackage_created",
"UpgradePackage_state",
"OamTrafficClass_name",
"Schema_identifier",
"Schema_selectedModelOptions",
"Schema_version",
"Ntp_supportedKeyAlgorithm",
"NtpSecurityPolicy_ntpServerRef",
"AlarmPort_operationalState",
"AntennaNearUnit_maldSetupState",
"AsdSubUnit_availabilityStatus",
"GlsSubUnit_availabilityStatus",
"MulticastAntennaBranch_availabilityStatus",
"MulticastAntennaBranch_operationalState",
"MulticastAntennaBranch_reservedBy",
"RaeSubUnit_availabilityStatus",
"RaeSubUnit_operationalState",
"RetSubUnit_supportedAisgRetVersion",
"RetSubUnit_tiltChangeStatus",
"RfBranch_reservedBy",
"TmaSubUnit_supportedAisgTmaVersion",
"TmaSubUnit_tmfData",
"BatteryUnit_availabilityStatus",
"BatteryUnit_batteryBackupRef",
"BatteryUnit_fullyChargedCapacity",
"BatteryUnit_nominalCapacity",
"BatteryUnit_operationalState",
"BatteryUnit_stateOfHealth",
"DiPort_channelRef",
"EFuse_plugInModuleRef",
"EcPort_operationalState",
"Enclosure_reservedBy",
"EnergyMeter_energyMeterEnabled",
"EquipmentDiscovery_equipmentDiscoveryStatus",
"ExtOamAgent_operationalState",
"ExternalNode_fullDistinguishedName",
"ExternalNode_logicalName",
"ExternalNode_radioAccessTechnology",
"ExternalNode_supportSystemControl",
"ExternalUp_administrativeData",
"ExternalUp_cumulativeUpgradeStatus",
"ExternalUp_unitUpgradeStatus",
"FieldReplaceableUnit_operationalState",
"FieldReplaceableUnit_productData",
"FieldReplaceableUnit_supportUnitRef",
"FwSlot_activated",
"FwSlot_prioritized",
"HereIAmIndication_hereIAmIndicationState",
"HwGroup_reservedBy",
"IplPort_availabilityStatus",
"IplPort_operationalState",
"IplPort_reservedBy",
"ORadio_availabilityStatus",
"ORadio_operationalState",
"ORiPort_availabilityStatus",
"ORiPort_operationalState",
"RcvdPowerScanner_scanId",
"RcvdPowerScanner_scanResult",
"RdiPort_availabilityStatus",
"RdiPort_channelRef",
"RdiPort_operationalState",
"RfPort_availabilityStatus",
"RfPort_operationalState",
"RiPort_channelRef",
"RiPort_transmissionStandard",
"SfpChannel_reservedBy",
"SupportUnit_providedServices",
"SupportUnit_reservedBy",
"SyncPort_reservedBy",
"ThirdPartyRiPort_channelRef",
"ThirdPartyRiPort_transmissionStandard",
"TnPort_channelRef",
"TnPort_reservedBy",
"Transceiver_availabilityStatus",
"Transceiver_operationalState",
"BatteryBackup_batteryTestIsRunning",
"BatteryBackup_fullyChargedCapacity",
"BatteryBackup_reservedBy",
"BatteryBackup_stateOfHealth",
"EquipmentSupportFunction_release",
"ExternalPower_availabilityStatus",
"ExternalPower_operationalState",
"InstantaneousLicensing_availabilityStatus",
"InstantaneousLicensing_operationalState",
"OnSiteActivities_technicianPresent",
"PimCancellationFunction_availabilityStatus",
"PimCancellationFunction_operationalState",
"PimCancellationFunction_reservedBy",
"SectorEquipmentFunction_availabilityStatus",
"SectorEquipmentFunction_eUtranFqBands",
"SectorEquipmentFunction_geranFqBands",
"SectorEquipmentFunction_nRFqBands",
"SectorEquipmentFunction_reservedBy",
"SectorEquipmentFunction_utranFddFqBands",
"NodeSupport_release",
"UlSpectrumAnalyzer_filename",
"UlSpectrumAnalyzer_info",
"UlSpectrumAnalyzer_ulSpectrumSamplingStatus",
"FrequencySyncIO_reservedBy",
"FronthaulBoundaryOrdinaryClock_reservedBy",
"GnssInfo_gnssReceiverFirmware",
"GnssInfo_gnssReceiverFwUpgradeStatus",
"NtpFrequencySync_reservedBy",
"OverTheAirSync_reservedBy",
"BoundaryOrdinaryClock_reservedBy",
"SyncEthInput_reservedBy",
"TimeSyncIO_reservedBy",
"AuthenticationServer_reservedBy",
"AuthenticationServer_usedServerAddress",
"BfdProfile_reservedBy",
"BfdSessionIPv4_addrDst",
"BfdSessionIPv4_addrSrc",
"BfdSessionIPv6_addrDst",
"BfdSessionIPv6_addrSrc",
"Bridge_availabilityStatus",
"Bridge_macAddress",
"Bridge_operationalState",
"Bridge_reservedBy",
"DnsClient_reservedBy",
"DnsClient_usedServerAddress",
"Dot1xSupplicant_reservedBy",
"EthernetOamLocalMep_mepDefect",
"EthernetOamRemoteMep_rdi",
"EthernetOamRemoteMep_remoteMepState",
"AclIpv4_reservedBy",
"AclIpv6_reservedBy",
"Ikev2PolicyProfile_reservedBy",
"IpsecTunnel_reservedBy",
"IpsecProposalProfile_reservedBy",
"EthernetPort_macAddress",
"EthernetPort_mtu",
"EthernetPort_operOperatingMode",
"EthernetPort_reservedBy",
"LagPort_availabilityStatus",
"LagPort_macAddress",
"LagPort_mtu",
"LagPort_operationalState",
"LagPort_reservedBy",
"VlanPort_reservedBy",
"AddressIPv4_reservedBy",
"InterfaceIPv4_reservedBy",
"AddressIPv6_reservedBy",
"InterfaceIPv6_reservedBy",
"RaTransmitter_minRtrAdvInterval",
"Router_reservedBy",
"MacSecProfile_reservedBy",
"RoutingPolicyIpv4_reservedBy",
"RoutingPolicyIpv6_reservedBy",
"PeerIpsecTunnel_localInnerAddress",
"PeerIpsecTunnel_localOuterAddress",
"PcpToQueueMap_reservedBy",
"QueueRed_reservedBy",
"QueueTailDrop_reservedBy",
"DscpDscpMap_reservedBy",
"DscpPcpMap_reservedBy",
"PcpPcpMap_reservedBy",
"PeerIPv4_reservedBy",
"PeerIPv6_reservedBy",
"SctpEndpoint_availabilityStatus",
"SctpEndpoint_operationalState",
"SctpEndpoint_reservedBy",
"SctpProfile_reservedBy",
"TwampResponder_responderType",
"DlPowerSharing_nodeBLocalCellRef",
"DlPowerSharing_rfBranchTxRef",
"HsDschResources_maxAvailMixedModeExtraPower",
"NodeBFunction_bsctModeStatus",
"NodeBLocalCell_bsctBerMeasStatus",
"NodeBLocalCell_bsctPnTransStatus",
"NodeBLocalCell_bsctSirMeasStatus",
"NodeBLocalCell_cpcCapability",
"NodeBLocalCell_eulMcCapability",
"NodeBLocalCell_hsdpa3McCapability",
"NodeBLocalCell_hsdpaDbMcCapability",
"NodeBLocalCell_hsdpaMcCapability",
"NodeBLocalCell_hsdpaMmPowerSharingCapability",
"NodeBLocalCell_hsdpaPowerSharingCapability",
"NodeBLocalCell_reservedBy",
"NodeBLocalCell_uarfcnUl",
"NodeBSectorCarrier_nbirAutoCurrentAlgorithm"
],
"take_effect": [
"FgwControl_ipv6Address__Next MO unlock.",
"FgwControl_transportRef__Next MO unlock.",
"FgwControl_trustCategory__Next MO unlock.",
"FgwService_ipv6Address__Next MO unlock.",
"FgwService_nodeCredential__Next MO unlock.",
"FgwService_trustCategory__Next MO unlock.",
"CUCP5qi_nrdcSnTerminationRef__New connection",
"CUCP5qiTable_default5qiTable__New connection",
"CapabilityHandling_ueConfGroupType__New connection",
"CapabilityHandlingUeCfg_prefUeGroupList__New connection",
"CapabilityHandlingUeCfg_ueConfGroupList__New connection",
"CapabilityHandlingUeCfg_ueGroupList__New connection",
"CapabilityHandlingUeCfg_ulRrcSegAllowedForUeCapInfo__New connection",
"EUtranCellRelation_cellIndividualOffset__Next usage.",
"EUtranCellRelation_essEnabled__Next cell unlock",
"EUtranCellRelation_isHoAllowed__Next usage.",
"EUtranFreqRelation_allowedPlmnList__New connection",
"EUtranFreqRelation_cellReselectionPriority__New connection for RRCRelease message.. Otherwise, immediately.",
"EUtranFreqRelation_cellReselectionSubPriority__New connection for RRCRelease message.. Otherwise, immediately.",
"EUtranFreqRelation_mcpcPCellEUtranFreqRelProfileRef__Next usage.",
"EUtranFreqRelation_tReselectionEutraSfHigh__New connection",
"EUtranFreqRelation_tReselectionEutraSfMedium__New connection",
"EUtranFreqRelation_trStSaEUtranFreqRelProfileRef__Next usage.",
"EUtranFreqRelation_ueMCEUtranFreqRelProfileRef__Next usage.",
"EUtranFreqRelation_voicePrio__New connection",
"EmCall_arpPrioEm5qi1List__New connection",
"EmCall_arpPrioEm5qi5List__New connection",
"EsiSelectiveUeTracingCfg_cellLocalIdList__Next time suetCfgEnabled is changed to true.",
"EsiSelectiveUeTracingCfg_prefUeGroupList__Next time suetCfgEnabled is changed to true.",
"EsiSelectiveUeTracingCfg_suetCfgEnabled__New connection",
"EsiSelectiveUeTracingCfg_tSuetTimeout__Next time suetCfgEnabled is changed to true.",
"EsiSelectiveUeTracingCfg_ueGroupList__Next time suetCfgEnabled is changed to true.",
"ExternalBroadcastPLMNInfo_nRTAC__Next MO unlock",
"ExternalBroadcastPLMNInfo_pLMNIdList__Next MO unlock",
"ExternalENodeBFunction_pLMNId__New connection",
"ExternalEUtranCell_additionalPlmnList__New connection",
"ExternalEUtranCell_eUtranFrequencyRef__Next usage.",
"ExternalEUtranCell_physicalLayerCellId__Next usage.",
"ExternalEUtranCell_tac__Next usage.",
"ExternalGNBCUCPFunction_amfRegionInfoList__Next usage",
"ExternalGNBCUCPFunction_gNBId__New connection",
"ExternalGNBCUCPFunction_gNBIdLength__New connection",
"ExternalGNBCUCPFunction_pLMNId__New connection",
"ExternalNRCellCU_nRFrequencyRef__New connection",
"ExternalNRCellCU_nRPCI__New connection",
"ExternalNRCellCU_nRTAC__New connection",
"ExternalNRCellCU_plmnIdList__New connection",
"GNBCUCPFunction_endpointResourceRef__Node restart",
"GNBCUCPFunction_gNBCUName__New connection",
"GNBCUCPFunction_gNBId__Node restart",
"GNBCUCPFunction_gNBIdLength__Node restart",
"GNBCUCPFunction_maxCommonProcTime__New connection",
"GNBCUCPFunction_maxNgRetryTime__New connection",
"GNBCUCPFunction_nasInactivityTime__New connection",
"GNBCUCPFunction_ngcDedProcTime__New connection",
"GNBCUCPFunction_pLMNId__Next cell unlock",
"GNBCUCPFunction_prefInterGnbHo__Next usage.",
"GNBCUCPFunction_rrcReestSupportType__New connection",
"GNBCUCPFunction_tDcOverall__New connection",
"GNBCUCPFunction_tXnDcOverall__New connection",
"GNBCUCPFunction_tXnDcPrep__New connection",
"InactivityProfileUeCfg_prefUeGroupList__New connection",
"InactivityProfileUeCfg_tInactivityTimer__New connection",
"InactivityProfileUeCfg_tInactivityTimerEndcSn__New connection",
"InactivityProfileUeCfg_tInactivityTimerNrdcSn__New connection",
"InactivityProfileUeCfg_ueGroupList__New connection",
"IntraFreqMCCellProfile_rsrpBetterSCell__New connection",
"IntraFreqMCCellProfile_rsrpSCellCoverage__New connection",
"IntraFreqMCCellProfile_rsrqSCellCoverage__New connection",
"IntraFreqMCCellProfile_sCellCoverageTriggerQuantity__New connection",
"IntraFreqMCCellProfile_ueConfGroupType__Next usage.",
"IntraFreqMCCellProfileUeCfg_betterSpCellTriggerQuantity__Next usage.",
"IntraFreqMCCellProfileUeCfg_endcActionEvalFail__Next usage.",
"IntraFreqMCCellProfileUeCfg_prefUeGroupList__Next usage.",
"IntraFreqMCCellProfileUeCfg_rsrpBetterSpCell__Next usage.",
"IntraFreqMCCellProfileUeCfg_rsrqBetterSpCell__Next usage.",
"IntraFreqMCCellProfileUeCfg_ueConfGroupList__Next usage.",
"IntraFreqMCCellProfileUeCfg_ueGroupList__Next usage.",
"IntraFreqMCFreqRelProfile_ueConfGroupType__Next usage.",
"IntraFreqMCFreqRelProfileUeCfg_prefUeGroupList__Next usage.",
"IntraFreqMCFreqRelProfileUeCfg_rsrpSCellCoverageThrOffset__Next usage.",
"IntraFreqMCFreqRelProfileUeCfg_rsrqSCellCoverageThrOffset__Next usage.",
"IntraFreqMCFreqRelProfileUeCfg_ueConfGroupList__Next usage.",
"IntraFreqMCFreqRelProfileUeCfg_ueGroupList__Next usage.",
"IntraFreqMCFreqRelProfileUeCfg_waitForBetterSCellRep__New connection",
"LocalA1Endpoint_addressRef__Change causes A1 server restart and takes effect after restart.",
"LocalA1Endpoint_nodeCredentialRef__Change causes A1 server restart and takes effect after restart.",
"LocalA1Endpoint_portNumber__Change causes A1 server restart and takes effect after restart.",
"LocalA1Endpoint_trustCategoryRef__Change causes A1 server restart and takes effect after restart.",
"LocalIpEndpoint_addressRef__Node restart",
"LocalIpEndpoint_interfaceList__Node restart",
"LocalSctpEndpoint_interfaceUsed__Node restart",
"LocalSctpEndpoint_sctpEndpointRef__Node restart",
"Mcfb_voiceEpsFbPossible__Next usage.",
"McfbCellProfile_ueConfGroupType__Next usage.",
"McfbCellProfileUeCfg_epsFallbackOperation__Next usage.",
"McfbCellProfileUeCfg_epsFallbackOperationEm__Next usage.",
"McfbCellProfileUeCfg_epsFbTargetSearchTimer__Next usage.",
"McfbCellProfileUeCfg_prefUeGroupList__Next usage.",
"McfbCellProfileUeCfg_rejectVoiceIncHoAtEpsFb__New connection",
"McfbCellProfileUeCfg_rsrpCellCandidate__Next usage.",
"McfbCellProfileUeCfg_rsrpCriticalCoverage__Next usage.",
"McfbCellProfileUeCfg_rsrqCellCandidate__Next usage.",
"McfbCellProfileUeCfg_rsrqCriticalCoverage__Next usage.",
"McfbCellProfileUeCfg_triggerQuantity__Next usage.",
"McfbCellProfileUeCfg_ueConfGroupList__Next usage.",
"McfbCellProfileUeCfg_ueGroupList__Next usage.",
"McpcNrdcPSCellProfile_rsrpCritical__Next usage.",
"McpcNrdcPSCellProfile_rsrpCriticalEnabled__Next usage.",
"McpcPCellEUtranFreqRelProfile_ueConfGroupType__Next usage.",
"McpcPCellEUtranFreqRelProfileUeCfg_inhibitMeasForCellCandidate__Next usage.",
"McpcPCellEUtranFreqRelProfileUeCfg_prefUeGroupList__Next usage.",
"McpcPCellEUtranFreqRelProfileUeCfg_rsrpCandidateB2Offsets__Next usage.",
"McpcPCellEUtranFreqRelProfileUeCfg_ueConfGroupList__Next usage.",
"McpcPCellEUtranFreqRelProfileUeCfg_ueGroupList__Next usage.",
"McpcPCellNrFreqRelProfile_ueConfGroupType__Next usage.",
"McpcPCellNrFreqRelProfileUeCfg_inhibitMeasForCellCandidate__Next usage.",
"McpcPCellNrFreqRelProfileUeCfg_prefUeGroupList__Next usage.",
"McpcPCellNrFreqRelProfileUeCfg_rsrpCandidateA5Offsets__Next usage.",
"McpcPCellNrFreqRelProfileUeCfg_ueConfGroupList__Next usage.",
"McpcPCellNrFreqRelProfileUeCfg_ueGroupList__Next usage.",
"McpcPCellProfile_ueConfGroupType__Next usage.",
"McpcPCellProfileUeCfg_lowHighFreqPrioClassification__Next usage.",
"McpcPCellProfileUeCfg_mcpcQuantityList__New connection",
"McpcPCellProfileUeCfg_prefUeGroupList__Next usage.",
"McpcPCellProfileUeCfg_rsrpCandidateA5__Next usage.",
"McpcPCellProfileUeCfg_rsrpCandidateB2__Next usage.",
"McpcPCellProfileUeCfg_rsrpCritical__Next usage.",
"McpcPCellProfileUeCfg_rsrpCriticalEnabled__Next usage.",
"McpcPCellProfileUeCfg_rsrpSearchTimeRestriction__Next usage.",
"McpcPCellProfileUeCfg_rsrpSearchZone__Next usage.",
"McpcPCellProfileUeCfg_ueConfGroupList__Next usage.",
"McpcPCellProfileUeCfg_ueGroupList__Next usage.",
"McpcPSCellNrFreqRelProfile_ueConfGroupType__Next usage.",
"McpcPSCellNrFreqRelProfileUeCfg_inhibitMeasForCellCandidate__Next usage.",
"McpcPSCellNrFreqRelProfileUeCfg_prefUeGroupList__Next usage.",
"McpcPSCellNrFreqRelProfileUeCfg_rsrpCandidateA5Offsets__Next usage.",
"McpcPSCellNrFreqRelProfileUeCfg_ueConfGroupList__Next usage.",
"McpcPSCellNrFreqRelProfileUeCfg_ueGroupList__Next usage.",
"McpcPSCellProfile_ueConfGroupType__Next usage.",
"McpcPSCellProfileUeCfg_lowHighFreqPrioClassification__Next usage.",
"McpcPSCellProfileUeCfg_mcpcQuantityList__New connection",
"McpcPSCellProfileUeCfg_prefUeGroupList__Next usage.",
"McpcPSCellProfileUeCfg_rsrpCandidateA5__Next usage.",
"McpcPSCellProfileUeCfg_rsrpCritical__Next usage.",
"McpcPSCellProfileUeCfg_rsrpCriticalEnabled__Next usage.",
"McpcPSCellProfileUeCfg_rsrpSearchTimeRestriction__Next usage.",
"McpcPSCellProfileUeCfg_rsrpSearchZone__Next usage.",
"McpcPSCellProfileUeCfg_ueConfGroupList__Next usage.",
"McpcPSCellProfileUeCfg_ueGroupList__Next usage.",
"MdtCellProfileUeCfg_immediateMdtGnssR16Check__New connection",
"MdtCellProfileUeCfg_m1Enabled__New connection. If M1 is disabled ongoing MDT M1 measurements are stopped at reception of MDT measurement report.",
"MdtCellProfileUeCfg_m1EventA2Hysteresis__New connection",
"MdtCellProfileUeCfg_m1EventA2ThresholdRsrp__New connection",
"MdtCellProfileUeCfg_m1EventA2ThresholdRsrq__New connection",
"MdtCellProfileUeCfg_m1EventA2ThresholdSinr__New connection",
"MdtCellProfileUeCfg_m1EventA2TimeToTrigger__New connection",
"MdtCellProfileUeCfg_m1EventA2TriggerQuantity__New connection",
"MdtCellProfileUeCfg_m1IncludeBeamMeasurement__New connection",
"MdtCellProfileUeCfg_m1IncludeCommonLocationInfo__New connection",
"MdtCellProfileUeCfg_m1IncludeRrmReport__New connection",
"MdtCellProfileUeCfg_m1MaxNoOfRsIndexToReport__New connection",
"MdtCellProfileUeCfg_m1MaxReportCells__New connection",
"MdtCellProfileUeCfg_m1ReportAmount__New connection",
"MdtCellProfileUeCfg_m1ReportInterval__New connection",
"MdtCellProfileUeCfg_m1ReportQuantityCell__New connection",
"MdtCellProfileUeCfg_m1ReportQuantityRsIndex__New connection",
"MdtCellProfileUeCfg_m1ReportTrigger__New connection",
"MdtCellProfileUeCfg_m6Enabled__New connection. If M6 is disabled ongoing MDT M6 measurements are stopped at reception of MDT measurement report.",
"MdtCellProfileUeCfg_m6ReportAmount__New connection",
"MdtCellProfileUeCfg_m6ReportInterval__New connection",
"MdtCellProfileUeCfg_mdtUeSelectionRatio__New connection",
"NRCellCU_cellLocalId__Node restart",
"NRCellCU_hiPrioDetEnabled__New connection",
"NRCellCU_intraFreqMCCellProfileRef__New connection",
"NRCellCU_mcfbCellProfileRef__Next usage.",
"NRCellCU_mcpcNrdcPSCellEnabled__New connection",
"NRCellCU_mcpcNrdcPSCellProfileRef__Next usage.",
"NRCellCU_mcpcPCellEnabled__Next usage.",
"NRCellCU_mcpcPCellProfileRef__Next usage.",
"NRCellCU_mcpcPSCellEnabled__Next usage.",
"NRCellCU_mcpcPSCellProfileRef__Next usage.",
"NRCellCU_mdtCellProfileRef__New connection",
"NRCellCU_mdtEnabled__New connection. If MDT is disabled ongoing MDT measurements are stopped at reception of MDT measurement report.",
"NRCellCU_nCellChangeHigh__New connection",
"NRCellCU_nCellChangeMedium__New connection",
"NRCellCU_nRFrequencyRef__Next NRCellDU unlock",
"NRCellCU_nrdcMnCellProfileRef__New connection",
"NRCellCU_pmUeIntraFreqCellProfileRef__Next usage.",
"NRCellCU_pmUeIntraFreqEnabled__Next usage.",
"NRCellCU_primaryPLMNId__Node restart",
"NRCellCU_pwsEmergencyAreaIdList__Next cell unlock",
"NRCellCU_qHyst__Next cell unlock",
"NRCellCU_qHystSfHigh__New connection",
"NRCellCU_qHystSfMedium__New connection",
"NRCellCU_sNonIntraSearchP__Next cell unlock",
"NRCellCU_sNonIntraSearchQ__Next cell unlock",
"NRCellCU_tEvaluation__New connection",
"NRCellCU_tHystNormal__New connection",
"NRCellCU_threshServingLowP__Next cell unlock",
"NRCellCU_threshServingLowQ__Next cell unlock",
"NRCellCU_trStPSCellProfileRef__Next usage",
"NRCellCU_trStSaCellProfileRef__Next usage",
"NRCellCU_transmitSib2__Next cell unlock",
"NRCellCU_transmitSib4__Next cell unlock",
"NRCellCU_transmitSib5__Next cell unlock",
"NRCellCU_ueMCCellProfileRef__Next usage.",
"NRCellRelation_cellIndividualOffsetNR__New connection",
"NRCellRelation_includeInSIB__Next cell unlock",
"NRFreqRelation_intraFreqMCFreqRelProfileRef__Next usage.",
"NRFreqRelation_mcpcPCellNrFreqRelProfileRef__Next usage.",
"NRFreqRelation_mcpcPSCellNrFreqRelProfileRef__Next usage.",
"NRFreqRelation_mdtMeasOn__New connection",
"NRFreqRelation_plmnIdList__New connection",
"NRFreqRelation_plmnRestriction__New connection",
"NRFreqRelation_tReselectionNrSfHigh__New connection",
"NRFreqRelation_tReselectionNrSfMedium__New connection",
"NRFreqRelation_trStSaNrFreqRelProfileRef__Next usage",
"NRFreqRelation_ueMCNrFreqRelProfileRef__Next usage.",
"NRFrequency_bandListManual__New connection",
"NrdcMnCellProfile_ueConfGroupType__Next usage",
"NrdcMnCellProfileUeCfg_nrdcEnabled__Next usage",
"NrdcMnCellProfileUeCfg_nrdcMeasRestartTime__Next usage.",
"NrdcMnCellProfileUeCfg_nrdcMeasTime__Next usage.",
"NrdcMnCellProfileUeCfg_nrdcSetupDlPktAgeThr__Next usage",
"NrdcMnCellProfileUeCfg_nrdcSetupDlPktVolThr__Next usage",
"NrdcMnCellProfileUeCfg_prefUeGroupList__Next usage",
"NrdcMnCellProfileUeCfg_rsrpPSCellCandidate__Next usage",
"NrdcMnCellProfileUeCfg_ueConfGroupList__Next usage",
"NrdcMnCellProfileUeCfg_ueGroupList__Next usage",
"NrdcSnTermination_defaultNrdcSnTerm__New connection",
"NrdcSnTermination_ueConfGroupType__Next usage.",