blob: 2133bbc543d931bc0a6f48a5703d09b59db17946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
|
-- NBAP-Constants.asn
--
-- Taken from 3GPP TS 25.433 V9.4.0 (2010-09)
-- http://www.3gpp.org/ftp/Specs/archive/25_series/25.433/
---
-- 9.3.6 Constant Definitions
--
-- **************************************************************
--
-- Constant definitions
--
-- **************************************************************
NBAP-Constants {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
umts-Access (20) modules (3) nbap (2) version1 (1) nbap-Constants (4)}
DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
ProcedureCode,
ProtocolIE-ID
FROM NBAP-CommonDataTypes;
-- **************************************************************
--
-- Elementary Procedures
--
-- **************************************************************
id-audit ProcedureCode ::= 0
id-auditRequired ProcedureCode ::= 1
id-blockResource ProcedureCode ::= 2
id-cellDeletion ProcedureCode ::= 3
id-cellReconfiguration ProcedureCode ::= 4
id-cellSetup ProcedureCode ::= 5
id-cellSynchronisationInitiation ProcedureCode ::= 45
id-cellSynchronisationReconfiguration ProcedureCode ::= 46
id-cellSynchronisationReporting ProcedureCode ::= 47
id-cellSynchronisationTermination ProcedureCode ::= 48
id-cellSynchronisationFailure ProcedureCode ::= 49
id-commonMeasurementFailure ProcedureCode ::= 6
id-commonMeasurementInitiation ProcedureCode ::= 7
id-commonMeasurementReport ProcedureCode ::= 8
id-commonMeasurementTermination ProcedureCode ::= 9
id-commonTransportChannelDelete ProcedureCode ::= 10
id-commonTransportChannelReconfigure ProcedureCode ::= 11
id-commonTransportChannelSetup ProcedureCode ::= 12
id-compressedModeCommand ProcedureCode ::= 14
id-dedicatedMeasurementFailure ProcedureCode ::= 16
id-dedicatedMeasurementInitiation ProcedureCode ::= 17
id-dedicatedMeasurementReport ProcedureCode ::= 18
id-dedicatedMeasurementTermination ProcedureCode ::= 19
id-downlinkPowerControl ProcedureCode ::= 20
id-downlinkPowerTimeslotControl ProcedureCode ::= 38
id-errorIndicationForCommon ProcedureCode ::= 35
id-errorIndicationForDedicated ProcedureCode ::= 21
id-informationExchangeFailure ProcedureCode ::= 40
id-informationExchangeInitiation ProcedureCode ::= 41
id-informationExchangeTermination ProcedureCode ::= 42
id-informationReporting ProcedureCode ::= 43
id-BearerRearrangement ProcedureCode ::= 50
id-mBMSNotificationUpdate ProcedureCode ::= 53
id-physicalSharedChannelReconfiguration ProcedureCode ::= 37
id-privateMessageForCommon ProcedureCode ::= 36
id-privateMessageForDedicated ProcedureCode ::= 22
id-radioLinkAddition ProcedureCode ::= 23
id-radioLinkDeletion ProcedureCode ::= 24
id-radioLinkFailure ProcedureCode ::= 25
id-radioLinkPreemption ProcedureCode ::= 39
id-radioLinkRestoration ProcedureCode ::= 26
id-radioLinkSetup ProcedureCode ::= 27
id-reset ProcedureCode ::= 13
id-resourceStatusIndication ProcedureCode ::= 28
id-cellSynchronisationAdjustment ProcedureCode ::= 44
id-synchronisedRadioLinkReconfigurationCancellation ProcedureCode ::= 29
id-synchronisedRadioLinkReconfigurationCommit ProcedureCode ::= 30
id-synchronisedRadioLinkReconfigurationPreparation ProcedureCode ::= 31
id-systemInformationUpdate ProcedureCode ::= 32
id-unblockResource ProcedureCode ::= 33
id-unSynchronisedRadioLinkReconfiguration ProcedureCode ::= 34
id-radioLinkActivation ProcedureCode ::= 51
id-radioLinkParameterUpdate ProcedureCode ::= 52
id-uEStatusUpdate ProcedureCode ::= 54
id-secondaryULFrequencyReporting ProcedureCode ::= 55
id-secondaryULFrequencyUpdate ProcedureCode ::= 56
-- **************************************************************
--
-- Lists
--
-- **************************************************************
maxNrOfCodes INTEGER ::= 10
maxNrOfDLTSs INTEGER ::= 15
maxNrOfDLTSLCRs INTEGER ::= 6
maxNrOfErrors INTEGER ::= 256
maxNrOfTFs INTEGER ::= 32
maxNrOfTFCs INTEGER ::= 1024
maxNrOfRLs INTEGER ::= 16
maxNrOfRLs-1 INTEGER ::= 15 -- maxNrOfRLs - 1
maxNrOfRLs-2 INTEGER ::= 14 -- maxNrOfRLs - 2
maxNrOfRLSets INTEGER ::= maxNrOfRLs
maxNrOfDPCHs INTEGER ::= 240
maxNrOfDPCHsPerRL-1 INTEGER ::= 239 -- maxNrofCCTrCH*maxNrOfULTSs-1
maxNrOfDPCHLCRs INTEGER ::= 240
maxNrOfDPCHsLCRPerRL-1 INTEGER ::= 95 -- maxNrofCCTrCH*maxNrOfULTSLCRs-1
maxNrOfDPCHs768 INTEGER ::= 480
maxNrOfDPCHs768PerRL-1 INTEGER ::= 479
maxNrOfSCCPCHs INTEGER ::= 8
maxNrOfSCCPCHsinExt INTEGER ::= 232
maxNrOfSCCPCHs768 INTEGER ::= 480
maxNrOfDCHs INTEGER ::= 128
maxNrOfDSCHs INTEGER ::= 32
maxNrOfFACHs INTEGER ::= 8
maxNrOfCCTrCHs INTEGER ::= 16
maxNrOfPDSCHs INTEGER ::= 256
maxNrOfHSPDSCHs INTEGER ::= 16
maxNrOfHSPDSCHs768 INTEGER ::= 32
maxNrOfPUSCHs INTEGER ::= 256
maxNrOfPUSCHs-1 INTEGER ::= 255
maxNrOfPDSCHSets INTEGER ::= 256
maxNrOfPRACHLCRs INTEGER ::= 8
maxNrOfPUSCHSets INTEGER ::= 256
maxNrOfSCCPCHLCRs INTEGER ::= 8
maxNrOfSCCPCHsLCRinExt INTEGER ::= 88
maxNrOfULTSs INTEGER ::= 15
maxNrOfULTSLCRs INTEGER ::= 6
maxNrOfUSCHs INTEGER ::= 32
maxNrOfSlotFormatsPRACH INTEGER ::= 8
maxCellinNodeB INTEGER ::= 256
maxCCPinNodeB INTEGER ::= 256
maxCTFC INTEGER ::= 16777215
maxLocalCellinNodeB INTEGER ::= maxCellinNodeB
maxFPACHCell INTEGER ::= 8
maxRACHCell INTEGER ::= maxPRACHCell
maxPLCCHCell INTEGER ::= 16
maxPRACHCell INTEGER ::= 16
maxSCCPCHCell INTEGER ::= 32
maxSCCPCHCellinExt INTEGER ::= 208 -- maxNrOfSCCPCHs + maxNrOfSCCPCHsinExt - maxSCCPCHCell
maxSCCPCHCellinExtLCR INTEGER ::= 64 -- maxNrOfSCCPCHLCRs + maxNrOfSCCPCHsLCRinExt - maxSCCPCHCell
maxSCCPCHCell768 INTEGER ::= 480
maxSCPICHCell INTEGER ::= 32
maxTTI-count INTEGER ::= 4
maxIBSEG INTEGER ::= 16
maxIB INTEGER ::= 64
maxFACHCell INTEGER ::= 256 -- maxNrOfFACHs * maxSCCPCHCell
maxRateMatching INTEGER ::= 256
maxHS-PDSCHCodeNrComp-1 INTEGER ::= 15
maxHS-SCCHCodeNrComp-1 INTEGER ::= 127
maxNrOfCellSyncBursts INTEGER ::= 10
maxNrOfReceptsPerSyncFrame INTEGER ::= 16
maxNrOfMeasNCell INTEGER ::= 96
maxNrOfMeasNCell-1 INTEGER ::= 95 -- maxNrOfMeasNCell - 1
maxNrOfSF INTEGER ::= 8
maxTGPS INTEGER ::= 6
maxCommunicationContext INTEGER ::= 1048575
maxNrOfLevels INTEGER ::= 256
maxNoSat INTEGER ::= 16
maxNoGPSItems INTEGER ::= 8
maxNrOfHSSCCHs INTEGER ::= 32
maxNrOfHSSICHs INTEGER ::= 4
maxNrOfHSSICHs-1 INTEGER ::= 3
maxNrOfSyncFramesLCR INTEGER ::= 512
maxNrOfReceptionsperSyncFrameLCR INTEGER ::= 8
maxNrOfSyncDLCodesLCR INTEGER ::= 32
maxNrOfHSSCCHCodes INTEGER ::= 4
maxNrOfMACdFlows INTEGER ::= 8
maxNrOfMACdFlows-1 INTEGER ::= 7 -- maxNrOfMACdFlows - 1
maxNrOfMACdPDUIndexes INTEGER ::= 8
maxNrOfMACdPDUIndexes-1 INTEGER ::= 7 -- maxNoOfMACdPDUIndexes - 1
maxNrOfMACdPDUSize INTEGER ::= 32
maxNrOfNIs INTEGER ::= 256
maxNrOfPriorityQueues INTEGER ::= 8
maxNrOfPriorityQueues-1 INTEGER ::= 7 -- maxNoOfPriorityQueues - 1
maxNrOfHARQProcesses INTEGER ::= 8
maxNrOfContextsOnUeList INTEGER ::= 16
maxNrOfCellPortionsPerCell INTEGER ::= 64
maxNrOfCellPortionsPerCell-1 INTEGER ::= 63
maxNrOfPriorityClasses INTEGER ::= 16
maxNrOfSatAlmanac-maxNoSat INTEGER ::= 16 -- maxNrofSatAlmanac - maxNoSat
maxNrOfE-AGCHs INTEGER ::= 32
maxNrOfEDCHMACdFlows INTEGER ::= 8
maxNrOfEDCHMACdFlows-1 INTEGER ::= 7
maxNrOfE-RGCHs-E-HICHs INTEGER ::= 32
maxNrOfEDCH-HARQ-PO-QUANTSTEPs INTEGER ::= 6
maxNrOfEDCHHARQProcesses2msEDCH INTEGER ::= 8
maxNrOfEDPCCH-PO-QUANTSTEPs INTEGER ::= 8
maxNrOfBits-MACe-PDU-non-scheduled INTEGER ::= 19982
maxNrOfRefETFCIs INTEGER ::= 8
maxNrOfRefETFCI-PO-QUANTSTEPs INTEGER ::= 29
maxNrofSigSeqRGHI-1 INTEGER ::= 39
maxNoOfLogicalChannels INTEGER ::= 16 -- only maximum 15 can be used
maxNrOfCombEDPDCH INTEGER ::= 12
maxE-RUCCHCell INTEGER ::= 16
maxNrOfEAGCHCodes INTEGER ::= 4
maxNrOfRefBetas INTEGER ::= 8
maxNrOfE-PUCHSlots INTEGER ::= 13
maxNrOfEAGCHs INTEGER ::= 32
maxNrOfHS-DSCH-TBSs-HS-SCCHless INTEGER ::= 4
maxNrOfHS-DSCH-TBSs INTEGER ::= 90
maxNrOfEHICHCodes INTEGER ::= 4
maxNrOfE-PUCHSlotsLCR INTEGER ::= 5
maxNrOfEPUCHcodes INTEGER ::= 16
maxNrOfEHICHs INTEGER ::= 32
maxNrOfCommonMACFlows INTEGER ::= 8
maxNrOfCommonMACFlows-1 INTEGER ::= 7
maxNrOfPagingMACFlow INTEGER ::= 4
maxNrOfPagingMACFlow-1 INTEGER ::= 3
maxNrOfcommonMACQueues INTEGER ::= 8
maxNrOfpagingMACQueues INTEGER ::= 8
maxNrOfHS-DSCHTBSsE-PCH INTEGER ::= 2
maxGANSSSat INTEGER ::= 64
maxNoGANSS INTEGER ::= 8
maxSgnType INTEGER ::= 8
maxFrequencyinCell INTEGER ::= 12
maxFrequencyinCell-1 INTEGER ::= 11
maxHSDPAFrequency INTEGER ::= 8
maxHSDPAFrequency-1 INTEGER ::= 7
maxNrOfHSSCCHsinExt INTEGER ::= 224
maxGANSSSatAlmanac INTEGER ::= 36
maxGANSSClockMod INTEGER ::= 4
maxNrOfEDCHRLs INTEGER ::= 4
maxERNTItoRelease INTEGER ::= 256
maxNrOfCommonEDCH INTEGER ::= 32
maxNrOfCommonMACFlowsLCR INTEGER ::= 256
maxNrOfCommonMACFlowsLCR-1 INTEGER ::= 255
maxNrOfHSSCCHsLCR INTEGER ::= 256
maxNrOfEDCHMACdFlowsLCR INTEGER ::= 256
maxNrOfEDCHMACdFlowsLCR-1 INTEGER ::= 255
maxNrOfEAGCHsLCR INTEGER ::= 256
maxNrOfEHICHsLCR INTEGER ::= 256
maxnrofERUCCHsLCR INTEGER ::= 32
maxNrOfHSDSCH-1 INTEGER ::= 32
maxNrOfHSDSCH INTEGER ::= 33
maxGANSS-1 INTEGER ::= 7
maxNoOfTBSs-Mapping-HS-DSCH-SPS INTEGER ::= 4
maxNoOfTBSs-Mapping-HS-DSCH-SPS-1 INTEGER ::= 3
maxNoOfHS-DSCH-TBSsLCR INTEGER ::= 64
maxNoOfRepetition-Period-LCR INTEGER ::= 4
maxNoOfRepetitionPeriod-SPS-LCR-1 INTEGER ::= 3
maxNoOf-HS-SICH-SPS INTEGER ::= 4
maxNoOf-HS-SICH-SPS-1 INTEGER ::= 3
maxNoOfNon-HS-SCCH-Assosiated-HS-SICH INTEGER ::= 4
maxNoOfNon-HS-SCCH-Assosiated-HS-SICH-Ext INTEGER ::= 44
maxMBMSServiceSelect INTEGER ::= 256
maxNrOfCellPortionsPerCellLCR INTEGER ::= 256
maxNrOfCellPortionsPerCellLCR-1 INTEGER ::= 255
maxNrOfEDCH-1 INTEGER ::= 32
maxNoOfCommonH-RNTI INTEGER ::= 256
maxNrOfCommonMACFlowsLCRExt INTEGER ::= 248
-- maxNrOfCommonMACFlowsLCR-maxNrOfCommonMACFlows
maxofERNTI INTEGER ::= 256
maxNrOfDCHMeasurementOccasionPatternSequence INTEGER ::= 6
-- **************************************************************
--
-- IEs
--
-- **************************************************************
id-AICH-Information ProtocolIE-ID ::= 0
id-AICH-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 1
id-BCH-Information ProtocolIE-ID ::= 7
id-BCH-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 8
id-BCCH-ModificationTime ProtocolIE-ID ::= 9
id-BlockingPriorityIndicator ProtocolIE-ID ::= 10
id-Cause ProtocolIE-ID ::= 13
id-CCP-InformationItem-AuditRsp ProtocolIE-ID ::= 14
id-CCP-InformationList-AuditRsp ProtocolIE-ID ::= 15
id-CCP-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 16
id-Cell-InformationItem-AuditRsp ProtocolIE-ID ::= 17
id-Cell-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 18
id-Cell-InformationList-AuditRsp ProtocolIE-ID ::= 19
id-CellParameterID ProtocolIE-ID ::= 23
id-CFN ProtocolIE-ID ::= 24
id-C-ID ProtocolIE-ID ::= 25
-- WS extension to fill the range
id-Unknown-38 ProtocolIE-ID ::= 38
id-CommonMeasurementAccuracy ProtocolIE-ID ::= 39
id-CommonMeasurementObjectType-CM-Rprt ProtocolIE-ID ::= 31
id-CommonMeasurementObjectType-CM-Rqst ProtocolIE-ID ::= 32
id-CommonMeasurementObjectType-CM-Rsp ProtocolIE-ID ::= 33
id-CommonMeasurementType ProtocolIE-ID ::= 34
id-CommonPhysicalChannelID ProtocolIE-ID ::= 35
id-CommonPhysicalChannelType-CTCH-SetupRqstFDD ProtocolIE-ID ::= 36
id-CommonPhysicalChannelType-CTCH-SetupRqstTDD ProtocolIE-ID ::= 37
id-CommunicationControlPortID ProtocolIE-ID ::= 40
id-ConfigurationGenerationID ProtocolIE-ID ::= 43
id-CRNC-CommunicationContextID ProtocolIE-ID ::= 44
id-CriticalityDiagnostics ProtocolIE-ID ::= 45
id-DCHs-to-Add-FDD ProtocolIE-ID ::= 48
id-DCH-AddList-RL-ReconfPrepTDD ProtocolIE-ID ::= 49
id-DCHs-to-Add-TDD ProtocolIE-ID ::= 50
id-DCH-DeleteList-RL-ReconfPrepFDD ProtocolIE-ID ::= 52
id-DCH-DeleteList-RL-ReconfPrepTDD ProtocolIE-ID ::= 53
id-DCH-DeleteList-RL-ReconfRqstFDD ProtocolIE-ID ::= 54
id-DCH-DeleteList-RL-ReconfRqstTDD ProtocolIE-ID ::= 55
id-DCH-FDD-Information ProtocolIE-ID ::= 56
id-DCH-TDD-Information ProtocolIE-ID ::= 57
id-DCH-InformationResponse ProtocolIE-ID ::= 59
-- WS extension to fill the range
id-Unknown-60 ProtocolIE-ID ::= 60
id-Unknown-61 ProtocolIE-ID ::= 61
id-FDD-DCHs-to-Modify ProtocolIE-ID ::= 62
id-TDD-DCHs-to-Modify ProtocolIE-ID ::= 63
id-DCH-ModifyList-RL-ReconfRqstTDD ProtocolIE-ID ::= 65
id-DCH-RearrangeList-Bearer-RearrangeInd ProtocolIE-ID ::= 135
id-DedicatedMeasurementObjectType-DM-Rprt ProtocolIE-ID ::= 67
id-DedicatedMeasurementObjectType-DM-Rqst ProtocolIE-ID ::= 68
id-DedicatedMeasurementObjectType-DM-Rsp ProtocolIE-ID ::= 69
id-DedicatedMeasurementType ProtocolIE-ID ::= 70
-- WS extension to fill the range
id-Unknown-71 ProtocolIE-ID ::= 71
id-DL-CCTrCH-InformationItem-RL-SetupRqstTDD ProtocolIE-ID ::= 72
id-DL-CCTrCH-InformationList-RL-AdditionRqstTDD ProtocolIE-ID ::= 73
id-DL-CCTrCH-InformationList-RL-SetupRqstTDD ProtocolIE-ID ::= 76
-- WS extension to fill the range
id-Unknown-75 ProtocolIE-ID ::= 75
id-DL-DPCH-InformationItem-RL-AdditionRqstTDD ProtocolIE-ID ::= 77
id-DL-DPCH-InformationList-RL-SetupRqstTDD ProtocolIE-ID ::= 79
-- WS extension to fill the range
id-Unknown-80 ProtocolIE-ID ::= 80
id-DL-DPCH-Information-RL-ReconfPrepFDD ProtocolIE-ID ::= 81
id-DL-DPCH-Information-RL-ReconfRqstFDD ProtocolIE-ID ::= 82
id-DL-DPCH-Information-RL-SetupRqstFDD ProtocolIE-ID ::= 83
id-DL-DPCH-TimingAdjustment ProtocolIE-ID ::= 21
id-DL-ReferencePowerInformationItem-DL-PC-Rqst ProtocolIE-ID ::= 84
id-DLReferencePower ProtocolIE-ID ::= 85
id-DLReferencePowerList-DL-PC-Rqst ProtocolIE-ID ::= 86
id-Unused-ProtocolIE-ID-87 ProtocolIE-ID ::= 87
-- WS extension to fill the range
id-Unknown-88 ProtocolIE-ID ::= 88
id-Unused-ProtocolIE-ID-89 ProtocolIE-ID ::= 89
id-Unused-ProtocolIE-ID-91 ProtocolIE-ID ::= 91
-- WS extension to fill the range
id-Unknown-92 ProtocolIE-ID ::= 92
id-Unused-ProtocolIE-ID-93 ProtocolIE-ID ::= 93
-- WS extension to fill the range
id-Unknown-95 ProtocolIE-ID ::= 95
id-DSCHs-to-Add-TDD ProtocolIE-ID ::= 96
id-DSCH-Information-DeleteList-RL-ReconfPrepTDD ProtocolIE-ID ::= 98
id-DSCH-Information-ModifyList-RL-ReconfPrepTDD ProtocolIE-ID ::= 100
id-DSCH-InformationResponse ProtocolIE-ID ::= 105
id-Unused-ProtocolIE-ID-106 ProtocolIE-ID ::= 106
id-DSCH-TDD-Information ProtocolIE-ID ::= 107
id-Unused-ProtocolIE-ID-108 ProtocolIE-ID ::= 108
-- WS extension to fill the range
id-Unknown-109 ProtocolIE-ID ::= 109
id-Unused-ProtocolIE-ID-112 ProtocolIE-ID ::= 112
id-DSCH-RearrangeList-Bearer-RearrangeInd ProtocolIE-ID ::= 136
id-End-Of-Audit-Sequence-Indicator ProtocolIE-ID ::= 113
id-FACH-Information ProtocolIE-ID ::= 116
id-FACH-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 117
-- WS extension to fill the range
id-Unknown-118 ProtocolIE-ID ::= 118
id-FACH-ParametersList-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 120
id-FACH-ParametersListIE-CTCH-SetupRqstFDD ProtocolIE-ID ::= 121
id-FACH-ParametersListIE-CTCH-SetupRqstTDD ProtocolIE-ID ::= 122
id-IndicationType-ResourceStatusInd ProtocolIE-ID ::= 123
id-Local-Cell-ID ProtocolIE-ID ::= 124
id-Local-Cell-Group-InformationItem-AuditRsp ProtocolIE-ID ::= 2
id-Local-Cell-Group-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 3
id-Local-Cell-Group-InformationItem2-ResourceStatusInd ProtocolIE-ID ::= 4
id-Local-Cell-Group-InformationList-AuditRsp ProtocolIE-ID ::= 5
id-Local-Cell-InformationItem-AuditRsp ProtocolIE-ID ::= 125
id-Local-Cell-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 126
id-Local-Cell-InformationItem2-ResourceStatusInd ProtocolIE-ID ::= 127
id-Local-Cell-InformationList-AuditRsp ProtocolIE-ID ::= 128
id-AdjustmentPeriod ProtocolIE-ID ::= 129
id-MaxAdjustmentStep ProtocolIE-ID ::= 130
id-MaximumTransmissionPower ProtocolIE-ID ::= 131
id-MeasurementFilterCoefficient ProtocolIE-ID ::= 132
id-MeasurementID ProtocolIE-ID ::= 133
id-MessageStructure ProtocolIE-ID ::= 115
id-MIB-SB-SIB-InformationList-SystemInfoUpdateRqst ProtocolIE-ID ::= 134
-- WS extension to fill the range
id-Unknown-137 ProtocolIE-ID ::= 137
id-Unknown-140 ProtocolIE-ID ::= 140
id-NodeB-CommunicationContextID ProtocolIE-ID ::= 143
id-NeighbouringCellMeasurementInformation ProtocolIE-ID ::= 455
id-P-CCPCH-Information ProtocolIE-ID ::= 144
id-P-CCPCH-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 145
id-P-CPICH-Information ProtocolIE-ID ::= 146
id-P-CPICH-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 147
id-P-SCH-Information ProtocolIE-ID ::= 148
-- WS extension to fill the range
id-Unknown-149 ProtocolIE-ID ::= 149
id-PCCPCH-Information-Cell-ReconfRqstTDD ProtocolIE-ID ::= 150
id-PCCPCH-Information-Cell-SetupRqstTDD ProtocolIE-ID ::= 151
-- WS extension to fill the range
id-Unknown-152 ProtocolIE-ID ::= 152
id-Unknown-153 ProtocolIE-ID ::= 153
id-PCH-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 155
id-PCH-ParametersItem-CTCH-SetupRqstFDD ProtocolIE-ID ::= 156
id-PCH-ParametersItem-CTCH-SetupRqstTDD ProtocolIE-ID ::= 157
id-PCH-Information ProtocolIE-ID ::= 158
-- WS extension to fill the range
id-Unknown-159 ProtocolIE-ID ::= 159
id-Unknown-160 ProtocolIE-ID ::= 160
id-PDSCH-Information-AddListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 161
id-PDSCH-Information-ModifyListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 162
id-PDSCHSets-AddList-PSCH-ReconfRqst ProtocolIE-ID ::= 163
id-PDSCHSets-DeleteList-PSCH-ReconfRqst ProtocolIE-ID ::= 164
id-PDSCHSets-ModifyList-PSCH-ReconfRqst ProtocolIE-ID ::= 165
id-PICH-Information ProtocolIE-ID ::= 166
id-PICH-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 168
id-PowerAdjustmentType ProtocolIE-ID ::= 169
id-PRACH-Information ProtocolIE-ID ::= 170
-- WS extension to fill the range
id-Unknown-171 ProtocolIE-ID ::= 171
id-Unknown-172 ProtocolIE-ID ::= 172
id-Unknown-173 ProtocolIE-ID ::= 173
id-PrimaryCCPCH-Information-Cell-ReconfRqstFDD ProtocolIE-ID ::= 175
id-PrimaryCCPCH-Information-Cell-SetupRqstFDD ProtocolIE-ID ::= 176
id-PrimaryCPICH-Information-Cell-ReconfRqstFDD ProtocolIE-ID ::= 177
id-PrimaryCPICH-Information-Cell-SetupRqstFDD ProtocolIE-ID ::= 178
id-PrimarySCH-Information-Cell-ReconfRqstFDD ProtocolIE-ID ::= 179
id-PrimarySCH-Information-Cell-SetupRqstFDD ProtocolIE-ID ::= 180
id-PrimaryScramblingCode ProtocolIE-ID ::= 181
-- WS extension to fill the range
id-Unknown-182 ProtocolIE-ID ::= 182
id-SCH-Information-Cell-ReconfRqstTDD ProtocolIE-ID ::= 183
id-SCH-Information-Cell-SetupRqstTDD ProtocolIE-ID ::= 184
id-PUSCH-Information-AddListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 185
id-PUSCH-Information-ModifyListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 186
id-PUSCHSets-AddList-PSCH-ReconfRqst ProtocolIE-ID ::= 187
id-PUSCHSets-DeleteList-PSCH-ReconfRqst ProtocolIE-ID ::= 188
id-PUSCHSets-ModifyList-PSCH-ReconfRqst ProtocolIE-ID ::= 189
id-RACH-Information ProtocolIE-ID ::= 190
-- WS extension to fill the range
id-Unknown-191 ProtocolIE-ID ::= 191
id-Unknown-192 ProtocolIE-ID ::= 192
id-Unknown-193 ProtocolIE-ID ::= 193
id-Unknown-194 ProtocolIE-ID ::= 194
id-Unknown-195 ProtocolIE-ID ::= 195
id-RACH-ParametersItem-CTCH-SetupRqstFDD ProtocolIE-ID ::= 196
id-RACH-ParameterItem-CTCH-SetupRqstTDD ProtocolIE-ID ::= 197
id-ReportCharacteristics ProtocolIE-ID ::= 198
id-Reporting-Object-RL-FailureInd ProtocolIE-ID ::= 199
id-Reporting-Object-RL-RestoreInd ProtocolIE-ID ::= 200
-- WS extension to fill the range
id-Unknown-201 ProtocolIE-ID ::= 201
id-RL-InformationItem-DM-Rprt ProtocolIE-ID ::= 202
id-RL-InformationItem-DM-Rqst ProtocolIE-ID ::= 203
id-RL-InformationItem-DM-Rsp ProtocolIE-ID ::= 204
id-RL-InformationItem-RL-AdditionRqstFDD ProtocolIE-ID ::= 205
id-RL-informationItem-RL-DeletionRqst ProtocolIE-ID ::= 206
id-RL-InformationItem-RL-FailureInd ProtocolIE-ID ::= 207
id-RL-InformationItem-RL-PreemptRequiredInd ProtocolIE-ID ::= 286
id-RL-InformationItem-RL-ReconfPrepFDD ProtocolIE-ID ::= 208
id-RL-InformationItem-RL-ReconfRqstFDD ProtocolIE-ID ::= 209
id-RL-InformationItem-RL-RestoreInd ProtocolIE-ID ::= 210
id-RL-InformationItem-RL-SetupRqstFDD ProtocolIE-ID ::= 211
id-RL-InformationList-RL-AdditionRqstFDD ProtocolIE-ID ::= 212
id-RL-informationList-RL-DeletionRqst ProtocolIE-ID ::= 213
id-RL-InformationList-RL-PreemptRequiredInd ProtocolIE-ID ::= 237
id-RL-InformationList-RL-ReconfPrepFDD ProtocolIE-ID ::= 214
id-RL-InformationList-RL-ReconfRqstFDD ProtocolIE-ID ::= 215
id-RL-InformationList-RL-SetupRqstFDD ProtocolIE-ID ::= 216
id-RL-InformationResponseItem-RL-AdditionRspFDD ProtocolIE-ID ::= 217
id-RL-InformationResponseItem-RL-ReconfReady ProtocolIE-ID ::= 218
id-RL-InformationResponseItem-RL-ReconfRsp ProtocolIE-ID ::= 219
id-RL-InformationResponseItem-RL-SetupRspFDD ProtocolIE-ID ::= 220
id-RL-InformationResponseList-RL-AdditionRspFDD ProtocolIE-ID ::= 221
id-RL-InformationResponseList-RL-ReconfReady ProtocolIE-ID ::= 222
id-RL-InformationResponseList-RL-ReconfRsp ProtocolIE-ID ::= 223
id-RL-InformationResponseList-RL-SetupRspFDD ProtocolIE-ID ::= 224
id-RL-InformationResponse-RL-AdditionRspTDD ProtocolIE-ID ::= 225
id-RL-InformationResponse-RL-SetupRspTDD ProtocolIE-ID ::= 226
id-RL-Information-RL-AdditionRqstTDD ProtocolIE-ID ::= 227
id-RL-Information-RL-ReconfRqstTDD ProtocolIE-ID ::= 228
id-RL-Information-RL-ReconfPrepTDD ProtocolIE-ID ::= 229
id-RL-Information-RL-SetupRqstTDD ProtocolIE-ID ::= 230
id-RL-ReconfigurationFailureItem-RL-ReconfFailure ProtocolIE-ID ::= 236
id-RL-Set-InformationItem-DM-Rprt ProtocolIE-ID ::= 238
-- WS extension to fill the range
id-Unknown-239 ProtocolIE-ID ::= 239
id-RL-Set-InformationItem-DM-Rsp ProtocolIE-ID ::= 240
id-RL-Set-InformationItem-RL-FailureInd ProtocolIE-ID ::= 241
id-RL-Set-InformationItem-RL-RestoreInd ProtocolIE-ID ::= 242
-- WS extension to fill the range
id-Unknown-243 ProtocolIE-ID ::= 243
id-Unknown-244 ProtocolIE-ID ::= 244
id-Unknown-245 ProtocolIE-ID ::= 245
id-Unknown-246 ProtocolIE-ID ::= 246
id-S-CCPCH-Information ProtocolIE-ID ::= 247
-- WS extension to fill the range
id-Unknown-248 ProtocolIE-ID ::= 248
id-S-CPICH-Information ProtocolIE-ID ::= 249
-- WS extension to fill the range
id-Unknown-250 ProtocolIE-ID ::= 250
id-SCH-Information ProtocolIE-ID ::= 251
-- WS extension to fill the range
id-Unknown-252 ProtocolIE-ID ::= 252
id-S-SCH-Information ProtocolIE-ID ::= 253
-- WS extension to fill the range
id-Unknown-254 ProtocolIE-ID ::= 254
id-Unknown-255 ProtocolIE-ID ::= 255
id-Unknown-256 ProtocolIE-ID ::= 256
id-Secondary-CCPCHListIE-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 257
id-Secondary-CCPCH-parameterListIE-CTCH-SetupRqstTDD ProtocolIE-ID ::= 258
id-Secondary-CCPCH-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 259
id-SecondaryCPICH-InformationItem-Cell-ReconfRqstFDD ProtocolIE-ID ::= 260
id-SecondaryCPICH-InformationItem-Cell-SetupRqstFDD ProtocolIE-ID ::= 261
id-SecondaryCPICH-InformationList-Cell-ReconfRqstFDD ProtocolIE-ID ::= 262
id-SecondaryCPICH-InformationList-Cell-SetupRqstFDD ProtocolIE-ID ::= 263
id-SecondarySCH-Information-Cell-ReconfRqstFDD ProtocolIE-ID ::= 264
id-SecondarySCH-Information-Cell-SetupRqstFDD ProtocolIE-ID ::= 265
id-SegmentInformationListIE-SystemInfoUpdate ProtocolIE-ID ::= 266
-- WS extension to fill the range
id-Unknown-267 ProtocolIE-ID ::= 267
id-SFN ProtocolIE-ID ::= 268
id-SignallingBearerRequestIndicator ProtocolIE-ID ::= 138
id-ShutdownTimer ProtocolIE-ID ::= 269
id-Start-Of-Audit-Sequence-Indicator ProtocolIE-ID ::= 114
id-Successful-RL-InformationRespItem-RL-AdditionFailureFDD ProtocolIE-ID ::= 270
id-Successful-RL-InformationRespItem-RL-SetupFailureFDD ProtocolIE-ID ::= 271
-- WS extension to fill the range
id-Unknown-272 ProtocolIE-ID ::= 272
id-Unknown-273 ProtocolIE-ID ::= 273
id-SyncCase ProtocolIE-ID ::= 274
id-SyncCaseIndicatorItem-Cell-SetupRqstTDD-PSCH ProtocolIE-ID ::= 275
id-T-Cell ProtocolIE-ID ::= 276
id-TargetCommunicationControlPortID ProtocolIE-ID ::= 139
id-TimeSlotConfigurationList-Cell-ReconfRqstTDD ProtocolIE-ID ::= 277
id-TimeSlotConfigurationList-Cell-SetupRqstTDD ProtocolIE-ID ::= 278
id-TransmissionDiversityApplied ProtocolIE-ID ::= 279
id-TypeOfError ProtocolIE-ID ::= 508
id-UARFCNforNt ProtocolIE-ID ::= 280
id-UARFCNforNd ProtocolIE-ID ::= 281
id-UARFCNforNu ProtocolIE-ID ::= 282
id-UL-CCTrCH-InformationItem-RL-SetupRqstTDD ProtocolIE-ID ::= 284
id-UL-CCTrCH-InformationList-RL-AdditionRqstTDD ProtocolIE-ID ::= 285
id-UL-CCTrCH-InformationList-RL-SetupRqstTDD ProtocolIE-ID ::= 288
id-UL-DPCH-InformationItem-RL-AdditionRqstTDD ProtocolIE-ID ::= 289
id-UL-DPCH-InformationList-RL-SetupRqstTDD ProtocolIE-ID ::= 291
id-UL-DPCH-Information-RL-ReconfPrepFDD ProtocolIE-ID ::= 293
id-UL-DPCH-Information-RL-ReconfRqstFDD ProtocolIE-ID ::= 294
id-UL-DPCH-Information-RL-SetupRqstFDD ProtocolIE-ID ::= 295
id-Unsuccessful-RL-InformationRespItem-RL-AdditionFailureFDD ProtocolIE-ID ::= 296
id-Unsuccessful-RL-InformationRespItem-RL-SetupFailureFDD ProtocolIE-ID ::= 297
-- WS extension to fill the range
id-Unknown-298 ProtocolIE-ID ::= 298
id-Unknown-299 ProtocolIE-ID ::= 299
id-Unsuccessful-RL-InformationResp-RL-AdditionFailureTDD ProtocolIE-ID ::= 300
id-Unsuccessful-RL-InformationResp-RL-SetupFailureTDD ProtocolIE-ID ::= 301
id-USCH-Information-Add ProtocolIE-ID ::= 302
-- WS extension to fill the range
id-Unknown-303 ProtocolIE-ID ::= 303
id-USCH-Information-DeleteList-RL-ReconfPrepTDD ProtocolIE-ID ::= 304
-- WS extension to fill the range
id-Unknown-305 ProtocolIE-ID ::= 305
id-USCH-Information-ModifyList-RL-ReconfPrepTDD ProtocolIE-ID ::= 306
-- WS extension to fill the range
id-Unknown-307 ProtocolIE-ID ::= 307
id-Unknown-308 ProtocolIE-ID ::= 308
id-USCH-InformationResponse ProtocolIE-ID ::= 309
id-USCH-Information ProtocolIE-ID ::= 310
id-USCH-RearrangeList-Bearer-RearrangeInd ProtocolIE-ID ::= 141
-- WS extension to fill the range
id-Unknown-313 ProtocolIE-ID ::= 313
id-Active-Pattern-Sequence-Information ProtocolIE-ID ::= 315
id-AICH-ParametersListIE-CTCH-ReconfRqstFDD ProtocolIE-ID ::= 316
id-AdjustmentRatio ProtocolIE-ID ::= 317
-- WS extension to fill the range
id-Unknown-318 ProtocolIE-ID ::= 318
id-Unknown-319 ProtocolIE-ID ::= 319
id-Not-Used-320 ProtocolIE-ID ::= 320
-- WS extension to fill the range
id-Unknown-321 ProtocolIE-ID ::= 321
id-Not-Used-322 ProtocolIE-ID ::= 322
id-FACH-ParametersListIE-CTCH-ReconfRqstFDD ProtocolIE-ID ::= 323
id-CauseLevel-PSCH-ReconfFailure ProtocolIE-ID ::= 324
id-CauseLevel-RL-AdditionFailureFDD ProtocolIE-ID ::= 325
id-CauseLevel-RL-AdditionFailureTDD ProtocolIE-ID ::= 326
id-CauseLevel-RL-ReconfFailure ProtocolIE-ID ::= 327
id-CauseLevel-RL-SetupFailureFDD ProtocolIE-ID ::= 328
id-CauseLevel-RL-SetupFailureTDD ProtocolIE-ID ::= 329
id-Not-Used-330 ProtocolIE-ID ::= 330
-- WS extension to fill the range
id-Unknown-331 ProtocolIE-ID ::= 331
id-Not-Used-332 ProtocolIE-ID ::= 332
id-Closed-Loop-Timing-Adjustment-Mode ProtocolIE-ID ::= 333
id-CommonPhysicalChannelType-CTCH-ReconfRqstFDD ProtocolIE-ID ::= 334
id-Compressed-Mode-Deactivation-Flag ProtocolIE-ID ::= 335
id-Not-Used-336 ProtocolIE-ID ::= 336
-- WS extension to fill the range
id-Unknown-337 ProtocolIE-ID ::= 337
id-Unknown-338 ProtocolIE-ID ::= 338
id-Unknown-339 ProtocolIE-ID ::= 339
id-Unknown-340 ProtocolIE-ID ::= 340
id-Unknown-341 ProtocolIE-ID ::= 341
id-Not-Used-342 ProtocolIE-ID ::= 342
id-Not-Used-343 ProtocolIE-ID ::= 343
-- WS extension to fill the range
id-Unknown-344 ProtocolIE-ID ::= 344
id-Unknown-345 ProtocolIE-ID ::= 345
id-DL-CCTrCH-InformationAddList-RL-ReconfPrepTDD ProtocolIE-ID ::= 346
id-DL-CCTrCH-InformationDeleteItem-RL-ReconfRqstTDD ProtocolIE-ID ::= 347
id-DL-CCTrCH-InformationDeleteList-RL-ReconfPrepTDD ProtocolIE-ID ::= 348
id-DL-CCTrCH-InformationDeleteList-RL-ReconfRqstTDD ProtocolIE-ID ::= 349
id-DL-CCTrCH-InformationModifyItem-RL-ReconfRqstTDD ProtocolIE-ID ::= 350
id-DL-CCTrCH-InformationModifyList-RL-ReconfPrepTDD ProtocolIE-ID ::= 351
id-DL-CCTrCH-InformationModifyList-RL-ReconfRqstTDD ProtocolIE-ID ::= 352
id-DL-DPCH-InformationAddListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 353
-- WS extension to fill the range
id-Unknown-354 ProtocolIE-ID ::= 354
id-DL-DPCH-InformationModify-AddListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 355
id-DL-DPCH-InformationModify-DeleteListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 356
id-DL-DPCH-InformationModify-ModifyListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 357
id-DL-TPC-Pattern01Count ProtocolIE-ID ::= 358
id-DPC-Mode ProtocolIE-ID ::= 450
id-DPCHConstant ProtocolIE-ID ::= 359
id-Unused-ProtocolIE-ID-94 ProtocolIE-ID ::= 94
id-Unused-ProtocolIE-ID-110 ProtocolIE-ID ::= 110
id-Unused-ProtocolIE-ID-111 ProtocolIE-ID ::= 111
-- WS extension to fill the range
id-Unknown-360 ProtocolIE-ID ::= 360
id-Unknown-361 ProtocolIE-ID ::= 361
id-FACH-ParametersList-CTCH-SetupRsp ProtocolIE-ID ::= 362
-- WS extension to fill the range
id-Unknown-363 ProtocolIE-ID ::= 363
id-Unknown-364 ProtocolIE-ID ::= 364
id-Unknown-365 ProtocolIE-ID ::= 365
id-Unknown-366 ProtocolIE-ID ::= 366
id-Unknown-367 ProtocolIE-ID ::= 367
id-Unknown-368 ProtocolIE-ID ::= 368
id-Limited-power-increase-information-Cell-SetupRqstFDD ProtocolIE-ID ::= 369
-- WS extension to fill the range
id-Unknown-370 ProtocolIE-ID ::= 370
id-Unknown-371 ProtocolIE-ID ::= 371
id-Unknown-372 ProtocolIE-ID ::= 372
id-Unknown-373 ProtocolIE-ID ::= 373
id-PCH-Parameters-CTCH-SetupRsp ProtocolIE-ID ::= 374
id-PCH-ParametersItem-CTCH-ReconfRqstFDD ProtocolIE-ID ::= 375
id-Not-Used-376 ProtocolIE-ID ::= 376
-- WS extension to fill the range
id-Unknown-377 ProtocolIE-ID ::= 377
id-Unknown-378 ProtocolIE-ID ::= 378
id-Unknown-379 ProtocolIE-ID ::= 379
id-PICH-ParametersItem-CTCH-ReconfRqstFDD ProtocolIE-ID ::= 380
id-PRACHConstant ProtocolIE-ID ::= 381
-- WS extension to fill the range
id-Unknown-382 ProtocolIE-ID ::= 382
id-PRACH-ParametersListIE-CTCH-ReconfRqstFDD ProtocolIE-ID ::= 383
id-PUSCHConstant ProtocolIE-ID ::= 384
id-RACH-Parameters-CTCH-SetupRsp ProtocolIE-ID ::= 385
-- WS extension to fill the range
id-Unknown-386 ProtocolIE-ID ::= 386
id-Unknown-387 ProtocolIE-ID ::= 387
id-Unknown-388 ProtocolIE-ID ::= 388
id-Unknown-389 ProtocolIE-ID ::= 389
id-Unknown-390 ProtocolIE-ID ::= 390
id-Unknown-391 ProtocolIE-ID ::= 391
id-Unknown-392 ProtocolIE-ID ::= 392
id-Unused-ProtocolIE-ID-443 ProtocolIE-ID ::= 443
id-Synchronisation-Configuration-Cell-ReconfRqst ProtocolIE-ID ::= 393
id-Synchronisation-Configuration-Cell-SetupRqst ProtocolIE-ID ::= 394
id-Transmission-Gap-Pattern-Sequence-Information ProtocolIE-ID ::= 395
id-UL-CCTrCH-InformationAddList-RL-ReconfPrepTDD ProtocolIE-ID ::= 396
id-UL-CCTrCH-InformationDeleteItem-RL-ReconfRqstTDD ProtocolIE-ID ::= 397
id-UL-CCTrCH-InformationDeleteList-RL-ReconfPrepTDD ProtocolIE-ID ::= 398
id-UL-CCTrCH-InformationDeleteList-RL-ReconfRqstTDD ProtocolIE-ID ::= 399
id-UL-CCTrCH-InformationModifyItem-RL-ReconfRqstTDD ProtocolIE-ID ::= 400
id-UL-CCTrCH-InformationModifyList-RL-ReconfPrepTDD ProtocolIE-ID ::= 401
id-UL-CCTrCH-InformationModifyList-RL-ReconfRqstTDD ProtocolIE-ID ::= 402
id-UL-DPCH-InformationAddListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 403
-- WS extension to fill the range
id-Unknown-404 ProtocolIE-ID ::= 404
id-UL-DPCH-InformationModify-AddListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 405
id-UL-DPCH-InformationModify-DeleteListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 406
id-UL-DPCH-InformationModify-ModifyListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 407
id-Unsuccessful-PDSCHSetItem-PSCH-ReconfFailureTDD ProtocolIE-ID ::= 408
id-Unsuccessful-PUSCHSetItem-PSCH-ReconfFailureTDD ProtocolIE-ID ::= 409
-- WS extension to fill the range
id-Unknown-410 ProtocolIE-ID ::= 410
id-Unknown-411 ProtocolIE-ID ::= 411
id-CommunicationContextInfoItem-Reset ProtocolIE-ID ::= 412
-- WS extension to fill the range
id-Unknown-413 ProtocolIE-ID ::= 413
id-CommunicationControlPortInfoItem-Reset ProtocolIE-ID ::= 414
-- WS extension to fill the range
id-Unknown-415 ProtocolIE-ID ::= 415
id-ResetIndicator ProtocolIE-ID ::= 416
id-Unused-ProtocolIE-ID-417 ProtocolIE-ID ::= 417
id-Unused-ProtocolIE-ID-418 ProtocolIE-ID ::= 418
id-Unused-ProtocolIE-ID-419 ProtocolIE-ID ::= 419
id-Unused-ProtocolIE-ID-142 ProtocolIE-ID ::= 142
id-TimingAdvanceApplied ProtocolIE-ID ::= 287
id-CFNReportingIndicator ProtocolIE-ID ::= 6
id-SFNReportingIndicator ProtocolIE-ID ::= 11
id-InnerLoopDLPCStatus ProtocolIE-ID ::= 12
id-TimeslotISCPInfo ProtocolIE-ID ::= 283
id-PICH-ParametersItem-CTCH-SetupRqstTDD ProtocolIE-ID ::= 167
id-PRACH-ParametersItem-CTCH-SetupRqstTDD ProtocolIE-ID ::= 20
id-CCTrCH-InformationItem-RL-FailureInd ProtocolIE-ID ::= 46
id-CCTrCH-InformationItem-RL-RestoreInd ProtocolIE-ID ::= 47
id-CauseLevel-SyncAdjustmntFailureTDD ProtocolIE-ID ::= 420
id-CellAdjustmentInfo-SyncAdjustmntRqstTDD ProtocolIE-ID ::= 421
id-CellAdjustmentInfoItem-SyncAdjustmentRqstTDD ProtocolIE-ID ::= 494
id-CellSyncBurstInfoList-CellSyncReconfRqstTDD ProtocolIE-ID ::= 482
id-CellSyncBurstTransInit-CellSyncInitiationRqstTDD ProtocolIE-ID ::= 422
id-CellSyncBurstMeasureInit-CellSyncInitiationRqstTDD ProtocolIE-ID ::= 423
id-CellSyncBurstTransReconfiguration-CellSyncReconfRqstTDD ProtocolIE-ID ::= 424
id-CellSyncBurstMeasReconfiguration-CellSyncReconfRqstTDD ProtocolIE-ID ::= 425
id-CellSyncBurstTransInfoList-CellSyncReconfRqstTDD ProtocolIE-ID ::= 426
id-CellSyncBurstMeasInfoList-CellSyncReconfRqstTDD ProtocolIE-ID ::= 427
id-CellSyncBurstTransReconfInfo-CellSyncReconfRqstTDD ProtocolIE-ID ::= 428
id-CellSyncInfo-CellSyncReprtTDD ProtocolIE-ID ::= 429
id-CSBTransmissionID ProtocolIE-ID ::= 430
id-CSBMeasurementID ProtocolIE-ID ::= 431
id-IntStdPhCellSyncInfoItem-CellSyncReprtTDD ProtocolIE-ID ::= 432
id-NCyclesPerSFNperiod ProtocolIE-ID ::= 433
id-NRepetitionsPerCyclePeriod ProtocolIE-ID ::= 434
id-SyncFrameNumber ProtocolIE-ID ::= 437
id-SynchronisationReportType ProtocolIE-ID ::= 438
id-SynchronisationReportCharacteristics ProtocolIE-ID ::= 439
id-Unsuccessful-cell-InformationRespItem-SyncAdjustmntFailureTDD ProtocolIE-ID ::= 440
-- WS extension to fill the range
id-Unknown-441 ProtocolIE-ID ::= 441
id-Unknown-442 ProtocolIE-ID ::= 442
id-LateEntranceCellSyncInfoItem-CellSyncReprtTDD ProtocolIE-ID ::= 119
id-ReferenceClockAvailability ProtocolIE-ID ::= 435
id-ReferenceSFNoffset ProtocolIE-ID ::= 436
id-InformationExchangeID ProtocolIE-ID ::= 444
id-InformationExchangeObjectType-InfEx-Rqst ProtocolIE-ID ::= 445
id-InformationType ProtocolIE-ID ::= 446
id-InformationReportCharacteristics ProtocolIE-ID ::= 447
id-InformationExchangeObjectType-InfEx-Rsp ProtocolIE-ID ::= 448
id-InformationExchangeObjectType-InfEx-Rprt ProtocolIE-ID ::= 449
id-IPDLParameter-Information-Cell-ReconfRqstFDD ProtocolIE-ID ::= 451
id-IPDLParameter-Information-Cell-SetupRqstFDD ProtocolIE-ID ::= 452
id-IPDLParameter-Information-Cell-ReconfRqstTDD ProtocolIE-ID ::= 453
id-IPDLParameter-Information-Cell-SetupRqstTDD ProtocolIE-ID ::= 454
id-DL-DPCH-LCR-Information-RL-SetupRqstTDD ProtocolIE-ID ::= 74
id-DwPCH-LCR-Information ProtocolIE-ID ::= 78
id-DwPCH-LCR-InformationList-AuditRsp ProtocolIE-ID ::= 90
id-DwPCH-LCR-Information-Cell-SetupRqstTDD ProtocolIE-ID ::= 97
id-DwPCH-LCR-Information-Cell-ReconfRqstTDD ProtocolIE-ID ::= 99
id-DwPCH-LCR-Information-ResourceStatusInd ProtocolIE-ID ::= 101
id-maxFACH-Power-LCR-CTCH-SetupRqstTDD ProtocolIE-ID ::= 154
id-maxFACH-Power-LCR-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 174
id-FPACH-LCR-Information ProtocolIE-ID ::= 290
id-FPACH-LCR-Information-AuditRsp ProtocolIE-ID ::= 292
id-FPACH-LCR-InformationList-AuditRsp ProtocolIE-ID ::= 22
id-FPACH-LCR-InformationList-ResourceStatusInd ProtocolIE-ID ::= 311
id-FPACH-LCR-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 312
id-FPACH-LCR-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 314
id-PCCPCH-LCR-Information-Cell-SetupRqstTDD ProtocolIE-ID ::= 456
id-PCH-Power-LCR-CTCH-SetupRqstTDD ProtocolIE-ID ::= 457
id-PCH-Power-LCR-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 458
id-PICH-LCR-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 459
-- WS extension to fill the range
id-Unknown-460 ProtocolIE-ID ::= 460
id-PRACH-LCR-ParametersList-CTCH-SetupRqstTDD ProtocolIE-ID ::= 461
-- WS extension to fill the range
id-Unknown-462 ProtocolIE-ID ::= 462
id-RL-InformationResponse-LCR-RL-SetupRspTDD ProtocolIE-ID ::= 463
-- WS extension to fill the range
id-Unknown-464 ProtocolIE-ID ::= 464
id-Secondary-CCPCH-LCR-parameterList-CTCH-SetupRqstTDD ProtocolIE-ID ::= 465
id-TimeSlot ProtocolIE-ID ::= 495
id-TimeSlotConfigurationList-LCR-Cell-ReconfRqstTDD ProtocolIE-ID ::= 466
id-TimeSlotConfigurationList-LCR-Cell-SetupRqstTDD ProtocolIE-ID ::= 467
id-TimeslotISCP-LCR-InfoList-RL-SetupRqstTDD ProtocolIE-ID ::= 468
id-TimeSlotLCR-CM-Rqst ProtocolIE-ID ::= 469
id-UL-DPCH-LCR-Information-RL-SetupRqstTDD ProtocolIE-ID ::= 470
-- WS extension to fill the range
id-Unknown-471 ProtocolIE-ID ::= 471
id-DL-DPCH-InformationItem-LCR-RL-AdditionRqstTDD ProtocolIE-ID ::= 472
id-UL-DPCH-InformationItem-LCR-RL-AdditionRqstTDD ProtocolIE-ID ::= 473
id-TimeslotISCP-InformationList-LCR-RL-AdditionRqstTDD ProtocolIE-ID ::= 474
id-DL-DPCH-LCR-InformationAddList-RL-ReconfPrepTDD ProtocolIE-ID ::= 475
-- WS extension to fill the range
id-Unknown-476 ProtocolIE-ID ::= 476
id-DL-DPCH-LCR-InformationModify-AddList-RL-ReconfPrepTDD ProtocolIE-ID ::= 477
-- WS extension to fill the range
id-Unknown-478 ProtocolIE-ID ::= 478
id-DL-Timeslot-LCR-InformationModify-ModifyList-RL-ReconfPrepTDD ProtocolIE-ID ::= 479
id-TimeslotISCPInfoList-LCR-DL-PC-RqstTDD ProtocolIE-ID ::= 480
id-UL-DPCH-LCR-InformationAddListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 481
id-UL-DPCH-LCR-InformationModify-AddList ProtocolIE-ID ::= 483
-- WS extension to fill the range
id-Unknown-484 ProtocolIE-ID ::= 484
id-UL-TimeslotLCR-Information-RL-ReconfPrepTDD ProtocolIE-ID ::= 485
id-UL-SIRTarget ProtocolIE-ID ::= 510
id-PDSCH-AddInformation-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 486
id-PDSCH-AddInformation-LCR-AddListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 487
id-Unused-ProtocolIE-ID-26 ProtocolIE-ID ::= 26
id-Unused-ProtocolIE-ID-27 ProtocolIE-ID ::= 27
id-PDSCH-ModifyInformation-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 488
id-PDSCH-ModifyInformation-LCR-ModifyListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 489
id-PUSCH-AddInformation-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 490
id-PUSCH-AddInformation-LCR-AddListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 491
id-PUSCH-ModifyInformation-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 492
id-PUSCH-ModifyInformation-LCR-ModifyListIE-PSCH-ReconfRqst ProtocolIE-ID ::= 493
id-timeslotInfo-CellSyncInitiationRqstTDD ProtocolIE-ID ::= 496
id-SyncReportType-CellSyncReprtTDD ProtocolIE-ID ::= 497
id-Power-Local-Cell-Group-InformationItem-AuditRsp ProtocolIE-ID ::= 498
id-Power-Local-Cell-Group-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 499
id-Power-Local-Cell-Group-InformationItem2-ResourceStatusInd ProtocolIE-ID ::= 500
id-Power-Local-Cell-Group-InformationList-AuditRsp ProtocolIE-ID ::= 501
id-Power-Local-Cell-Group-InformationList-ResourceStatusInd ProtocolIE-ID ::= 502
id-Power-Local-Cell-Group-InformationList2-ResourceStatusInd ProtocolIE-ID ::= 503
id-Power-Local-Cell-Group-ID ProtocolIE-ID ::= 504
id-PUSCH-Info-DM-Rqst ProtocolIE-ID ::= 505
id-PUSCH-Info-DM-Rsp ProtocolIE-ID ::= 506
id-PUSCH-Info-DM-Rprt ProtocolIE-ID ::= 507
id-InitDL-Power ProtocolIE-ID ::= 509
id-cellSyncBurstRepetitionPeriod ProtocolIE-ID ::= 511
id-ReportCharacteristicsType-OnModification ProtocolIE-ID ::= 512
id-SFNSFNMeasurementValueInformation ProtocolIE-ID ::= 513
id-SFNSFNMeasurementThresholdInformation ProtocolIE-ID ::= 514
id-TUTRANGPSMeasurementValueInformation ProtocolIE-ID ::= 515
id-TUTRANGPSMeasurementThresholdInformation ProtocolIE-ID ::= 516
id-Rx-Timing-Deviation-Value-LCR ProtocolIE-ID ::= 520
id-RL-InformationResponse-LCR-RL-AdditionRspTDD ProtocolIE-ID ::= 51
id-DL-PowerBalancing-Information ProtocolIE-ID ::= 28
id-DL-PowerBalancing-ActivationIndicator ProtocolIE-ID ::= 29
id-DL-PowerBalancing-UpdatedIndicator ProtocolIE-ID ::= 30
id-CCTrCH-Initial-DL-Power-RL-SetupRqstTDD ProtocolIE-ID ::= 517
id-CCTrCH-Initial-DL-Power-RL-AdditionRqstTDD ProtocolIE-ID ::= 518
id-CCTrCH-Initial-DL-Power-RL-ReconfPrepTDD ProtocolIE-ID ::= 519
id-IPDLParameter-Information-LCR-Cell-SetupRqstTDD ProtocolIE-ID ::= 41
id-IPDLParameter-Information-LCR-Cell-ReconfRqstTDD ProtocolIE-ID ::= 42
id-HS-PDSCH-HS-SCCH-E-AGCH-E-RGCH-E-HICH-MaxPower-PSCH-ReconfRqst ProtocolIE-ID ::= 522
id-HS-PDSCH-HS-SCCH-ScramblingCode-PSCH-ReconfRqst ProtocolIE-ID ::= 523
id-HS-PDSCH-FDD-Code-Information-PSCH-ReconfRqst ProtocolIE-ID ::= 524
id-HS-SCCH-FDD-Code-Information-PSCH-ReconfRqst ProtocolIE-ID ::= 525
id-HS-PDSCH-TDD-Information-PSCH-ReconfRqst ProtocolIE-ID ::= 526
id-Add-To-HS-SCCH-Resource-Pool-PSCH-ReconfRqst ProtocolIE-ID ::= 527
id-Modify-HS-SCCH-Resource-Pool-PSCH-ReconfRqst ProtocolIE-ID ::= 528
id-Delete-From-HS-SCCH-Resource-Pool-PSCH-ReconfRqst ProtocolIE-ID ::= 529
id-bindingID ProtocolIE-ID ::= 102
id-RL-Specific-DCH-Info ProtocolIE-ID ::= 103
id-transportlayeraddress ProtocolIE-ID ::= 104
id-DelayedActivation ProtocolIE-ID ::= 231
id-DelayedActivationList-RL-ActivationCmdFDD ProtocolIE-ID ::= 232
id-DelayedActivationInformation-RL-ActivationCmdFDD ProtocolIE-ID ::= 233
id-DelayedActivationList-RL-ActivationCmdTDD ProtocolIE-ID ::= 234
id-DelayedActivationInformation-RL-ActivationCmdTDD ProtocolIE-ID ::= 235
id-neighbouringTDDCellMeasurementInformationLCR ProtocolIE-ID ::= 58
id-SYNCDlCodeId-TransInitLCR-CellSyncInitiationRqstTDD ProtocolIE-ID ::= 543
id-SYNCDlCodeId-MeasureInitLCR-CellSyncInitiationRqstTDD ProtocolIE-ID ::= 544
id-SYNCDlCodeIdTransReconfInfoLCR-CellSyncReconfRqstTDD ProtocolIE-ID ::= 545
id-SYNCDlCodeIdMeasReconfigurationLCR-CellSyncReconfRqstTDD ProtocolIE-ID ::= 546
id-SYNCDlCodeIdMeasInfoList-CellSyncReconfRqstTDD ProtocolIE-ID ::= 547
id-SyncDLCodeIdsMeasInfoList-CellSyncReprtTDD ProtocolIE-ID ::= 548
id-SyncDLCodeIdThreInfoLCR ProtocolIE-ID ::= 549
id-NSubCyclesPerCyclePeriod-CellSyncReconfRqstTDD ProtocolIE-ID ::= 550
id-DwPCH-Power ProtocolIE-ID ::= 551
id-AccumulatedClockupdate-CellSyncReprtTDD ProtocolIE-ID ::= 552
id-Angle-Of-Arrival-Value-LCR ProtocolIE-ID ::= 521
id-HSDSCH-FDD-Information ProtocolIE-ID ::= 530
id-HSDSCH-FDD-Information-Response ProtocolIE-ID ::= 531
-- WS extension to fill the range
id-Unknown-532 ProtocolIE-ID ::= 532
id-Unknown-533 ProtocolIE-ID ::= 533
id-HSDSCH-Information-to-Modify ProtocolIE-ID ::= 534
id-HSDSCH-RNTI ProtocolIE-ID ::= 535
id-HSDSCH-TDD-Information ProtocolIE-ID ::= 536
id-HSDSCH-TDD-Information-Response ProtocolIE-ID ::= 537
-- WS extension to fill the range
id-Unknown-538 ProtocolIE-ID ::= 538
id-Unknown-539 ProtocolIE-ID ::= 539
id-Unknown-540 ProtocolIE-ID ::= 540
id-HSPDSCH-RL-ID ProtocolIE-ID ::= 541
id-PrimCCPCH-RSCP-DL-PC-RqstTDD ProtocolIE-ID ::= 542
id-Unused-ProtocolIE-ID-64 ProtocolIE-ID ::= 64
id-PDSCH-RL-ID ProtocolIE-ID ::= 66
id-HSDSCH-RearrangeList-Bearer-RearrangeInd ProtocolIE-ID ::= 553
id-UL-Synchronisation-Parameters-LCR ProtocolIE-ID ::= 554
id-HSDSCH-FDD-Update-Information ProtocolIE-ID ::= 555
id-HSDSCH-TDD-Update-Information ProtocolIE-ID ::= 556
-- WS extension to fill the range
id-Unknown-557 ProtocolIE-ID ::= 557
id-DL-DPCH-TimeSlotFormat-LCR-ModifyItem-RL-ReconfPrepTDD ProtocolIE-ID ::= 558
id-UL-DPCH-TimeSlotFormat-LCR-ModifyItem-RL-ReconfPrepTDD ProtocolIE-ID ::= 559
id-TDD-TPC-UplinkStepSize-LCR-RL-SetupRqstTDD ProtocolIE-ID ::= 560
id-TDD-TPC-UplinkStepSize-LCR-RL-AdditionRqstTDD ProtocolIE-ID ::= 561
id-TDD-TPC-DownlinkStepSize-RL-AdditionRqstTDD ProtocolIE-ID ::= 562
id-TDD-TPC-UplinkStepSize-InformationAdd-LCR-RL-ReconfPrepTDD ProtocolIE-ID ::= 563
id-TDD-TPC-UplinkStepSize-InformationModify-LCR-RL-ReconfPrepTDD ProtocolIE-ID ::= 564
id-TDD-TPC-DownlinkStepSize-InformationModify-RL-ReconfPrepTDD ProtocolIE-ID ::= 565
id-TDD-TPC-DownlinkStepSize-InformationAdd-RL-ReconfPrepTDD ProtocolIE-ID ::= 566
id-CCTrCH-Maximum-DL-Power-RL-SetupRqstTDD ProtocolIE-ID ::= 567
id-CCTrCH-Minimum-DL-Power-RL-SetupRqstTDD ProtocolIE-ID ::= 568
id-CCTrCH-Maximum-DL-Power-RL-AdditionRqstTDD ProtocolIE-ID ::= 569
id-CCTrCH-Minimum-DL-Power-RL-AdditionRqstTDD ProtocolIE-ID ::= 570
id-CCTrCH-Maximum-DL-Power-InformationAdd-RL-ReconfPrepTDD ProtocolIE-ID ::= 571
id-CCTrCH-Minimum-DL-Power-InformationAdd-RL-ReconfPrepTDD ProtocolIE-ID ::= 572
id-CCTrCH-Maximum-DL-Power-InformationModify-RL-ReconfPrepTDD ProtocolIE-ID ::= 573
id-CCTrCH-Minimum-DL-Power-InformationModify-RL-ReconfPrepTDD ProtocolIE-ID ::= 574
id-Maximum-DL-Power-Modify-LCR-InformationModify-RL-ReconfPrepTDD ProtocolIE-ID ::= 575
id-Minimum-DL-Power-Modify-LCR-InformationModify-RL-ReconfPrepTDD ProtocolIE-ID ::= 576
id-DL-DPCH-LCR-InformationModify-ModifyList-RL-ReconfRqstTDD ProtocolIE-ID ::= 577
id-CCTrCH-Maximum-DL-Power-InformationModify-RL-ReconfRqstTDD ProtocolIE-ID ::= 578
id-CCTrCH-Minimum-DL-Power-InformationModify-RL-ReconfRqstTDD ProtocolIE-ID ::= 579
id-Initial-DL-Power-TimeslotLCR-InformationItem ProtocolIE-ID ::= 580
id-Maximum-DL-Power-TimeslotLCR-InformationItem ProtocolIE-ID ::= 581
id-Minimum-DL-Power-TimeslotLCR-InformationItem ProtocolIE-ID ::= 582
id-HS-DSCHProvidedBitRateValueInformation ProtocolIE-ID ::= 583
-- WS extension to fill the range
id-Unknown-584 ProtocolIE-ID ::= 584
id-HS-DSCHRequiredPowerValueInformation ProtocolIE-ID ::= 585
id-HS-DSCHRequiredPowerValue ProtocolIE-ID ::= 586
id-TransmittedCarrierPowerOfAllCodesNotUsedForHSTransmission ProtocolIE-ID ::= 587
id-HS-SICH-Reception-Quality ProtocolIE-ID ::= 588
id-HS-SICH-Reception-Quality-Measurement-Value ProtocolIE-ID ::= 589
id-HSSICH-Info-DM-Rprt ProtocolIE-ID ::= 590
id-HSSICH-Info-DM-Rqst ProtocolIE-ID ::= 591
id-HSSICH-Info-DM-Rsp ProtocolIE-ID ::= 592
id-Best-Cell-Portions-Value ProtocolIE-ID ::= 593
id-Primary-CPICH-Usage-for-Channel-Estimation ProtocolIE-ID ::= 594
id-Secondary-CPICH-Information-Change ProtocolIE-ID ::= 595
id-NumberOfReportedCellPortions ProtocolIE-ID ::= 596
id-CellPortion-InformationItem-Cell-SetupRqstFDD ProtocolIE-ID ::= 597
id-CellPortion-InformationList-Cell-SetupRqstFDD ProtocolIE-ID ::= 598
id-TimeslotISCP-LCR-InfoList-RL-ReconfPrepTDD ProtocolIE-ID ::= 599
id-Secondary-CPICH-Information ProtocolIE-ID ::= 600
id-Received-total-wide-band-power-For-CellPortion ProtocolIE-ID ::= 601
id-Unidirectional-DCH-Indicator ProtocolIE-ID ::= 602
id-TimingAdjustmentValueLCR ProtocolIE-ID ::= 603
id-multipleRL-dl-DPCH-InformationList ProtocolIE-ID ::= 604
id-multipleRL-dl-DPCH-InformationModifyList ProtocolIE-ID ::= 605
id-multipleRL-ul-DPCH-InformationList ProtocolIE-ID ::= 606
id-multipleRL-ul-DPCH-InformationModifyList ProtocolIE-ID ::= 607
id-RL-ID ProtocolIE-ID ::= 608
id-SAT-Info-Almanac-ExtItem ProtocolIE-ID ::= 609
id-HSDPA-Capability ProtocolIE-ID ::= 610
id-HSDSCH-Resources-Information-AuditRsp ProtocolIE-ID ::= 611
id-HSDSCH-Resources-Information-ResourceStatusInd ProtocolIE-ID ::= 612
id-HSDSCH-MACdFlows-to-Add ProtocolIE-ID ::= 613
id-HSDSCH-MACdFlows-to-Delete ProtocolIE-ID ::= 614
id-HSDSCH-Information-to-Modify-Unsynchronised ProtocolIE-ID ::= 615
id-TnlQos ProtocolIE-ID ::= 616
id-Received-total-wide-band-power-For-CellPortion-Value ProtocolIE-ID ::= 617
id-Transmitted-Carrier-Power-For-CellPortion ProtocolIE-ID ::= 618
id-Transmitted-Carrier-Power-For-CellPortion-Value ProtocolIE-ID ::= 619
id-TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCH-E-RGCHOrE-HICHTransmissionCellPortion ProtocolIE-ID ::= 620
id-TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCH-E-RGCHOrE-HICHTransmissionCellPortionValue ProtocolIE-ID ::= 621
id-UpPTSInterferenceValue ProtocolIE-ID ::= 622
id-PrimaryCCPCH-RSCP-Delta ProtocolIE-ID ::= 623
id-MeasurementRecoveryBehavior ProtocolIE-ID ::= 624
id-MeasurementRecoveryReportingIndicator ProtocolIE-ID ::= 625
id-MeasurementRecoverySupportIndicator ProtocolIE-ID ::= 626
id-Tstd-indicator ProtocolIE-ID ::= 627
id-multiple-RL-Information-RL-ReconfPrepTDD ProtocolIE-ID ::= 628
id-multiple-RL-Information-RL-ReconfRqstTDD ProtocolIE-ID ::= 629
id-DL-DPCH-Power-Information-RL-ReconfPrepFDD ProtocolIE-ID ::= 630
id-F-DPCH-Information-RL-ReconfPrepFDD ProtocolIE-ID ::= 631
id-F-DPCH-Information-RL-SetupRqstFDD ProtocolIE-ID ::= 632
id-Additional-S-CCPCH-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 633
id-Additional-S-CCPCH-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 634
id-Additional-S-CCPCH-LCR-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 635
id-Additional-S-CCPCH-LCR-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 636
id-MICH-CFN ProtocolIE-ID ::= 637
id-MICH-Information-AuditRsp ProtocolIE-ID ::= 638
id-MICH-Information-ResourceStatusInd ProtocolIE-ID ::= 639
id-MICH-Parameters-CTCH-ReconfRqstFDD ProtocolIE-ID ::= 640
id-MICH-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 641
id-MICH-Parameters-CTCH-SetupRqstFDD ProtocolIE-ID ::= 642
id-MICH-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 643
id-Modification-Period ProtocolIE-ID ::= 644
id-NI-Information-NotifUpdateCmd ProtocolIE-ID ::= 645
id-S-CCPCH-InformationListExt-AuditRsp ProtocolIE-ID ::= 646
id-S-CCPCH-InformationListExt-ResourceStatusInd ProtocolIE-ID ::= 647
id-S-CCPCH-LCR-InformationListExt-AuditRsp ProtocolIE-ID ::= 648
id-S-CCPCH-LCR-InformationListExt-ResourceStatusInd ProtocolIE-ID ::= 649
id-HARQ-Preamble-Mode ProtocolIE-ID ::= 650
id-Initial-DL-DPCH-TimingAdjustment ProtocolIE-ID ::= 651
id-Initial-DL-DPCH-TimingAdjustment-Allowed ProtocolIE-ID ::= 652
id-DLTransmissionBranchLoadValue ProtocolIE-ID ::= 653
id-Power-Local-Cell-Group-choice-CM-Rqst ProtocolIE-ID ::= 654
id-Power-Local-Cell-Group-choice-CM-Rsp ProtocolIE-ID ::= 655
id-Power-Local-Cell-Group-choice-CM-Rprt ProtocolIE-ID ::= 656
id-SynchronisationIndicator ProtocolIE-ID ::= 657
id-HSDPA-And-EDCH-CellPortion-Information-PSCH-ReconfRqst ProtocolIE-ID ::= 658
id-Unused-ProtocolIE-ID-659 ProtocolIE-ID ::= 659
id-HS-DSCHRequiredPowerValue-For-Cell-Portion ProtocolIE-ID ::= 660
id-HS-DSCHRequiredPowerValueInformation-For-CellPortion ProtocolIE-ID ::= 661
id-HS-DSCHProvidedBitRateValueInformation-For-CellPortion ProtocolIE-ID ::= 662
id-E-AGCH-And-E-RGCH-E-HICH-FDD-Scrambling-Code ProtocolIE-ID ::= 663
id-E-AGCH-FDD-Code-Information ProtocolIE-ID ::= 664
id-E-DCH-Capability ProtocolIE-ID ::= 665
id-E-DCH-FDD-DL-Control-Channel-Information ProtocolIE-ID ::= 666
id-E-DCH-FDD-Information ProtocolIE-ID ::= 667
id-E-DCH-FDD-Information-Response ProtocolIE-ID ::= 668
id-E-DCH-FDD-Information-to-Modify ProtocolIE-ID ::= 669
id-E-DCH-MACdFlows-to-Add ProtocolIE-ID ::= 670
id-E-DCH-MACdFlows-to-Delete ProtocolIE-ID ::= 671
id-E-DCH-Resources-Information-AuditRsp ProtocolIE-ID ::= 672
id-E-DCH-Resources-Information-ResourceStatusInd ProtocolIE-ID ::= 673
id-E-DCH-RL-Indication ProtocolIE-ID ::= 674
id-E-DCH-RL-Set-ID ProtocolIE-ID ::= 675
id-E-DPCH-Information-RL-ReconfPrepFDD ProtocolIE-ID ::= 676
id-E-DPCH-Information-RL-SetupRqstFDD ProtocolIE-ID ::= 677
id-E-RGCH-E-HICH-FDD-Code-Information ProtocolIE-ID ::= 678
id-Serving-E-DCH-RL-ID ProtocolIE-ID ::= 679
id-UL-DPDCH-Indicator-For-E-DCH-Operation ProtocolIE-ID ::= 680
id-FDD-S-CCPCH-FrameOffset-CTCH-SetupRqstFDD ProtocolIE-ID ::= 681
id-E-DPCH-Information-RL-ReconfRqstFDD ProtocolIE-ID ::= 682
id-Maximum-Target-ReceivedTotalWideBandPower ProtocolIE-ID ::= 683
id-E-DCHProvidedBitRateValueInformation ProtocolIE-ID ::= 684
id-HARQ-Preamble-Mode-Activation-Indicator ProtocolIE-ID ::= 685
id-RL-Specific-E-DCH-Info ProtocolIE-ID ::= 686
id-E-DCH-CapacityConsumptionLaw ProtocolIE-ID ::= 687
id-multiple-DedicatedMeasurementValueList-TDD-DM-Rsp ProtocolIE-ID ::= 688
id-multiple-DedicatedMeasurementValueList-LCR-TDD-DM-Rsp ProtocolIE-ID ::= 689
id-E-DCH-RearrangeList-Bearer-RearrangeInd ProtocolIE-ID ::= 690
id-Unused-ProtocolIE-ID-691 ProtocolIE-ID ::= 691
id-multipleRL-dl-CCTrCH-InformationModifyList-RL-ReconfRqstTDD ProtocolIE-ID ::= 692
id-Target-NonServing-EDCH-To-Total-EDCH-Power-Ratio ProtocolIE-ID ::= 693
id-CellPortion-InformationItem-Cell-ReconfRqstFDD ProtocolIE-ID ::= 694
id-CellPortion-InformationList-Cell-ReconfRqstFDD ProtocolIE-ID ::= 695
id-multiple-PUSCH-InfoList-DM-Rsp ProtocolIE-ID ::= 696
id-multiple-PUSCH-InfoList-DM-Rprt ProtocolIE-ID ::= 697
id-Reference-ReceivedTotalWideBandPower ProtocolIE-ID ::= 698
id-E-DCH-Serving-Cell-Change-Info-Response ProtocolIE-ID ::= 699
id-HS-DSCH-Serving-Cell-Change-Info ProtocolIE-ID ::= 700
id-HS-DSCH-Serving-Cell-Change-Info-Response ProtocolIE-ID ::= 701
id-Serving-Cell-Change-CFN ProtocolIE-ID ::= 702
id-E-DCH-HARQ-Combining-Capability ProtocolIE-ID ::= 703
id-E-DCH-TTI2ms-Capability ProtocolIE-ID ::= 704
id-E-DCH-SF-Capability ProtocolIE-ID ::= 705
id-E-DCH-FDD-Update-Information ProtocolIE-ID ::= 706
id-F-DPCH-Capability ProtocolIE-ID ::= 707
id-E-DCH-Non-serving-Relative-Grant-Down-CommandsValue ProtocolIE-ID ::= 708
id-HSSICH-SIRTarget ProtocolIE-ID ::= 709
id-multiple-HSSICHMeasurementValueList-TDD-DM-Rsp ProtocolIE-ID ::= 710
id-PLCCH-Information-AuditRsp ProtocolIE-ID ::= 711
id-PLCCH-Information-ResourceStatusInd ProtocolIE-ID ::= 712
id-PLCCH-Information-RL-ReconfPrepTDDLCR ProtocolIE-ID ::= 713
id-PLCCH-Information-UL-TimeslotLCR-Info ProtocolIE-ID ::= 714
id-PLCCH-InformationList-AuditRsp ProtocolIE-ID ::= 715
id-PLCCH-InformationList-ResourceStatusInd ProtocolIE-ID ::= 716
id-PLCCH-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 717
id-S-CCPCH-768-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 718
id-PICH-768-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 719
id-PRACH-768-Parameters-CTCH-SetupRqstTDD ProtocolIE-ID ::= 720
id-S-CCPCH-768-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 721
id-PICH-768-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 722
id-MICH-768-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 723
id-CommonPhysicalChannelID768-CommonTrChDeletionReq ProtocolIE-ID ::= 724
id-S-CCPCH-768-InformationList-AuditRsp ProtocolIE-ID ::= 725
id-S-CCPCH-768-Information-AuditRsp ProtocolIE-ID ::= 726
id-neighbouringTDDCellMeasurementInformation768 ProtocolIE-ID ::= 727
id-PCCPCH-768-Information-Cell-SetupRqstTDD ProtocolIE-ID ::= 728
id-SCH-768-Information-Cell-SetupRqstTDD ProtocolIE-ID ::= 729
id-SCH-768-Information-Cell-ReconfRqstTDD ProtocolIE-ID ::= 730
id-PCCPCH-768-Information-Cell-ReconfRqstTDD ProtocolIE-ID ::= 731
id-P-CCPCH-768-Information-AuditRsp ProtocolIE-ID ::= 732
id-PICH-768-Information-AuditRsp ProtocolIE-ID ::= 733
id-PRACH-768-InformationList-AuditRsp ProtocolIE-ID ::= 734
id-SCH-768-Information-AuditRsp ProtocolIE-ID ::= 735
id-MICH-768-Information-AuditRsp ProtocolIE-ID ::= 736
id-PRACH-768-Information ProtocolIE-ID ::= 737
id-S-CCPCH-768-Information-ResourceStatusInd ProtocolIE-ID ::= 738
id-P-CCPCH-768-Information-ResourceStatusInd ProtocolIE-ID ::= 739
id-PICH-768-Information-ResourceStatusInd ProtocolIE-ID ::= 740
id-PRACH-768-InformationList-ResourceStatusInd ProtocolIE-ID ::= 741
id-SCH-768-Information-ResourceStatusInd ProtocolIE-ID ::= 742
id-MICH-768-Information-ResourceStatusInd ProtocolIE-ID ::= 743
id-S-CCPCH-768-InformationList-ResourceStatusInd ProtocolIE-ID ::= 744
id-UL-DPCH-768-Information-RL-SetupRqstTDD ProtocolIE-ID ::= 745
id-DL-DPCH-768-Information-RL-SetupRqstTDD ProtocolIE-ID ::= 746
id-DL-DPCH-InformationItem-768-RL-AdditionRqstTDD ProtocolIE-ID ::= 747
id-UL-DPCH-InformationItem-768-RL-AdditionRqstTDD ProtocolIE-ID ::= 748
id-UL-DPCH-768-InformationAddItemIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 749
id-UL-DPCH-768-InformationAddListIE-RL-ReconfPrepTDD ProtocolIE-ID ::= 750
id-UL-DPCH-768-InformationModify-AddItem ProtocolIE-ID ::= 751
id-UL-DPCH-768-InformationModify-AddList ProtocolIE-ID ::= 752
id-UL-Timeslot768-Information-RL-ReconfPrepTDD ProtocolIE-ID ::= 753
id-DL-DPCH-768-InformationAddItem-RL-ReconfPrepTDD ProtocolIE-ID ::= 754
id-DL-DPCH-768-InformationAddList-RL-ReconfPrepTDD ProtocolIE-ID ::= 755
id-DL-DPCH-768-InformationModify-AddItem-RL-ReconfPrepTDD ProtocolIE-ID ::= 756
id-DL-DPCH-768-InformationModify-AddList-RL-ReconfPrepTDD ProtocolIE-ID ::= 757
id-DL-Timeslot-768-InformationModify-ModifyList-RL-ReconfPrepTDD ProtocolIE-ID ::= 758
id-DPCH-ID768-DM-Rqst ProtocolIE-ID ::= 759
id-multiple-DedicatedMeasurementValueList-768-TDD-DM-Rsp ProtocolIE-ID ::= 760
id-DPCH-ID768-DM-Rsp ProtocolIE-ID ::= 761
id-Rx-Timing-Deviation-Value-768 ProtocolIE-ID ::= 762
id-DPCH-ID768-DM-Rprt ProtocolIE-ID ::= 763
id-PDSCH-AddInformation-768-PSCH-ReconfRqst ProtocolIE-ID ::= 764
id-PDSCH-ModifyInformation-768-PSCH-ReconfRqst ProtocolIE-ID ::= 765
id-PUSCH-AddInformation-768-PSCH-ReconfRqst ProtocolIE-ID ::= 766
id-PUSCH-ModifyInformation-768-PSCH-ReconfRqst ProtocolIE-ID ::= 767
id-dL-HS-PDSCH-Timeslot-Information-768-PSCH-ReconfRqst ProtocolIE-ID ::= 768
id-hS-SCCH-Information-768-PSCH-ReconfRqst ProtocolIE-ID ::= 769
id-hS-SCCH-InformationModify-768-PSCH-ReconfRqst ProtocolIE-ID ::= 770
id-hsSCCH-Specific-Information-ResponseTDD768 ProtocolIE-ID ::= 771
id-E-DPCH-Information-RL-AdditionReqFDD ProtocolIE-ID ::= 772
-- WS extension to fill the range
id-Unknown-773 ProtocolIE-ID ::= 773
id-Unknown-774 ProtocolIE-ID ::= 774
id-PDSCH-Timeslot-Format-PSCH-ReconfRqst-LCR ProtocolIE-ID ::= 775
-- WS extension to fill the range
id-Unknown-776 ProtocolIE-ID ::= 776
id-Unknown-777 ProtocolIE-ID ::= 777
id-Unknown-778 ProtocolIE-ID ::= 778
id-Unknown-779 ProtocolIE-ID ::= 779
id-PUSCH-Timeslot-Format-PSCH-ReconfRqst-LCR ProtocolIE-ID ::= 780
-- WS extension to fill the range
id-Unknown-781 ProtocolIE-ID ::= 781
id-E-DCH-PowerOffset-for-SchedulingInfo ProtocolIE-ID ::= 782
id-HSDSCH-Configured-Indicator ProtocolIE-ID ::= 783
-- WS extension to fill the range
id-Unknown-784 ProtocolIE-ID ::= 784
id-Unknown-785 ProtocolIE-ID ::= 785
id-Rx-Timing-Deviation-Value-384-ext ProtocolIE-ID ::= 786
id-RTWP-ReportingIndicator ProtocolIE-ID ::= 787
id-RTWP-CellPortion-ReportingIndicator ProtocolIE-ID ::= 788
id-Received-Scheduled-EDCH-Power-Share-Value ProtocolIE-ID ::= 789
id-Received-Scheduled-EDCH-Power-Share-For-CellPortion-Value ProtocolIE-ID ::= 790
id-Received-Scheduled-EDCH-Power-Share ProtocolIE-ID ::= 791
id-Received-Scheduled-EDCH-Power-Share-For-CellPortion ProtocolIE-ID ::= 792
id-tFCI-Presence ProtocolIE-ID ::= 793
id-HSSICH-TPC-StepSize ProtocolIE-ID ::= 794
id-E-RUCCH-InformationList-AuditRsp ProtocolIE-ID ::= 795
id-E-RUCCH-InformationList-ResourceStatusInd ProtocolIE-ID ::= 796
id-E-DCH-TDD-CapacityConsumptionLaw ProtocolIE-ID ::= 797
id-E-RUCCH-Information ProtocolIE-ID ::= 798
id-E-DCH-Information ProtocolIE-ID ::= 799
id-E-DCH-Information-Response ProtocolIE-ID ::= 800
id-E-DCH-Information-Reconfig ProtocolIE-ID ::= 801
id-E-PUCH-Information-PSCH-ReconfRqst ProtocolIE-ID ::= 802
id-Add-To-E-AGCH-Resource-Pool-PSCH-ReconfRqst ProtocolIE-ID ::= 803
id-Modify-E-AGCH-Resource-Pool-PSCH-ReconfRqst ProtocolIE-ID ::= 804
id-Delete-From-E-AGCH-Resource-Pool-PSCH-ReconfRqst ProtocolIE-ID ::= 805
id-E-HICH-Information-PSCH-ReconfRqst ProtocolIE-ID ::= 806
id-E-HICH-TimeOffset ProtocolIE-ID ::= 807
id-Maximum-Generated-ReceivedTotalWideBandPowerInOtherCells ProtocolIE-ID ::= 808
id-E-DCH-Serving-RL-ID ProtocolIE-ID ::= 809
id-E-RUCCH-768-InformationList-AuditRsp ProtocolIE-ID ::= 810
id-E-RUCCH-768-InformationList-ResourceStatusInd ProtocolIE-ID ::= 811
id-E-RUCCH-768-Information ProtocolIE-ID ::= 812
id-E-DCH-768-Information ProtocolIE-ID ::= 813
id-E-DCH-768-Information-Reconfig ProtocolIE-ID ::= 814
id-E-PUCH-Information-768-PSCH-ReconfRqst ProtocolIE-ID ::= 815
id-Add-To-E-AGCH-Resource-Pool-768-PSCH-ReconfRqst ProtocolIE-ID ::= 816
id-Modify-E-AGCH-Resource-Pool-768-PSCH-ReconfRqst ProtocolIE-ID ::= 817
id-E-HICH-Information-768-PSCH-ReconfRqst ProtocolIE-ID ::= 818
id-ExtendedPropagationDelay ProtocolIE-ID ::= 819
id-Extended-Round-Trip-Time-Value ProtocolIE-ID ::= 820
id-AlternativeFormatReportingIndicator ProtocolIE-ID ::= 821
id-DCH-Indicator-For-E-DCH-HSDPA-Operation ProtocolIE-ID ::= 822
id-Reference-ReceivedTotalWideBandPowerReporting ProtocolIE-ID ::= 823
id-Reference-ReceivedTotalWideBandPowerSupportIndicator ProtocolIE-ID ::= 824
id-ueCapability-Info ProtocolIE-ID ::= 825
id-MAChs-ResetIndicator ProtocolIE-ID ::= 826
id-Fast-Reconfiguration-Mode ProtocolIE-ID ::= 827
id-Fast-Reconfiguration-Permission ProtocolIE-ID ::= 828
id-BroadcastReference ProtocolIE-ID ::= 829
id-BroadcastCommonTransportBearerIndication ProtocolIE-ID ::= 830
id-ContinuousPacketConnectivityDTX-DRX-Capability ProtocolIE-ID ::= 831
id-ContinuousPacketConnectivityDTX-DRX-Information ProtocolIE-ID ::= 832
id-ContinuousPacketConnectivityHS-SCCH-less-Capability ProtocolIE-ID ::= 833
id-ContinuousPacketConnectivityHS-SCCH-less-Information ProtocolIE-ID ::= 834
id-ContinuousPacketConnectivityHS-SCCH-less-Information-Response ProtocolIE-ID ::= 835
id-CPC-Information ProtocolIE-ID ::= 836
id-MIMO-Capability ProtocolIE-ID ::= 837
id-MIMO-PilotConfiguration ProtocolIE-ID ::= 838
-- WS extension to fill the range
id-Unknown-839 ProtocolIE-ID ::= 839
id-Unknown-840 ProtocolIE-ID ::= 840
id-MBSFN-Cell-ParameterID-Cell-SetupRqstTDD ProtocolIE-ID ::= 841
id-MBSFN-Cell-ParameterID-Cell-ReconfRqstTDD ProtocolIE-ID ::= 842
id-S-CCPCH-Modulation ProtocolIE-ID ::= 843
id-HS-PDSCH-Code-Change-Grant ProtocolIE-ID ::= 844
id-HS-PDSCH-Code-Change-Indicator ProtocolIE-ID ::= 845
id-SYNC-UL-Partition-LCR ProtocolIE-ID ::= 846
id-E-DCH-LCR-Information ProtocolIE-ID ::= 847
id-E-DCH-LCR-Information-Reconfig ProtocolIE-ID ::= 848
-- WS extension to fill the range
id-Unknown-849 ProtocolIE-ID ::= 849
id-Unknown-850 ProtocolIE-ID ::= 850
id-Unknown-851 ProtocolIE-ID ::= 851
id-E-PUCH-Information-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 852
id-Add-To-E-AGCH-Resource-Pool-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 853
id-Modify-E-AGCH-Resource-Pool-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 854
id-Add-To-E-HICH-Resource-Pool-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 855
id-Modify-E-HICH-Resource-Pool-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 856
id-Delete-From-E-HICH-Resource-Pool-PSCH-ReconfRqst ProtocolIE-ID ::= 857
id-E-HICH-TimeOffsetLCR ProtocolIE-ID ::= 858
-- WS extension to fill the range
id-Unknown-859 ProtocolIE-ID ::= 859
id-SixtyfourQAM-DL-Capability ProtocolIE-ID ::= 860
id-SixteenQAM-UL-Capability ProtocolIE-ID ::= 861
-- WS extension to fill the range
id-Unknown-862 ProtocolIE-ID ::= 862
id-Unknown-863 ProtocolIE-ID ::= 863
id-HSDSCH-MACdPDU-SizeCapability ProtocolIE-ID ::= 864
id-HSDSCH-MACdPDUSizeFormat ProtocolIE-ID ::= 865
id-MaximumMACdPDU-SizeExtended ProtocolIE-ID ::= 866
-- WS extension to fill the range
id-Unknown-867 ProtocolIE-ID ::= 867
id-Unknown-868 ProtocolIE-ID ::= 868
id-Unknown-869 ProtocolIE-ID ::= 869
id-F-DPCH-SlotFormat ProtocolIE-ID ::= 870
id-F-DPCH-SlotFormatCapability ProtocolIE-ID ::= 871
id-LCRTDD-uplink-Physical-Channel-Capability ProtocolIE-ID ::= 872
id-Extended-RNC-ID ProtocolIE-ID ::= 873
id-Max-UE-DTX-Cycle ProtocolIE-ID ::= 874
-- WS extension to fill the range
id-Unknown-875 ProtocolIE-ID ::= 875
id-Secondary-CCPCH-SlotFormat-Extended ProtocolIE-ID ::= 876
-- WS extension to fill the range
id-Unknown-877 ProtocolIE-ID ::= 877
id-MBSFN-Only-Mode-Indicator-Cell-SetupRqstTDD-LCR ProtocolIE-ID ::= 878
id-MBSFN-Only-Mode-Capability ProtocolIE-ID ::= 879
id-Time-Slot-Parameter-ID ProtocolIE-ID ::= 880
id-Additional-failed-HS-SICH ProtocolIE-ID ::= 881
id-Additional-missed-HS-SICH ProtocolIE-ID ::= 882
id-Additional-total-HS-SICH ProtocolIE-ID ::= 883
id-Additional-HS-SICH-Reception-Quality-Measurement-Value ProtocolIE-ID ::= 884
-- WS extension to fill the range
id-Unknown-885 ProtocolIE-ID ::= 885
id-Unknown-886 ProtocolIE-ID ::= 886
id-GANSS-Common-Data ProtocolIE-ID ::= 887
id-GANSS-Information ProtocolIE-ID ::= 888
id-GANSS-Generic-Data ProtocolIE-ID ::= 889
id-TUTRANGANSSMeasurementThresholdInformation ProtocolIE-ID ::= 890
id-TUTRANGANSSMeasurementValueInformation ProtocolIE-ID ::= 891
id-ModulationPO-MBSFN ProtocolIE-ID ::= 892
-- WS extension to fill the range
id-Unknown-893 ProtocolIE-ID ::= 893
id-Unknown-894 ProtocolIE-ID ::= 894
id-Enhanced-FACH-Capability ProtocolIE-ID ::= 895
id-Enhanced-PCH-Capability ProtocolIE-ID ::= 896
id-HSDSCH-Common-System-InformationFDD ProtocolIE-ID ::= 897
id-HSDSCH-Common-System-Information-ResponseFDD ProtocolIE-ID ::= 898
id-HSDSCH-Paging-System-InformationFDD ProtocolIE-ID ::= 899
id-HSDSCH-Paging-System-Information-ResponseFDD ProtocolIE-ID ::= 900
id-MBMS-Capability ProtocolIE-ID ::= 901
id-Ext-Reference-E-TFCI-PO ProtocolIE-ID ::= 902
id-Ext-Max-Bits-MACe-PDU-non-scheduled ProtocolIE-ID ::= 903
id-HARQ-MemoryPartitioningInfoExtForMIMO ProtocolIE-ID ::= 904
id-MIMO-ActivationIndicator ProtocolIE-ID ::= 905
id-MIMO-Mode-Indicator ProtocolIE-ID ::= 906
id-MIMO-N-M-Ratio ProtocolIE-ID ::= 907
id-IPMulticastIndication ProtocolIE-ID ::= 908
id-IPMulticastDataBearerIndication ProtocolIE-ID ::= 909
id-TransportBearerNotSetupIndicator ProtocolIE-ID ::= 910
id-TransportBearerNotRequestedIndicator ProtocolIE-ID ::= 911
id-TimeSlotConfigurationList-LCR-CTCH-SetupRqstTDD ProtocolIE-ID ::= 912
id-Cell-Frequency-List-Information-LCR-MulFreq-AuditRsp ProtocolIE-ID ::= 913
id-Cell-Frequency-List-InformationItem-LCR-MulFreq-AuditRsp ProtocolIE-ID ::= 914
id-Cell-Frequency-List-LCR-MulFreq-Cell-SetupRqstTDD ProtocolIE-ID ::= 915
id-UARFCN-Adjustment ProtocolIE-ID ::= 916
id-Cell-Frequency-List-Information-LCR-MulFreq-ResourceStatusInd ProtocolIE-ID ::= 917
id-Cell-Frequency-List-InformationItem-LCR-MulFreq-ResourceStatusInd ProtocolIE-ID ::= 918
id-UPPCHPositionLCR ProtocolIE-ID ::= 919
id-UPPCH-LCR-Parameters-CTCH-ReconfRqstTDD ProtocolIE-ID ::= 920
id-UPPCH-LCR-InformationList-AuditRsp ProtocolIE-ID ::= 921
id-UPPCH-LCR-InformationItem-AuditRsp ProtocolIE-ID ::= 922
id-UPPCH-LCR-InformationList-ResourceStatusInd ProtocolIE-ID ::= 923
id-UPPCH-LCR-InformationItem-ResourceStatusInd ProtocolIE-ID ::= 924
id-multipleFreq-dL-HS-PDSCH-Timeslot-Information-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 925
id-number-Of-Supported-Carriers ProtocolIE-ID ::= 926
id-multipleFreq-HSPDSCH-InformationList-ResponseTDDLCR ProtocolIE-ID ::= 927
id-Unsuccessful-UARFCNItem-PSCH-ReconfFailureTDD ProtocolIE-ID ::= 928
id-multipleFreq-HS-DSCH-Resources-InformationList-AuditRsp ProtocolIE-ID ::= 929
id-multipleFreq-HS-DSCH-Resources-InformationList-ResourceStatusInd ProtocolIE-ID ::= 930
id-UARFCNSpecificCauseList ProtocolIE-ID ::= 931
id-tSN-Length ProtocolIE-ID ::= 932
id-MultipleFreq-DL-HS-PDSCH-Timeslot-Information-LCRItem-PSCH-ReconfRqst ProtocolIE-ID ::= 933
id-multicarrier-number ProtocolIE-ID ::= 934
id-Extended-HS-SCCH-ID ProtocolIE-ID ::= 935
id-Extended-HS-SICH-ID ProtocolIE-ID ::= 936
id-HSSICH-InfoExt-DM-Rqst ProtocolIE-ID ::= 937
id-Delete-From-HS-SCCH-Resource-PoolExt-PSCH-ReconfRqst ProtocolIE-ID ::= 938
id-HS-SCCH-InformationExt-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 939
id-HS-SCCH-InformationModifyExt-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 940
id-PowerControlGAP ProtocolIE-ID ::= 941
id-MBSFN-SpecialTimeSlot-LCR ProtocolIE-ID ::= 942
id-Common-MACFlows-to-DeleteFDD ProtocolIE-ID ::= 943
id-Paging-MACFlows-to-DeleteFDD ProtocolIE-ID ::= 944
id-E-TFCI-Boost-Information ProtocolIE-ID ::= 945
id-SixteenQAM-UL-Operation-Indicator ProtocolIE-ID ::= 946
id-SixtyfourQAM-UsageAllowedIndicator ProtocolIE-ID ::= 947
id-SixtyfourQAM-DL-UsageIndicator ProtocolIE-ID ::= 948
id-Default-Serving-Grant-in-DTX-Cycle2 ProtocolIE-ID ::= 949
id-Maximum-Target-ReceivedTotalWideBandPower-LCR ProtocolIE-ID ::= 950
id-E-DPDCH-PowerInterpolation ProtocolIE-ID ::= 951
id-Extended-E-DCH-LCRTDD-PhysicalLayerCategory ProtocolIE-ID ::= 952
id-MultipleFreq-E-DCH-Resources-InformationList-AuditRsp ProtocolIE-ID ::= 953
id-MultipleFreq-E-DCH-Resources-InformationList-ResourceStatusInd ProtocolIE-ID ::= 954
id-MultipleFreq-E-PUCH-Timeslot-InformationList-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 955
id-MultipleFreq-E-PUCH-Timeslot-Information-LCRItem-PSCH-ReconfRqst ProtocolIE-ID ::= 956
id-Extended-E-HICH-ID-TDD ProtocolIE-ID ::= 957
id-ContinuousPacketConnectivityHS-SCCH-less-Deactivate-Indicator ProtocolIE-ID ::= 958
id-E-DCH-MACdPDU-SizeCapability ProtocolIE-ID ::= 959
id-E-DCH-MACdPDUSizeFormat ProtocolIE-ID ::= 960
id-MaximumNumber-Of-Retransmission-for-Scheduling-Info-LCRTDD ProtocolIE-ID ::= 961
id-E-DCH-RetransmissionTimer-for-SchedulingInfo-LCRTDD ProtocolIE-ID ::= 962
id-E-HICH-TimeOffset-Extension ProtocolIE-ID ::= 963
id-MultipleFreq-E-HICH-TimeOffsetLCR ProtocolIE-ID ::= 964
id-E-PUCH-PowerControlGAP ProtocolIE-ID ::= 965
id-HSDSCH-TBSizeTableIndicator ProtocolIE-ID ::= 966
id-E-DCH-DL-Control-Channel-Change-Information ProtocolIE-ID ::= 967
id-E-DCH-DL-Control-Channel-Grant-Information ProtocolIE-ID ::= 968
id-DGANSS-Corrections-Req ProtocolIE-ID ::= 969
id-UE-with-enhanced-HS-SCCH-support-indicator ProtocolIE-ID ::= 970
id-AdditionalTimeSlotListLCR ProtocolIE-ID ::= 971
id-AdditionalMeasurementValueList ProtocolIE-ID ::= 972
-- WS extension to fill the range
id-Unknown-973 ProtocolIE-ID ::= 973
id-Unknown-974 ProtocolIE-ID ::= 974
id-Unknown-975 ProtocolIE-ID ::= 975
id-Unknown-976 ProtocolIE-ID ::= 976
id-Unknown-977 ProtocolIE-ID ::= 977
id-E-AGCH-Table-Choice ProtocolIE-ID ::= 978
-- WS extension to fill the range
id-Unknown-979 ProtocolIE-ID ::= 979
id-Unknown-980 ProtocolIE-ID ::= 980
id-PLCCH-parameters ProtocolIE-ID ::= 981
id-E-RUCCH-parameters ProtocolIE-ID ::= 982
id-E-RUCCH-768-parameters ProtocolIE-ID ::= 983
id-HS-Cause ProtocolIE-ID ::= 984
id-E-Cause ProtocolIE-ID ::= 985
-- WS extension to fill the range
id-Unknown-986 ProtocolIE-ID ::= 986
id-Common-EDCH-Capability ProtocolIE-ID ::= 987
id-E-AI-Capability ProtocolIE-ID ::= 988
id-Common-EDCH-System-InformationFDD ProtocolIE-ID ::= 989
id-Common-UL-MACFlows-to-DeleteFDD ProtocolIE-ID ::= 990
id-Common-EDCH-MACdFlows-to-DeleteFDD ProtocolIE-ID ::= 991
id-Common-EDCH-System-Information-ResponseFDD ProtocolIE-ID ::= 992
id-Cell-ERNTI-Status-Information ProtocolIE-ID ::= 993
id-Enhanced-UE-DRX-Capability ProtocolIE-ID ::= 994
id-Enhanced-UE-DRX-InformationFDD ProtocolIE-ID ::= 995
id-TransportBearerRequestIndicator ProtocolIE-ID ::= 996
id-SixtyfourQAM-DL-MIMO-Combined-Capability ProtocolIE-ID ::= 997
id-E-RNTI ProtocolIE-ID ::= 998
id-MinimumReducedE-DPDCH-GainFactor ProtocolIE-ID ::= 999
id-GANSS-Time-ID ProtocolIE-ID ::= 1000
id-GANSS-AddIonoModelReq ProtocolIE-ID ::= 1001
id-GANSS-EarthOrientParaReq ProtocolIE-ID ::= 1002
id-GANSS-AddNavigationModelsReq ProtocolIE-ID ::= 1003
id-GANSS-AddUTCModelsReq ProtocolIE-ID ::= 1004
id-GANSS-AuxInfoReq ProtocolIE-ID ::= 1005
id-GANSS-SBAS-ID ProtocolIE-ID ::= 1006
id-GANSS-ID ProtocolIE-ID ::= 1007
id-GANSS-Additional-Ionospheric-Model ProtocolIE-ID ::= 1008
id-GANSS-Earth-Orientation-Parameters ProtocolIE-ID ::= 1009
id-GANSS-Additional-Time-Models ProtocolIE-ID ::= 1010
id-GANSS-Additional-Navigation-Models ProtocolIE-ID ::= 1011
id-GANSS-Additional-UTC-Models ProtocolIE-ID ::= 1012
id-GANSS-Auxiliary-Information ProtocolIE-ID ::= 1013
id-ERACH-CM-Rqst ProtocolIE-ID ::= 1014
id-ERACH-CM-Rsp ProtocolIE-ID ::= 1015
id-ERACH-CM-Rprt ProtocolIE-ID ::= 1016
id-EDCH-RACH-Report-Value ProtocolIE-ID ::= 1017
id-EDCH-RACH-Report-IncrDecrThres ProtocolIE-ID ::= 1018
id-EDCH-RACH-Report-ThresholdInformation ProtocolIE-ID ::= 1019
id-E-DPCCH-Power-Boosting-Capability ProtocolIE-ID ::= 1020
id-HSDSCH-Common-System-InformationLCR ProtocolIE-ID ::= 1021
-- WS extension to fill the range
id-Unknown-1022 ProtocolIE-ID ::= 1022
id-HSDSCH-Common-System-Information-ResponseLCR ProtocolIE-ID ::= 1222
id-HSDSCH-Paging-System-InformationLCR ProtocolIE-ID ::= 1023
id-HSDSCH-Paging-System-Information-ResponseLCR ProtocolIE-ID ::= 1024
id-Common-MACFlows-to-DeleteLCR ProtocolIE-ID ::= 1025
id-Paging-MACFlows-to-DeleteLCR ProtocolIE-ID ::= 1026
id-Common-EDCH-System-InformationLCR ProtocolIE-ID ::= 1027
id-Common-UL-MACFlows-to-DeleteLCR ProtocolIE-ID ::= 1028
id-Common-EDCH-MACdFlows-to-DeleteLCR ProtocolIE-ID ::= 1029
id-Common-EDCH-System-Information-ResponseLCR ProtocolIE-ID ::= 1030
id-Enhanced-UE-DRX-CapabilityLCR ProtocolIE-ID ::= 1031
id-Enhanced-UE-DRX-InformationLCR ProtocolIE-ID ::= 1032
id-HSDSCH-PreconfigurationSetup ProtocolIE-ID ::= 1033
id-HSDSCH-PreconfigurationInfo ProtocolIE-ID ::= 1034
id-NoOfTargetCellHS-SCCH-Order ProtocolIE-ID ::= 1035
id-EnhancedHSServingCC-Abort ProtocolIE-ID ::= 1036
id-Additional-HS-Cell-Information-RL-Setup ProtocolIE-ID ::= 1037
id-Additional-HS-Cell-Information-Response ProtocolIE-ID ::= 1038
id-Additional-HS-Cell-Information-RL-Addition ProtocolIE-ID ::= 1039
id-Additional-HS-Cell-Change-Information-Response ProtocolIE-ID ::= 1040
id-Additional-HS-Cell-Information-RL-Reconf-Prep ProtocolIE-ID ::= 1041
id-Additional-HS-Cell-Information-RL-Reconf-Req ProtocolIE-ID ::= 1042
id-Additional-HS-Cell-Information-RL-Param-Upd ProtocolIE-ID ::= 1043
id-Multi-Cell-Capability-Info ProtocolIE-ID ::= 1044
id-IMB-Parameters ProtocolIE-ID ::= 1045
id-MACes-Maximum-Bitrate-LCR ProtocolIE-ID ::= 1046
id-Semi-PersistentScheduling-CapabilityLCR ProtocolIE-ID ::= 1047
id-E-DCH-Semi-PersistentScheduling-Information-LCR ProtocolIE-ID ::= 1048
id-HS-DSCH-Semi-PersistentScheduling-Information-LCR ProtocolIE-ID ::= 1049
id-Add-To-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 1050
id-Modify-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 1051
id-Delete-From-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 1052
id-ContinuousPacketConnectivity-DRX-CapabilityLCR ProtocolIE-ID ::= 1053
id-ContinuousPacketConnectivity-DRX-InformationLCR ProtocolIE-ID ::= 1054
id-ContinuousPacketConnectivity-DRX-Information-ResponseLCR ProtocolIE-ID ::= 1055
id-CPC-InformationLCR ProtocolIE-ID ::= 1056
id-HS-DSCH-Semi-PersistentScheduling-Information-ResponseLCR ProtocolIE-ID ::= 1057
id-E-DCH-Semi-PersistentScheduling-Information-ResponseLCR ProtocolIE-ID ::= 1058
id-E-AGCH-UE-Inactivity-Monitor-Threshold ProtocolIE-ID ::= 1059
-- WS extension to fill the range
id-Unknown-1060 ProtocolIE-ID ::= 1060
id-Unknown-1061 ProtocolIE-ID ::= 1061
id-Unknown-1062 ProtocolIE-ID ::= 1062
id-IdleIntervalInformation ProtocolIE-ID ::= 1063
id-GANSS-alm-keplerianNAVAlmanac ProtocolIE-ID ::= 1064
id-GANSS-alm-keplerianReducedAlmanac ProtocolIE-ID ::= 1065
id-GANSS-alm-keplerianMidiAlmanac ProtocolIE-ID ::= 1066
id-GANSS-alm-keplerianGLONASS ProtocolIE-ID ::= 1067
id-GANSS-alm-ecefSBASAlmanac ProtocolIE-ID ::= 1068
-- WS extension to fill the range
id-Unknown-1069 ProtocolIE-ID ::= 1069
id-HSSICH-ReferenceSignal-InformationLCR ProtocolIE-ID ::= 1070
id-MIMO-ReferenceSignal-InformationListLCR ProtocolIE-ID ::= 1071
id-MIMO-SFMode-For-HSPDSCHDualStream ProtocolIE-ID ::= 1072
id-MIMO-SFMode-Supported-For-HSPDSCHDualStream ProtocolIE-ID ::= 1073
id-UE-Selected-MBMS-Service-Information ProtocolIE-ID ::= 1074
-- WS extension to fill the range
id-Unknown-1075 ProtocolIE-ID ::= 1075
id-Unknown-1076 ProtocolIE-ID ::= 1076
id-MultiCarrier-HSDSCH-Physical-Layer-Category ProtocolIE-ID ::= 1077
id-Common-E-DCH-HSDPCCH-Capability ProtocolIE-ID ::= 1078
id-DL-RLC-PDU-Size-Format ProtocolIE-ID ::= 1079
id-HSSICH-ReferenceSignal-InformationModifyLCR ProtocolIE-ID ::= 1080
id-schedulingPriorityIndicator ProtocolIE-ID ::= 1081
id-TimeSlotMeasurementValueListLCR ProtocolIE-ID ::= 1082
-- WS extension to fill the range
id-Unknown-1083 ProtocolIE-ID ::= 1083
id-Unknown-1084 ProtocolIE-ID ::= 1084
id-UE-SupportIndicatorExtension ProtocolIE-ID ::= 1085
-- WS extension to fill the range
id-Unknown-1086 ProtocolIE-ID ::= 1086
id-Unknown-1087 ProtocolIE-ID ::= 1087
id-Single-Stream-MIMO-ActivationIndicator ProtocolIE-ID ::= 1088
id-Single-Stream-MIMO-Capability ProtocolIE-ID ::= 1089
id-Single-Stream-MIMO-Mode-Indicator ProtocolIE-ID ::= 1090
id-Dual-Band-Capability-Info ProtocolIE-ID ::= 1091
id-UE-AggregateMaximumBitRate ProtocolIE-ID ::= 1092
id-UE-AggregateMaximumBitRate-Enforcement-Indicator ProtocolIE-ID ::= 1093
-- WS extension to fill the range
id-Unknown-1094 ProtocolIE-ID ::= 1094
id-Unknown-1095 ProtocolIE-ID ::= 1095
id-Unknown-1096 ProtocolIE-ID ::= 1096
id-Unknown-1097 ProtocolIE-ID ::= 1097
id-Unknown-1098 ProtocolIE-ID ::= 1098
id-Unknown-1099 ProtocolIE-ID ::= 1099
id-Unknown-1100 ProtocolIE-ID ::= 1100
id-MIMO-Power-Offset-For-S-CPICH-Capability ProtocolIE-ID ::= 1101
id-MIMO-PilotConfigurationExtension ProtocolIE-ID ::= 1102
id-TxDiversityOnDLControlChannelsByMIMOUECapability ProtocolIE-ID ::= 1103
id-ULTimeslotISCPValue-For-CellPortion ProtocolIE-ID ::= 1104
id-UpPTSInterferenceValue-For-CellPortion ProtocolIE-ID ::= 1105
id-Best-Cell-Portions-ValueLCR ProtocolIE-ID ::= 1106
id-Transmitted-Carrier-Power-For-CellPortion-ValueLCR ProtocolIE-ID ::= 1107
id-Received-total-wide-band-power-For-CellPortion-ValueLCR ProtocolIE-ID ::= 1108
id-UL-TimeslotISCP-For-CellPortion-Value ProtocolIE-ID ::= 1109
id-HS-DSCHRequiredPowerValueInformation-For-CellPortionLCR ProtocolIE-ID ::= 1110
id-HS-DSCHProvidedBitRateValueInformation-For-CellPortionLCR ProtocolIE-ID ::= 1111
id-E-DCHProvidedBitRateValueInformation-For-CellPortion ProtocolIE-ID ::= 1112
id-UpPTSInterference-For-CellPortion-Value ProtocolIE-ID ::= 1113
id-NumberOfReportedCellPortionsLCR ProtocolIE-ID ::= 1114
id-CellPortion-CapabilityLCR ProtocolIE-ID ::= 1115
id-TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCHOrE-HICHTransmissionCellPortionValue ProtocolIE-ID ::= 1116
id-TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCHOrE-HICHTransmissionCellPortion ProtocolIE-ID ::= 1117
-- WS extension to fill the range
id-Unknown-1118 ProtocolIE-ID ::= 1118
id-ActivationInformation ProtocolIE-ID ::= 1119
id-Additional-EDCH-Cell-Information-RL-Setup-Req ProtocolIE-ID ::= 1120
id-Additional-EDCH-Cell-Information-Response ProtocolIE-ID ::= 1121
id-Additional-EDCH-Cell-Information-RL-Add-Req ProtocolIE-ID ::= 1122
id-Additional-EDCH-Cell-Information-Response-RL-Add ProtocolIE-ID ::= 1123
id-Additional-EDCH-Cell-Information-RL-Reconf-Prep ProtocolIE-ID ::= 1124
id-Additional-EDCH-Cell-Information-RL-Reconf-Req ProtocolIE-ID ::= 1125
id-Additional-EDCH-Cell-Information-Bearer-Rearrangement ProtocolIE-ID ::= 1126
id-Additional-EDCH-Cell-Information-RL-Param-Upd ProtocolIE-ID ::= 1127
id-Additional-EDCH-Preconfiguration-Information ProtocolIE-ID ::= 1128
id-EDCH-Indicator ProtocolIE-ID ::= 1129
-- WS extension to fill the range
id-Unknown-1130 ProtocolIE-ID ::= 1130
id-HS-DSCH-SPS-Reservation-Indicator ProtocolIE-ID ::= 1131
id-E-DCH-SPS-Reservation-Indicator ProtocolIE-ID ::= 1132
id-MultipleFreq-HARQ-MemoryPartitioning-InformationList ProtocolIE-ID ::= 1133
id-Ul-common-E-DCH-MACflow-Specific-InfoResponseListLCR-Ext ProtocolIE-ID ::= 1134
id-RepetitionPeriodIndex ProtocolIE-ID ::= 1135
id-MidambleShiftLCR ProtocolIE-ID ::= 1136
id-MaxHSDSCH-HSSCCH-Power-per-CELLPORTION ProtocolIE-ID ::= 1137
id-DormantModeIndicator ProtocolIE-ID ::= 1138
id-DiversityMode ProtocolIE-ID ::= 1139
id-TransmitDiversityIndicator ProtocolIE-ID ::= 1140
id-NonCellSpecificTxDiversity ProtocolIE-ID ::= 1141
id-Cell-Capability-Container ProtocolIE-ID ::= 1142
id-E-RNTI-List-Request ProtocolIE-ID ::= 1143
id-E-RNTI-List ProtocolIE-ID ::= 1144
id-PowerControlGAP-For-CellFACHLCR ProtocolIE-ID ::= 1145
-- WS extension to fill the range
id-Unknown-1146 ProtocolIE-ID ::= 1146
id-UL-Synchronisation-Parameters-For-FACHLCR ProtocolIE-ID ::= 1147
id-HS-DSCH-SPS-Operation-Indicator ProtocolIE-ID ::= 1148
id-HSDSCH-RNTI-For-FACH ProtocolIE-ID ::= 1149
id-E-RNTI-For-FACH ProtocolIE-ID ::= 1150
id-Out-of-Sychronization-Window ProtocolIE-ID ::= 1151
id-Max-RTWP-perUARFCN-Information-LCR-PSCH-ReconfRqst ProtocolIE-ID ::= 1152
id-E-HICH-TimeOffset-ReconfFailureTDD ProtocolIE-ID ::= 1153
id-HSSCCH-TPC-StepSize ProtocolIE-ID ::= 1154
id-TS0-CapabilityLCR ProtocolIE-ID ::= 1155
id-UE-TS0-CapabilityLCR ProtocolIE-ID ::= 1156
id-Common-System-Information-ResponseLCR ProtocolIE-ID ::= 1157
id-Additional-EDCH-Cell-Information-ResponseRLReconf ProtocolIE-ID ::= 1158
id-Multicell-EDCH-InformationItemIEs ProtocolIE-ID ::= 1159
id-Multicell-EDCH-RL-Specific-InformationItemIEs ProtocolIE-ID ::= 1160
id-Add-To-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst-Ext ProtocolIE-ID ::= 1161
id-Modify-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst-Ext ProtocolIE-ID ::= 1162
id-Delete-From-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst-Ext ProtocolIE-ID ::= 1163
id-Initial-DL-Transmission-Power ProtocolIE-ID ::= 1164
id-Maximum-DL-Power ProtocolIE-ID ::= 1165
id-Minimum-DL-Power ProtocolIE-ID ::= 1166
id-DCH-MeasurementOccasion-Information ProtocolIE-ID ::= 1167
id-AssociatedPhsicalChannelID ProtocolIE-ID ::= 1168
id-DGNSS-ValidityPeriod ProtocolIE-ID ::= 1169
id-PhysicalChannelID-for-CommonERNTI-RequestedIndicator ProtocolIE-ID ::= 1170
id-PrecodingWeightSetRestriction ProtocolIE-ID ::= 1171
id-Treset-Usage-Indicator ProtocolIE-ID ::= 1172
id-Non-Serving-RL-Preconfig-Info ProtocolIE-ID ::= 1173
id-Non-Serving-RL-Preconfig-Setup ProtocolIE-ID ::= 1174
id-Non-Serving-RL-Preconfig-Removal ProtocolIE-ID ::= 1175
id-Additional-E-DCH-Non-Serving-RL-Preconfiguration-Setup ProtocolIE-ID ::= 1176
id-Additional-E-DCH-New-non-serving-RL-E-DCH-FDD-DL-Control-Channel-InfoList ProtocolIE-ID ::= 1177
id-Ul-common-E-DCH-MACflow-Specific-InfoListLCR-Ext ProtocolIE-ID ::= 1178
id-CommonMACFlow-Specific-InfoList-ResponseLCR-Ext ProtocolIE-ID ::= 1179
id-Enabling-Delay-Ext-LCR ProtocolIE-ID ::= 1180
-- WS extension to fill the range
id-Unallocated-1181 ProtocolIE-ID ::= 1181
id-Unallocated-1182 ProtocolIE-ID ::= 1182
id-Unallocated-1183 ProtocolIE-ID ::= 1183
id-Unallocated-1184 ProtocolIE-ID ::= 1184
id-Unallocated-1185 ProtocolIE-ID ::= 1185
id-Unallocated-1186 ProtocolIE-ID ::= 1186
id-Unallocated-1187 ProtocolIE-ID ::= 1187
id-Unallocated-1188 ProtocolIE-ID ::= 1188
id-Unallocated-1189 ProtocolIE-ID ::= 1189
id-Unallocated-1190 ProtocolIE-ID ::= 1190
id-Unallocated-1191 ProtocolIE-ID ::= 1191
id-Unallocated-1192 ProtocolIE-ID ::= 1192
id-Unallocated-1193 ProtocolIE-ID ::= 1193
id-Unallocated-1194 ProtocolIE-ID ::= 1194
id-Unallocated-1195 ProtocolIE-ID ::= 1195
id-Unallocated-1196 ProtocolIE-ID ::= 1196
id-Unallocated-1197 ProtocolIE-ID ::= 1197
id-Unallocated-1198 ProtocolIE-ID ::= 1198
id-Unallocated-1199 ProtocolIE-ID ::= 1199
id-Unallocated-1200 ProtocolIE-ID ::= 1200
id-Unallocated-1201 ProtocolIE-ID ::= 1201
id-Unallocated-1202 ProtocolIE-ID ::= 1202
id-Unallocated-1203 ProtocolIE-ID ::= 1203
id-Unallocated-1204 ProtocolIE-ID ::= 1204
id-Unallocated-1205 ProtocolIE-ID ::= 1205
id-Unallocated-1206 ProtocolIE-ID ::= 1206
id-Unallocated-1207 ProtocolIE-ID ::= 1207
id-Unallocated-1208 ProtocolIE-ID ::= 1208
id-Unallocated-1209 ProtocolIE-ID ::= 1209
id-Unallocated-1210 ProtocolIE-ID ::= 1210
id-Unallocated-1211 ProtocolIE-ID ::= 1211
id-Unallocated-1212 ProtocolIE-ID ::= 1212
id-Unallocated-1213 ProtocolIE-ID ::= 1213
id-Unallocated-1214 ProtocolIE-ID ::= 1214
id-Unallocated-1215 ProtocolIE-ID ::= 1215
id-Unallocated-1216 ProtocolIE-ID ::= 1216
id-Unallocated-1217 ProtocolIE-ID ::= 1217
id-Unallocated-1218 ProtocolIE-ID ::= 1218
id-Unallocated-1219 ProtocolIE-ID ::= 1219
id-Unallocated-1220 ProtocolIE-ID ::= 1220
id-Unallocated-1221 ProtocolIE-ID ::= 1221
--id-HSDSCH-Common-System-Information-ResponseLCR ProtocolIE-ID ::= 1222
END
|