1EUTRA-extract-55 DEFINITIONS AUTOMATIC TAGS ::=
2
3BEGIN
4
5
6SystemInformation-r8-IEs ::= SEQUENCE {
7  sib-TypeAndInfo  SEQUENCE (SIZE (1..5)) OF CHOICE {
8    sib2	SystemInformationBlockType2,
9    sib3	SystemInformationBlockType3,
10    sib4	SystemInformationBlockType4,
11    sib5	SystemInformationBlockType5,
12    sib6	SystemInformationBlockType6,
13    sib7	SystemInformationBlockType7,
14    sib8	SystemInformationBlockType8,
15    sib9	SystemInformationBlockType9,
16    sib10	SystemInformationBlockType10,
17    sib11	SystemInformationBlockType11,
18    ...
19  },
20  nonCriticalExtension	SEQUENCE {}	OPTIONAL
21}
22
23SystemInformationBlockType2 ::= INTEGER
24SystemInformationBlockType3 ::= INTEGER
25SystemInformationBlockType4 ::= INTEGER
26SystemInformationBlockType5 ::= INTEGER
27SystemInformationBlockType6 ::= INTEGER
28SystemInformationBlockType7 ::= INTEGER
29SystemInformationBlockType8 ::= INTEGER
30SystemInformationBlockType9 ::= INTEGER
31SystemInformationBlockType10 ::= INTEGER
32SystemInformationBlockType11 ::= INTEGER
33
34-- OTP-7763
35CellIdentity ::= BIT STRING (SIZE (28))
36
37Seq ::= SEQUENCE {
38  a INTEGER,
39  b1 BIT STRING (SIZE (8)),
40  b2 BIT STRING (SIZE (1)),
41  b CellIdentity,
42  c INTEGER,
43  d BOOLEAN
44}
45
46
47END