diff --git a/ci-scripts/cls_physim.py b/ci-scripts/cls_physim.py
new file mode 100644
index 0000000000000000000000000000000000000000..4ca36b8cf0f6c485b31cb025349e3a693531d1ca
--- /dev/null
+++ b/ci-scripts/cls_physim.py
@@ -0,0 +1,191 @@
+# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+# * contributor license agreements.  See the NOTICE file distributed with
+# * this work for additional information regarding copyright ownership.
+# * The OpenAirInterface Software Alliance licenses this file to You under
+# * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+# * except in compliance with the License.
+# * You may obtain a copy of the License at
+# *
+# *      http://www.openairinterface.org/?page_id=698
+# *
+# * Unless required by applicable law or agreed to in writing, software
+# * distributed under the License is distributed on an "AS IS" BASIS,
+# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# * See the License for the specific language governing permissions and
+# * limitations under the License.
+# *-------------------------------------------------------------------------------
+# * For more information about the OpenAirInterface (OAI) Software Alliance:
+# *      contact@openairinterface.org
+# */
+#---------------------------------------------------------------------
+# Python for CI of OAI-eNB + COTS-UE
+#
+#   Required Python Version
+#     Python 3.x
+#
+#   Required Python Package
+#     pexpect
+#---------------------------------------------------------------------
+
+#to use logging.info()
+import logging
+#to create a SSH object locally in the methods
+import sshconnection
+#to update the HTML object
+import html
+from multiprocessing import SimpleQueue
+#for log folder maintenance
+import os
+
+class PhySim:
+	def __init__(self):
+		self.buildargs = ""
+		self.runargs = ""
+		self.eNBIpAddr = ""
+		self.eNBUserName = ""
+		self.eNBPassWord = ""
+		self.eNBSourceCodePath = ""
+		self.ranRepository = ""
+		self.ranBranch = ""
+		self.ranCommitID= ""
+		self.ranAllowMerge= ""
+		self.ranTargetBranch= ""
+		self.exitStatus=0
+		self.forced_workspace_cleanup=False
+		#private attributes
+		self.__workSpacePath=''
+		self.__buildLogFile='compile_phy_sim.log'
+		self.__runLogFile=''
+		self.__runResults=[]
+		self.__runLogPath='phy_sim_logs'
+
+
+#-----------------
+#PRIVATE Methods
+#-----------------
+
+	def __CheckResults_PhySim(self,HTML,CONST,testcase_id):
+		mySSH = sshconnection.SSHConnection()
+		mySSH.open(self.eNBIpAddr, self.eNBUserName, self.eNBPassWord)
+		#retrieve run log file and store it locally$
+		mySSH.copyin(self.eNBIpAddr, self.eNBUserName, self.eNBPassWord, self.__workSpacePath+self.__runLogFile, '.')
+		mySSH.close()
+		#parse results looking for Encoding and Decoding mean values
+		self.__runResults=[]
+		with open(self.__runLogFile) as f:
+			for line in f:
+				if 'mean' in line:
+					self.__runResults.append(line)
+		#the values are appended for each mean value (2), so we take these 2 values from the list
+		info=self.__runResults[0]+self.__runResults[1]
+
+		#once parsed move the local logfile to its folder for tidiness
+		os.system('mv '+self.__runLogFile+' '+ self.__runLogPath+'/.')
+
+		#updating the HTML with results
+		html_cell = '<pre style="background-color:white">' + info  + '</pre>'
+		html_queue=SimpleQueue()
+		html_queue.put(html_cell)
+		HTML.CreateHtmlTestRowQueue(self.runargs, 'OK', 1, html_queue)
+		return HTML
+
+
+	def __CheckBuild_PhySim(self, HTML, CONST):
+		self.__workSpacePath=self.eNBSourceCodePath+'/cmake_targets/'
+		mySSH = sshconnection.SSHConnection()
+		mySSH.open(self.eNBIpAddr, self.eNBUserName, self.eNBPassWord)
+		#retrieve compile log file and store it locally
+		mySSH.copyin(self.eNBIpAddr, self.eNBUserName, self.eNBPassWord, self.__workSpacePath+self.__buildLogFile, '.')
+		#delete older run log file
+		mySSH.command('rm ' + self.__workSpacePath+self.__runLogFile, '\$', 5)
+		mySSH.close()
+		#check build result from local compile log file
+		buildStatus=False
+		with open(self.__buildLogFile) as f:
+		#nr_prachsim is the last compile step
+			if 'nr_prachsim compiled' in f.read():
+				buildStatus=True
+		#update HTML based on build status
+		if buildStatus:
+			HTML.CreateHtmlTestRow(self.buildargs, 'OK', CONST.ALL_PROCESSES_OK, 'LDPC')
+			self.exitStatus=0
+		else:
+			logging.error('\u001B[1m Building Physical Simulators Failed\u001B[0m')
+			HTML.CreateHtmlTestRow(self.buildargs, 'KO', CONST.ALL_PROCESSES_OK, 'LDPC')
+			HTML.CreateHtmlTabFooter(False)
+			#exitStatus=1 will do a sys.exit in main
+			self.exitStatus=1
+		return HTML
+
+
+#-----------------$
+#PUBLIC Methods$
+#-----------------$
+
+	def Build_PhySim(self,htmlObj,constObj):
+		mySSH = sshconnection.SSHConnection()    
+		mySSH.open(self.eNBIpAddr, self.eNBUserName, self.eNBPassWord)
+
+		#create working dir    
+		mySSH.command('mkdir -p ' + self.eNBSourceCodePath, '\$', 5)
+		mySSH.command('cd ' + self.eNBSourceCodePath, '\$', 5)
+
+		if not self.ranRepository.lower().endswith('.git'):
+			self.ranRepository+='.git'
+
+		#git clone
+		mySSH.command('if [ ! -e .git ]; then stdbuf -o0 git clone '  + self.ranRepository + ' .; else stdbuf -o0 git fetch --prune; fi', '\$', 600)
+		#git config 
+		mySSH.command('git config user.email "jenkins@openairinterface.org"', '\$', 5)
+		mySSH.command('git config user.name "OAI Jenkins"', '\$', 5) 
+
+		#git clean depending on self.forced_workspace_cleanup captured in xml
+		if self.forced_workspace_cleanup==True:
+			logging.info('Cleaning workspace ...')
+			mySSH.command('echo ' + self.eNBPassWord + ' | sudo -S git clean -x -d -ff', '\$', 30)
+		else:
+			logging.info('Workspace cleaning was disabled')
+
+		# if the commit ID is provided, use it to point to it
+		if self.ranCommitID != '':
+			mySSH.command('git checkout -f ' + self.ranCommitID, '\$', 5)
+		# if the branch is not develop, then it is a merge request and we need to do 
+		# the potential merge. Note that merge conflicts should have already been checked earlier
+		if (self.ranAllowMerge):
+			if self.ranTargetBranch == '':
+				if (self.ranBranch != 'develop') and (self.ranBranch != 'origin/develop'):
+					mySSH.command('git merge --ff origin/develop -m "Temporary merge for CI"', '\$', 5)
+			else:
+				logging.info('Merging with the target branch: ' + self.ranTargetBranch)
+				mySSH.command('git merge --ff origin/' + self.ranTargetBranch + ' -m "Temporary merge for CI"', '\$', 5)
+
+		#build
+		mySSH.command('source oaienv', '\$', 5)
+		mySSH.command('cd cmake_targets', '\$', 5)
+		mySSH.command('mkdir -p log', '\$', 5)
+		mySSH.command('chmod 777 log', '\$', 5)
+		mySSH.command('stdbuf -o0 ./build_oai ' + self.buildargs + ' 2>&1 | stdbuf -o0 tee ' + self.__buildLogFile, 'Bypassing the Tests|build have failed', 1500) 
+
+		mySSH.close()
+		#check build status and update HTML object
+		lHTML = html.HTMLManagement()
+		lHTML=self.__CheckBuild_PhySim(htmlObj,constObj)
+		return lHTML
+
+
+	def Run_PhySim(self,htmlObj,constObj,testcase_id):
+		#create run logs folder locally
+		os.system('mkdir -p ./'+self.__runLogPath)
+		#log file is tc_<testcase_id>.log remotely
+		self.__runLogFile='physim_'+str(testcase_id)+'.log'
+		#open a session for test run
+		mySSH = sshconnection.SSHConnection()
+		mySSH.open(self.eNBIpAddr, self.eNBUserName, self.eNBPassWord)
+		mySSH.command('cd '+self.__workSpacePath,'\$',5)
+		#run and redirect the results to a log file
+		mySSH.command(self.__workSpacePath+'phy_simulators/build/ldpctest ' + self.runargs + ' >> '+self.__runLogFile, '\$', 30)   
+		mySSH.close()
+		#return updated HTML to main
+		lHTML = html.HTMLManagement()
+		lHTML=self.__CheckResults_PhySim(htmlObj,constObj,testcase_id)
+		return lHTML
diff --git a/ci-scripts/xml_files/gnb_nr_ue_usrp_run_multi_thread.xml b/ci-scripts/xml_files/gnb_nr_ue_usrp_run_multi_thread.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b4290ae6a3da69eae76ad7e8359a3df1272483b7
--- /dev/null
+++ b/ci-scripts/xml_files/gnb_nr_ue_usrp_run_multi_thread.xml
@@ -0,0 +1,71 @@
+<!--
+
+ Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The OpenAirInterface Software Alliance licenses this file to You under
+ the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ except in compliance with the License.
+ You may obtain a copy of the License at
+
+      http://www.openairinterface.org/?page_id=698
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+ For more information about the OpenAirInterface (OAI) Software Alliance:
+      contact@openairinterface.org
+
+-->
+<testCaseList>
+        <htmlTabRef>run-oai-gnb-nr-ue-tx-write-thread</htmlTabRef>
+        <htmlTabName>Run-gNB-and-NR-UE-TX-Write-Thread</htmlTabName>
+        <htmlTabIcon>tasks</htmlTabIcon>	
+	<repeatCount>2</repeatCount>
+	<TestCaseRequestedList>
+090103 000001 090104 000002 090108 090109
+	</TestCaseRequestedList>
+	<TestCaseExclusionList></TestCaseExclusionList>
+	
+        <testCase id="090103">
+                <class>Initialize_eNB</class>
+                <desc>Initialize gNB USRP (Tx-Write-Threading enabled)</desc>
+		<Initialize_eNB_args>-O ci-scripts/conf_files/gnb.band78.tm1.106PRB.usrpn300.conf --phy-test --usrp-tx-thread-config 1</Initialize_eNB_args>
+		<air_interface>NR</air_interface>
+        </testCase>
+
+	<testCase id="000001">
+		<class>IdleSleep</class>
+		<desc>Sleep</desc>
+		<idle_sleep_time_in_sec>5</idle_sleep_time_in_sec>
+	</testCase>
+
+	<testCase id="000002">
+		<class>IdleSleep</class>
+		<desc>Waiting for NR UE to synchronize w/ gNB</desc>
+		<idle_sleep_time_in_sec>180</idle_sleep_time_in_sec>
+	</testCase>
+
+        <testCase id="090104">
+                <class>Initialize_OAI_UE</class>
+                <desc>Initialize NR UE USRP</desc>
+		<Initialize_OAI_UE_args>--phy-test --usrp-args "addr=192.168.30.2,second_addr=192.168.50.2,clock_source=external,time_source=external" --threadoffset 16 --rrc_config_path .</Initialize_OAI_UE_args>
+		<air_interface>NR</air_interface>
+        </testCase>
+
+        <testCase id="090108">
+                <class>Terminate_OAI_UE</class>
+                <desc>Terminate NR UE</desc>
+		<air_interface>NR</air_interface>
+        </testCase>
+
+        <testCase id="090109">
+                <class>Terminate_eNB</class>
+                <desc>Terminate gNB</desc>
+		<air_interface>NR</air_interface>
+        </testCase>
+
+</testCaseList>
diff --git a/ci-scripts/xml_files/ldpc_gpu_test.xml b/ci-scripts/xml_files/ldpc_gpu_test.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a0191fbd7683d4ac339c55ba63aa1f2475c39970
--- /dev/null
+++ b/ci-scripts/xml_files/ldpc_gpu_test.xml
@@ -0,0 +1,161 @@
+<!--
+
+ Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The OpenAirInterface Software Alliance licenses this file to You under
+ the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ except in compliance with the License.
+ You may obtain a copy of the License at
+
+      http://www.openairinterface.org/?page_id=698
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+ For more information about the OpenAirInterface (OAI) Software Alliance:
+      contact@openairinterface.org
+
+ 030105 040301 040502 040606 040601 040603 040608 040605 040646 040641 040643 040648 040645 040401 040201 030201
+-->
+<testCaseList>
+	<htmlTabRef>test-ldpc-gpu</htmlTabRef>
+	<htmlTabName>Test-ldpc-GPU</htmlTabName>
+	<htmlTabIcon>tasks</htmlTabIcon>
+	<repeatCount>1</repeatCount>
+	<TestCaseRequestedList>000001 000002 000003 000004 000005 000006 000007 000008 000009 000010 000011 000012 000013 000014 000015 000016 000017 000018 000019 000020 000021</TestCaseRequestedList>
+	<TestCaseExclusionList></TestCaseExclusionList>
+
+	<testCase id="000001">
+		<class>Build_PhySim</class>
+		<desc>Build for physical simulator</desc>
+		<physim_build_args>--phy_simulators --ninja</physim_build_args>
+		<forced_workspace_cleanup>FALSE</forced_workspace_cleanup>
+	</testCase>
+
+	<testCase id="000002">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 3872 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000003">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 3872 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000004">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 4224 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000005">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 4224 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000006">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 4576 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000007">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 4576 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000008">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 4928 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000009">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 4928 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000010">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 5280 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000011">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 5280 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000012">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 5632 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000013">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 5632 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000014">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 6336 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000015">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 6336 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000016">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 7040 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000017">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 7040 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000018">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 7744 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000019">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 7744 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+	<testCase id="000020">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with CPU</desc>
+		<physim_run_args>-l 8448 -s10 -n100</physim_run_args>
+	</testCase>
+
+	<testCase id="000021">
+		<class>Run_PhySim</class>
+		<desc>Run LDPC Test with GPU</desc>
+		<physim_run_args>-l 8448 -s10 -n100 -G 1</physim_run_args>
+	</testCase>
+
+
+
+</testCaseList>
diff --git a/doc/TESTING_GNB_W_COTS_UE.md b/doc/TESTING_GNB_W_COTS_UE.md
new file mode 100644
index 0000000000000000000000000000000000000000..e507050239767f9d1b602486b8214d5dcc676b20
--- /dev/null
+++ b/doc/TESTING_GNB_W_COTS_UE.md
@@ -0,0 +1,394 @@
+STATUS 2020/06/26 : information is up to date, but under continuous improvement
+
+## Table of Contents ##
+
+1.   [Configuration Overview](#configuration-overview)
+2.   [SW Repository / Branch](#repository)
+3.   [Architecture Setup](#architecture-setup)
+4.   [Build / Install](#build-and-install)
+5.   [Run / Test](#run-and-test)
+6.   [Test case](#test-case)
+7.   [Log file monitoring](#log-file-monitoring)
+6.   [Required tools for debug](#required-tools-for-debug)
+7.   [Status of interoperability](#status-of-interoperability) 
+
+## Configuration Overview
+
+* Non Standalone (NSA) configuration  : initial Control Plane established between UE and RAN eNB, then User Plane established between UE and gNB, Core network is 4G based supporting rel 15
+
+* Commercial UE: Oppo Reno 5G
+* OAI Software Defined gNB and eNB
+* eNB RF front end: USRP (ETTUS) B200 Mini or B210
+* gNB RF front end: USRP (ETTUS) B200 Mini or B210 (N310 will be needed for MIMO and wider BW's)
+* 5G TDD duplexing mode
+* 5G FR1 Band n78 (3.5 GHz)
+* BW: 40MHz
+* Antenna scheme: SISO
+
+## Repository
+
+https://gitlab.eurecom.fr/oai/openairinterface5g/tree/develop
+
+## Architecture Setup
+
+The scheme below depicts our typical setup:
+
+![image info](./testing_gnb_w_cots_ue_resources/oai_fr1_setup.jpg)
+
+The photo depicts the FR1 setup part of the scheme above:  
+
+
+![image info](./testing_gnb_w_cots_ue_resources/oai_fr1_lab.jpg)
+
+## Build and Install
+
+General guidelines to build eNB and gNB :
+See https://gitlab.eurecom.fr/oai/openairinterface5g/blob/develop/doc/BUILD.md#building-ues-enodeb-and-gnodeb-executables
+
+
+- **eNB**
+
+```
+cd <your oai installation directory>/openairinterface5g/
+source oaienv
+cd cmake_targets/
+./build_oai -I -w USRP --eNB
+
+```
+
+- **gNB**
+
+```
+cd <your oai installation directory>/openairinterface5g/
+source oaienv
+cd cmake_targets/
+./build_oai -I -w USRP --gNB
+```
+
+
+- **EPC**
+
+for reference:
+https://github.com/OPENAIRINTERFACE/openair-epc-fed/blob/master-documentation/docs/DEPLOY_HOME.md
+
+
+
+## Configuration Files
+
+Each component (EPC, eNB, gNB) has its own configuration file.  
+These config files are passed as arguments of the run command line, using the option -O \<conf file\>
+
+Some config examples can be found in the following folder:  
+https://gitlab.eurecom.fr/oai/openairinterface5g/-/tree/develop/targets/PROJECTS/GENERIC-LTE-EPC/CONF
+
+Also base config files can be found here:  
+[enb conf file](https://gitlab.eurecom.fr/oai/openairinterface5g/-/blob/rh_doc_update_3/doc/testing_gnb_w_cots_ue_resources/enb.conf)  
+[gnb conf file](https://gitlab.eurecom.fr/oai/openairinterface5g/-/blob/rh_doc_update_3/doc/testing_gnb_w_cots_ue_resources/gnb.conf)
+
+TO DO : attach base confif files
+
+These files have to be updated manually to set the IP addresses and frequency.  
+
+1- In the **eNB configuration file** :
+- look for MME IP address, and update the **ipv4 field** with the IP address of the **EPC** server
+```
+    ////////// MME parameters:
+    mme_ip_address      = ( { ipv4       = "**YOUR_EPC_IP_ADDR**";
+                              ipv6       = "192:168:30::17";
+                              active     = "yes";
+                              preference = "ipv4";
+                            }
+                          );
+
+```
+
+- look for S1 IP address, and update the **3 fields below** with the IP address of the **eNB** server  
+```
+    NETWORK_INTERFACES :
+    {
+        ENB_INTERFACE_NAME_FOR_S1_MME            = "eth0";
+        ENB_IPV4_ADDRESS_FOR_S1_MME              = "**YOUR_ENB_IP_ADDR**";
+        ENB_INTERFACE_NAME_FOR_S1U               = "eth0";
+        ENB_IPV4_ADDRESS_FOR_S1U                 = "**YOUR_ENB_IP_ADDR**";
+        ENB_PORT_FOR_S1U                         = 2152; # Spec 2152
+        ENB_IPV4_ADDRESS_FOR_X2C                 = "**YOUR_ENB_IP_ADDR**";
+        ENB_PORT_FOR_X2C                         = 36422; # Spec 36422
+    };
+
+```
+
+2- In the **gNB configuration file** :
+- look for MME IP address, and update the **ipv4 field** with the IP address of the **EPC** server
+```
+    ////////// MME parameters:
+    mme_ip_address      = ( { ipv4       = "**YOUR_EPC_IP_ADDR**";
+                              ipv6       = "192:168:30::17";
+                              active     = "yes";
+                              preference = "ipv4";
+                            }
+                          );
+```
+- look for X2 IP address, and update the **4 fields** with the IP address of the **eNB** server (notice : even if -in principle- S1 MME is not required for gNB setting)
+```
+
+    ///X2
+    enable_x2 = "yes";
+    t_reloc_prep      = 1000;      /* unit: millisecond */
+    tx2_reloc_overall = 2000;      /* unit: millisecond */
+    target_enb_x2_ip_address      = (
+                                     { ipv4       = "**YOUR_ENB_IP_ADDR**";
+                                       ipv6       = "192:168:30::17";
+                                       preference = "ipv4";
+                                     }
+                                    );
+
+    NETWORK_INTERFACES :
+    {
+
+        GNB_INTERFACE_NAME_FOR_S1_MME            = "eth0";
+        GNB_IPV4_ADDRESS_FOR_S1_MME              = "**YOUR_ENB_IP_ADDR**";
+        GNB_INTERFACE_NAME_FOR_S1U               = "eth0";
+        GNB_IPV4_ADDRESS_FOR_S1U                 = "**YOUR_ENB_IP_ADDR**";
+        GNB_PORT_FOR_S1U                         = 2152; # Spec 2152
+        GNB_IPV4_ADDRESS_FOR_X2C                 = "**YOUR_ENB_IP_ADDR**";
+        GNB_PORT_FOR_X2C                         = 36422; # Spec 36422
+    };
+
+    
+```
+
+
+
+3- The frequency setting requires a manual update in the .C and in the gNB conf file:
+
+
+In the C file **openair2/RRC/LTE/rrc_eNB.c:3217**  
+set the nrarfcn to the same value as absoluteFrequencySSB in the **gNB config file**, that is **641272** in the example below 
+
+C file :
+```
+MeasObj2->measObject.choice.measObjectNR_r15.carrierFreq_r15 =641272;
+```
+
+gNB config file :
+
+```
+    # absoluteFrequencySSB is the central frequency of SSB 
+    absoluteFrequencySSB                                          = 641272; 
+    dl_frequencyBand                                                 = 78;
+    # the carrier frequency is assumed to be in the middle of the carrier, i.e. dl_absoluteFrequencyPointA_kHz + dl_carrierBandwidth*12*SCS_kHz/2
+    dl_absoluteFrequencyPointA                                       = 640000;
+    #scs-SpecificCarrierList
+    dl_offstToCarrier                                              = 0;
+    # subcarrierSpacing
+    # 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+    dl_subcarrierSpacing                                           = 1;
+    dl_carrierBandwidth                                            = 106;
+```
+
+
+## Run and Test
+
+The order to run the different components is important:  
+1- first, CN  
+2- then, eNB  
+3- then, gNB  
+4- finally, switch UE from airplane mode OFF to ON  
+
+It is recommended to redirect the run commands to the same log file (fur further analysis and debug), using ```| tee **YOUR_LOG_FILE**``` especially for eNB and gNB.  
+It is not very useful for the CN.  
+
+The test takes typically a few seconds, max 10-15 seconds. If it takes more than 30 seconds, there is a problem. 
+
+- **EPC** (on EPC host):
+
+for reference:
+https://github.com/OPENAIRINTERFACE/openair-epc-fed/blob/master-documentation/docs/DEPLOY_HOME.md
+
+
+
+- **eNB** (on the eNB host):
+
+Execute: 
+```
+~/openairinterface5g/cmake_targets/ran_build/build$ sudo ./lte-softmodem -O **YOUR_ENB_CONF_FILE** | tee **YOUR_LOG_FILE**
+
+```
+
+For example:
+```
+~/openairinterface5g/cmake_targets/ran_build/build$ sudo ./lte-softmodem -O ../../../targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.tm1.50PRB.usrpb210.conf | tee mylogfile.log
+```
+
+
+
+- **gNB** (on the gNB host)
+
+
+Execute: 
+```
+~/openairinterface5g/cmake_targets/ran_build/build$ sudo ./nr-softmodem -O **YOUR_GNB_CONF_FILE** | tee **YOUR_LOG_FILE**
+
+```
+
+For example:
+```
+~/openairinterface5g/cmake_targets/ran_build/build$ sudo ./nr-softmodem -O ../../../targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.band78.tm1.106PRB.usrpn300.conf | tee mylogfile.log
+```
+
+
+## Test Case
+
+The test case corresponds to the UE attachement, that is the UE connection and its initial access in 5G, as depicted below:
+
+**Source** : https://www.sharetechnote.com/html/5G/5G_LTE_Interworking.html  
+
+![image info](./testing_gnb_w_cots_ue_resources/attach_signaling_scheme.jpg)
+
+The test reaches step **12. E-RAB modifcation confirmation** , eventhough not all the messages will appear in the log file. 
+
+## Log file monitoring
+
+From the log file that is generated, we can monitor several important steps, to assess that the test was successful.  
+Log files examples can be found here:  
+[enb log file](https://gitlab.eurecom.fr/oai/openairinterface5g/-/blob/rh_doc_update_3/doc/testing_gnb_w_cots_ue_resources/oai_enb.log)  
+[gnb log file](https://gitlab.eurecom.fr/oai/openairinterface5g/-/blob/rh_doc_update_3/doc/testing_gnb_w_cots_ue_resources/oai_gnb.log)
+
+
+- eNB receives UE capabilities information, including its NR capabilites, and triggers sGNB Addition Request message:
+
+***eNBlog.1315 :***
+```
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] received ueCapabilityInformation on UL-DCCH 1 from UE
+...
+[RRC]   [eNB 0] frame 0 subframe 0: UE rnti 43eb switching to NSA mode
+...
+<X2AP-PDU>
+     <initiatingMessage>
+         <procedureCode>27</procedureCode>
+         <criticality><reject/></criticality>
+         <value>
+             <SgNBAdditionRequest>
+                 <protocolIEs>
+                     <SgNBAdditionRequest-IEs>
+                         <id>111</id>
+<criticality><reject/></criticality>
+                         <value>
+                             <UE-X2AP-ID>0</UE-X2AP-ID>
+                         </value>
+                     </SgNBAdditionRequest-IEs>
+```
+
+- gNB receives sGNB Addition request, processes UE capabilities for the corresponding UE and triggers sGNB Addition Request ACK, carrying NR RRC Reconfiguration message:
+
+
+***gNBlog.2291 :***
+```
+<X2AP-PDU>
+     <successfulOutcome>
+         <procedureCode>27</procedureCode>
+         <criticality><reject/></criticality>
+         <value>
+             <SgNBAdditionRequestAcknowledge>
+                 <protocolIEs>
+                     <SgNBAdditionRequestAcknowledge-IEs>
+                         <id>111</id>
+<criticality><reject/></criticality>
+                         <value>
+                             <UE-X2AP-ID>0</UE-X2AP-ID>
+                         </value>
+                     </SgNBAdditionRequestAcknowledge-IEs>
+```
+
+
+- Upon reception of the sGNB Addition Request ACK, the eNB sends a new RRCConnectionReconfiguration message containing the NR Reconfiguration. 
+The UE replies with a Reconfiguration Complete message:
+
+***eNBlog.1686 :***
+```
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] UE State = RRC_RECONFIGURED (default DRB, xid 1)
+```
+
+- The Random Access procedure of the UE to the gNB takes place:
+
+***gNBlog.2382 :***
+```
+[PHY]   [gNB 0][RAPROC] Frame 751, slot 19 Initiating RA procedure with 
+preamble 63, energy 35.7 dB, delay 6
+ [0m [0m[MAC]   [gNB 0][RAPROC] CC_id 0 Frame 751, Slot 19 Initiating RA 
+procedure for preamble index 63
+ [0m [0m[MAC]   [gNB 0][RAPROC] CC_id 0 Frame 751 Activating Msg2 
+generation in frame 752, slot 7 using RA rnti 10b
+ [0m [0m[MAC]   [gNB 0] [RAPROC] CC_id 0 Frame 752, slotP 7: Generating 
+RAR DCI, state 1
+ [0m [0m[MAC]   [RAPROC] DCI type 1 payload: freq_alloc 120 (0,6,24), 
+time_alloc 3, vrb to prb 0, mcs 0 tb_scaling 0
+ [0m [0m[MAC]   Frame 752: Subframe 7 : Adding common DL DCI for RA_RNTI 10b
+ [0m [0m[MAC]   Frame 752, Subframe 7: Setting Msg3 reception for Frame 
+752 Subframe 17
+ [0m [0m[PHY]   ULSCH received ok
+```
+
+- The eNB triggers the path switch procedure towards the MME, so that 
+the traffic can be routed now from the SGW towards the gNB on the S1-U 
+plane.
+
+***eNBlog.1691 :***
+```
+<S1AP-PDU>
+     <initiatingMessage>
+         <procedureCode>50</procedureCode>
+         <criticality><reject/></criticality>
+         <value>
+             <E-RABModificationIndication>
+                 <protocolIEs>
+                     <E-RABModificationIndicationIEs>
+                         <id>0</id>
+<criticality><reject/></criticality>
+                         <value>
+<MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                         </value>
+                     </E-RABModificationIndicationIEs>
+```
+
+
+Eventually, step **12. E-RAB Modification Confirmation** is successfully reached
+
+
+
+## Required tools for debug
+
+- **Wireshark** to trace X2AP and S1AP protocols  
+- **Ttracer** for 5G messages  
+- **GDB debugger** to check function calls  
+
+
+## Status of interoperability
+
+The following parts have been validated with FR1 COTS UE:
+
+- Phone accepts the configurtion provided by OAI eNB:  
+    this validates RRC and X2AP  
+
+- Successful Random Access Procedure:  
+    PRACH is correctly decoded at gNB  
+    Phone correctly receives and decodes msg2 (NR PDCCH Format 1_0 and NR PDSCH)  
+    msg3  is transmitted to gNB according to the configuration sent in msg2, and received correctly at gNB    
+
+- Successful path switch of user plane traffic from 4G to 5G cell (E-RAB modification message):  
+   this validates S1AP  
+
+- Downlink traffic:  
+    PDCCH DCI format 1_1 and correponding PDSCH are decoded correctlyby the phone  
+    ACK/NACK (PUCCH format 0) are successfully received at gNB  
+
+- On going:  
+    validation of HARQ procedures  
+    Integration with higher layers to replace dummy data with real traffic  
+    
+- Known limitations as of May 2020:  
+    only dummy DL traffic  
+    no UL traffic  
+    no end-to-end traffic possible  
+
+
diff --git a/doc/testing_gnb_w_cots_ue_resources/attach_signaling_scheme.jpg b/doc/testing_gnb_w_cots_ue_resources/attach_signaling_scheme.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..085c3f8d88ee1caefb2ff12674f3289f579da6aa
Binary files /dev/null and b/doc/testing_gnb_w_cots_ue_resources/attach_signaling_scheme.jpg differ
diff --git a/doc/testing_gnb_w_cots_ue_resources/enb.conf b/doc/testing_gnb_w_cots_ue_resources/enb.conf
new file mode 100755
index 0000000000000000000000000000000000000000..58e4e8687326568d2bae45d528c94bfd227c783c
--- /dev/null
+++ b/doc/testing_gnb_w_cots_ue_resources/enb.conf
@@ -0,0 +1,281 @@
+Active_eNBs = ( "eNB-Eurecom-LTEBox");
+# Asn1_verbosity, choice in: none, info, annoying
+Asn1_verbosity = "none";
+
+eNBs =
+(
+ {
+    # real_time choice in {hard, rt-preempt, no}
+    real_time       =  "no";
+    ////////// Identification parameters:
+    eNB_ID    =  0xe01;
+    
+    cell_type =  "CELL_MACRO_ENB";
+    
+    eNB_name  =  "eNB-Eurecom-LTEBox";
+    
+    // Tracking area code, 0x0000 and 0xfffe are reserved values
+    tracking_area_code  =  1;
+    plmn_list = (
+      { mcc = 222; mnc = 01; mnc_length = 2; }
+    );
+    
+    tr_s_preference     = "local_mac"
+
+       ////////// Physical parameters:
+  
+    component_carriers = (
+    		       	 {
+                           node_function = "eNodeB_3GPP";
+                           node_timing = "synch_to_ext_device";
+                           node_synch_ref = 0;
+                           nb_antenna_ports = 1;
+                           ue_TransmissionMode = 1;
+  			   frame_type					      = "FDD";	
+                           tdd_config 					      = 3;
+                           tdd_config_s            			      = 0;
+ 			   prefix_type             			      = "NORMAL";
+  			   eutra_band              			      = 7;
+                           downlink_frequency      			      = 2680000000L; //2655000000L;
+                           uplink_frequency_offset 			      = -120000000;
+  
+  			   Nid_cell					      = 0;
+                           N_RB_DL                 			      = 25; //100;
+                           Nid_cell_mbsfn          			      = 0;
+                           nb_antennas_tx          			      = 1;
+                           nb_antennas_rx          			      = 1; 
+                           prach_root              			      = 0;
+			   tx_gain                                            = 90;
+			   rx_gain                                            = 115;
+                           pbch_repetition                                    = "FALSE";
+                           prach_config_index      			      = 0;
+                           prach_high_speed        			      = "DISABLE";
+  	                   prach_zero_correlation  			      = 1;
+                           prach_freq_offset       			      = 2;
+			   pucch_delta_shift       			      = 1;
+                           pucch_nRB_CQI           			      = 0;
+                           pucch_nCS_AN            			      = 0;
+                           pucch_n1_AN             			      = 0;
+                           pdsch_referenceSignalPower 			      = -29;
+                           pdsch_p_b                  			      = 0;
+                           pusch_n_SB                 			      = 1; 
+                           pusch_enable64QAM          			      = "DISABLE";
+			   pusch_hoppingMode                                  = "interSubFrame";
+			   pusch_hoppingOffset                                = 0;
+     	                   pusch_groupHoppingEnabled  			      = "ENABLE";
+	                   pusch_groupAssignment      			      = 0;
+	                   pusch_sequenceHoppingEnabled		   	      = "DISABLE";
+	                   pusch_nDMRS1                                       = 1;
+	                   phich_duration                                     = "NORMAL";
+	                   phich_resource                                     = "ONESIXTH";
+	                   srs_enable                                         = "DISABLE";
+	               /*  srs_BandwidthConfig                                =;
+	                   srs_SubframeConfig                                 =;
+	                   srs_ackNackST                                      =;
+	                   srs_MaxUpPts                                       =;*/  
+
+	                   pusch_p0_Nominal                                   = -96;
+	                   pusch_alpha                                        = "AL1";
+	                   pucch_p0_Nominal                                   = -96;
+	                   msg3_delta_Preamble                                = 6;
+	                   pucch_deltaF_Format1                               = "deltaF2";
+	                   pucch_deltaF_Format1b                              = "deltaF3";
+	                   pucch_deltaF_Format2                               = "deltaF0";
+	                   pucch_deltaF_Format2a                              = "deltaF0";
+  	                   pucch_deltaF_Format2b		    	      = "deltaF0";
+	
+                           rach_numberOfRA_Preambles                          = 64;
+                           rach_preamblesGroupAConfig                         = "DISABLE";
+/*
+                           rach_sizeOfRA_PreamblesGroupA                      = ;
+                           rach_messageSizeGroupA                             = ;
+                           rach_messagePowerOffsetGroupB                      = ; 
+*/
+                           rach_powerRampingStep                              = 4;
+	                   rach_preambleInitialReceivedTargetPower            = -108;
+                           rach_preambleTransMax                              = 10;
+	                   rach_raResponseWindowSize                          = 10;
+	                   rach_macContentionResolutionTimer                  = 48;
+	                   rach_maxHARQ_Msg3Tx                                = 4;
+
+			   pcch_default_PagingCycle                           = 128;
+			   pcch_nB                                            = "oneT";
+			   bcch_modificationPeriodCoeff			      = 2;
+			   ue_TimersAndConstants_t300			      = 1000;
+			   ue_TimersAndConstants_t301			      = 1000;
+			   ue_TimersAndConstants_t310			      = 1000;
+			   ue_TimersAndConstants_t311			      = 10000;
+			   ue_TimersAndConstants_n310			      = 20;
+			   ue_TimersAndConstants_n311			      = 1;
+
+      //Parameters for SIB18
+      rxPool_sc_CP_Len                                       = "normal"; 
+      rxPool_sc_Period                                       = "sf40";  
+      rxPool_data_CP_Len                                     = "normal";  
+      rxPool_ResourceConfig_prb_Num                          = 20;
+      rxPool_ResourceConfig_prb_Start                        = 5;
+      rxPool_ResourceConfig_prb_End                          = 44;
+      rxPool_ResourceConfig_offsetIndicator_present          = "prSmall";
+      rxPool_ResourceConfig_offsetIndicator_choice           = 0;      
+      rxPool_ResourceConfig_subframeBitmap_present           = "prBs40";
+      rxPool_ResourceConfig_subframeBitmap_choice_bs_buf              = "00000000000000000000";
+      rxPool_ResourceConfig_subframeBitmap_choice_bs_size             = 5;
+      rxPool_ResourceConfig_subframeBitmap_choice_bs_bits_unused      = 0;
+/*    rxPool_dataHoppingConfig_hoppingParameter                       = 0;
+      rxPool_dataHoppingConfig_numSubbands                            = "ns1";
+      rxPool_dataHoppingConfig_rbOffset                               = 0;
+      rxPool_commTxResourceUC-ReqAllowed                              = "TRUE";
+*/    
+      // Parameters for SIB19
+      discRxPool_cp_Len                                               = "normal"
+      discRxPool_discPeriod                                           = "rf32"
+      discRxPool_numRetx                                              = 1;   
+      discRxPool_numRepetition                                        = 2;
+      discRxPool_ResourceConfig_prb_Num                               = 5;  
+      discRxPool_ResourceConfig_prb_Start                             = 3;
+      discRxPool_ResourceConfig_prb_End                               = 21;
+      discRxPool_ResourceConfig_offsetIndicator_present               = "prSmall";
+      discRxPool_ResourceConfig_offsetIndicator_choice                = 0;      
+      discRxPool_ResourceConfig_subframeBitmap_present                = "prBs40";
+      discRxPool_ResourceConfig_subframeBitmap_choice_bs_buf          = "f0ffffffff";
+      discRxPool_ResourceConfig_subframeBitmap_choice_bs_size         = 5;
+      discRxPool_ResourceConfig_subframeBitmap_choice_bs_bits_unused  = 0;
+
+			 }
+			 );
+
+    srb1_parameters :
+    {
+        # timer_poll_retransmit = (ms) [5, 10, 15, 20,... 250, 300, 350, ... 500]
+        timer_poll_retransmit    = 80;
+
+        # timer_reordering = (ms) [0,5, ... 100, 110, 120, ... ,200]
+        timer_reordering         = 35;
+
+        # timer_reordering = (ms) [0,5, ... 250, 300, 350, ... ,500]
+        timer_status_prohibit    = 0;
+
+        # poll_pdu = [4, 8, 16, 32 , 64, 128, 256, infinity(>10000)]
+        poll_pdu                 =  4;
+
+        # poll_byte = (kB) [25,50,75,100,125,250,375,500,750,1000,1250,1500,2000,3000,infinity(>10000)]
+        poll_byte                =  99999;
+
+        # max_retx_threshold = [1, 2, 3, 4 , 6, 8, 16, 32]
+        max_retx_threshold       =  4;
+    }
+
+    # ------- SCTP definitions
+    SCTP :
+    {
+        # Number of streams to use in input/output
+        SCTP_INSTREAMS  = 2;
+        SCTP_OUTSTREAMS = 2;
+    };
+
+    enable_measurement_reports = "yes";
+
+    ////////// MME parameters:
+    mme_ip_address      = ( { ipv4       = "192.168.18.99";
+                              ipv6       = "192:168:30::17";
+                              active     = "yes";
+                              preference = "ipv4";
+                            }
+                          );
+
+    ///X2
+    enable_x2 = "yes";
+    t_reloc_prep      = 1000;      /* unit: millisecond */
+    tx2_reloc_overall = 2000;      /* unit: millisecond */
+
+    NETWORK_INTERFACES : 
+    {
+        ENB_INTERFACE_NAME_FOR_S1_MME            = "eth1";
+        ENB_IPV4_ADDRESS_FOR_S1_MME              = "192.168.18.199/24";
+
+        ENB_INTERFACE_NAME_FOR_S1U               = "eth1";
+        ENB_IPV4_ADDRESS_FOR_S1U                 = "192.168.18.199/24";
+        ENB_PORT_FOR_S1U                         = 2152; # Spec 2152
+
+        ENB_IPV4_ADDRESS_FOR_X2C                 = "192.168.18.199/24";
+        ENB_PORT_FOR_X2C                         = 36422; # Spec 36422
+    };
+    
+    log_config : 
+    {
+	global_log_level                      ="info"; 
+    	global_log_verbosity                  ="high";
+	hw_log_level                          ="info"; 
+    	hw_log_verbosity                      ="medium";
+	phy_log_level                         ="info"; 
+    	phy_log_verbosity                     ="medium";
+	mac_log_level                         ="info"; 
+    	mac_log_verbosity                     ="high";
+	rlc_log_level                         ="debug"; 
+    	rlc_log_verbosity                     ="high";
+	pdcp_log_level                        ="info"; 
+    	pdcp_log_verbosity                    ="high";
+	rrc_log_level                         ="info"; 
+    	rrc_log_verbosity                     ="medium";
+   };	
+   
+  }
+);
+
+MACRLCs = (
+        {
+        num_cc = 1;
+        tr_s_preference = "local_L1";
+        tr_n_preference = "local_RRC";
+        phy_test_mode = 0;
+        puSch10xSnr     =  160;
+        puCch10xSnr     =  160;
+        }  
+);
+
+THREAD_STRUCT = (
+  {
+    parallel_config = "PARALLEL_RU_L1_TRX_SPLITaaaaaa";
+    worker_config = "ENABLE";
+  }
+);
+
+L1s = (
+        {
+        num_cc = 1;
+        tr_n_preference = "local_mac";
+        }  
+);
+
+RUs = (
+    {             
+       local_rf       = "yes"
+         nb_tx          = 1
+         nb_rx          = 1
+         att_tx         = 0
+         att_rx         = 0;
+         bands          = [7];
+         max_pdschReferenceSignalPower = -27;
+         max_rxgain                    = 118;
+         eNB_instances  = [0];
+
+    }
+);  
+
+    log_config : 
+    {
+	global_log_level                      ="info"; 
+    	global_log_verbosity                  ="high";
+	hw_log_level                          ="info"; 
+    	hw_log_verbosity                      ="medium";
+	phy_log_level                         ="info"; 
+    	phy_log_verbosity                     ="medium";
+	mac_log_level                         ="info"; 
+    	mac_log_verbosity                     ="high";
+	rlc_log_level                         ="info"; 
+    	rlc_log_verbosity                     ="high";
+	pdcp_log_level                        ="info"; 
+    	pdcp_log_verbosity                    ="high";
+	rrc_log_level                         ="info"; 
+    	rrc_log_verbosity                     ="medium";
+   };	
diff --git a/doc/testing_gnb_w_cots_ue_resources/gnb.conf b/doc/testing_gnb_w_cots_ue_resources/gnb.conf
new file mode 100755
index 0000000000000000000000000000000000000000..db8aef33ba6ea5dfb94a589596c3deba401eab3f
--- /dev/null
+++ b/doc/testing_gnb_w_cots_ue_resources/gnb.conf
@@ -0,0 +1,293 @@
+Active_gNBs = ( "gNB-Eurecom-5GNRBox");
+# Asn1_verbosity, choice in: none, info, annoying
+Asn1_verbosity = "none";
+
+gNBs =
+(
+ {
+    ////////// Identification parameters:
+    gNB_ID    =  0xe00;
+
+    cell_type =  "CELL_MACRO_GNB";
+
+    gNB_name  =  "gNB-Eurecom-5GNRBox";
+
+    // Tracking area code, 0x0000 and 0xfffe are reserved values
+    tracking_area_code  =  1;
+
+    plmn_list = ({mcc = 222; mnc = 01; mnc_length = 2;});	 
+
+    tr_s_preference     = "local_mac"
+
+    ////////// Physical parameters:
+
+    ssb_SubcarrierOffset                                      = 31; //0;
+    pdsch_AntennaPorts                                        = 1;
+	
+    servingCellConfigCommon = (
+    {
+ #spCellConfigCommon
+
+      physCellId                                                    = 0;
+
+#  downlinkConfigCommon
+    #frequencyInfoDL
+      # this is 3600 MHz + 84 PRBs@30kHz SCS (same as initial BWP)
+      absoluteFrequencySSB                                          = 641272; //641032;      #641968; 641968=start of ssb at 3600MHz + 82 RBs    641032=center of SSB at center of cell
+      dl_frequencyBand                                                 = 78;
+      # this is 3600 MHz
+      dl_absoluteFrequencyPointA                                       = 640000;
+      #scs-SpecificCarrierList
+        dl_offstToCarrier                                              = 0;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        dl_subcarrierSpacing                                           = 1;
+        dl_carrierBandwidth                                            = 106;
+     #initialDownlinkBWP
+      #genericParameters
+        # this is RBstart=84,L=13 (275*(L-1))+RBstart
+        initialDLBWPlocationAndBandwidth                                        = 6366; //28875; //6366; #6407; #3384;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        initialDLBWPsubcarrierSpacing                                           = 1;
+      #pdcch-ConfigCommon
+        initialDLBWPcontrolResourceSetZero                                      = 0;
+        initialDLBWPsearchSpaceZero                                             = 0;
+      #pdsch-ConfigCommon
+        #pdschTimeDomainAllocationList (up to 16 entries)
+             initialDLBWPk0_0                    = 0;
+             #initialULBWPmappingType
+	     #0=typeA,1=typeB
+             initialDLBWPmappingType_0           = 0;
+             #this is SS=1,L=13
+             initialDLBWPstartSymbolAndLength_0  = 40;
+
+             initialDLBWPk0_1                    = 0;
+             initialDLBWPmappingType_1           = 0;
+             #this is SS=2,L=12 
+             initialDLBWPstartSymbolAndLength_1  = 53;
+
+             initialDLBWPk0_2                    = 0;
+             initialDLBWPmappingType_2           = 0;
+             #this is SS=1,L=12 
+             initialDLBWPstartSymbolAndLength_2  = 54;
+
+             initialDLBWPk0_3                    = 0;
+             initialDLBWPmappingType_3           = 0;
+             #this is SS=1,L=4 //5 (4 is for 43, 5 is for 57)
+             initialDLBWPstartSymbolAndLength_3  = 57; //43; //57;
+  #uplinkConfigCommon 
+     #frequencyInfoUL
+      ul_frequencyBand                                                 = 78;
+      #scs-SpecificCarrierList
+      ul_offstToCarrier                                              = 0;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      ul_subcarrierSpacing                                           = 1;
+      ul_carrierBandwidth                                            = 106;
+      pMax                                                          = 20;
+     #initialUplinkBWP
+      #genericParameters
+        initialULBWPlocationAndBandwidth                                        = 6366; //28875; //6366; #6407; #3384;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        initialULBWPsubcarrierSpacing                                           = 1;
+      #rach-ConfigCommon
+        #rach-ConfigGeneric
+          prach_ConfigurationIndex                                  = 98;
+#prach_msg1_FDM
+#0 = one, 1=two, 2=four, 3=eight
+          prach_msg1_FDM                                            = 0;
+          prach_msg1_FrequencyStart                                 = 0;
+          zeroCorrelationZoneConfig                                 = 13;
+          preambleReceivedTargetPower                               = -118;
+#preamblTransMax (0...10) = (3,4,5,6,7,8,10,20,50,100,200)
+          preambleTransMax                                          = 6;
+#powerRampingStep
+# 0=dB0,1=dB2,2=dB4,3=dB6
+        powerRampingStep                                            = 1;
+#ra_ReponseWindow
+#1,2,4,8,10,20,40,80
+        ra_ResponseWindow                                           = 5;
+#ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR
+#1=oneeighth,2=onefourth,3=half,4=one,5=two,6=four,7=eight,8=sixteen
+        ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR                = 4;
+#oneHalf (0..15) 4,8,12,16,...60,64
+        ssb_perRACH_OccasionAndCB_PreamblesPerSSB                   = 14; //15;
+#ra_ContentionResolutionTimer
+#(0..7) 8,16,24,32,40,48,56,64
+        ra_ContentionResolutionTimer                                = 7;
+        rsrp_ThresholdSSB                                           = 19;
+#prach-RootSequenceIndex_PR
+#1 = 839, 2 = 139
+        prach_RootSequenceIndex_PR                                  = 2;
+        prach_RootSequenceIndex                                     = 1;
+        # SCS for msg1, can only be 15 for 30 kHz < 6 GHz, takes precendence over the one derived from prach-ConfigIndex
+        #  
+        msg1_SubcarrierSpacing                                      = 1,
+
+# restrictedSetConfig
+# 0=unrestricted, 1=restricted type A, 2=restricted type B
+        restrictedSetConfig                                         = 0,
+      # pusch-ConfigCommon (up to 16 elements)
+        initialULBWPk2_0                      = 2;
+        initialULBWPmappingType_0             = 1
+        # this is SS=0 L=11
+        initialULBWPstartSymbolAndLength_0    = 55;
+ 	
+	initialULBWPk2_1                      = 2;
+        initialULBWPmappingType_1             = 1;
+        # this is SS=0 L=12
+        initialULBWPstartSymbolAndLength_1    = 69;
+
+        initialULBWPk2_2                      = 7;
+        initialULBWPmappingType_2             = 1;
+        # this is SS=10 L=4
+        initialULBWPstartSymbolAndLength_2    = 52;
+
+        msg3_DeltaPreamble                                          = 1;
+        p0_NominalWithGrant                                         =-90;
+
+# pucch-ConfigCommon setup :
+# pucchGroupHopping
+# 0 = neither, 1= group hopping, 2=sequence hopping
+        pucchGroupHopping                                           = 0;
+        hoppingId                                                   = 40;
+        p0_nominal                                                  = -90;
+# ssb_PositionsInBurs_BitmapPR
+# 1=short, 2=medium, 3=long
+      ssb_PositionsInBurst_PR                                       = 2;
+      ssb_PositionsInBurst_Bitmap                                   = 1; #0x80;
+
+# ssb_periodicityServingCell
+# 0 = ms5, 1=ms10, 2=ms20, 3=ms40, 4=ms80, 5=ms160, 6=spare2, 7=spare1 
+      ssb_periodicityServingCell                                    = 2;
+
+# dmrs_TypeA_position
+# 0 = pos2, 1 = pos3
+      dmrs_TypeA_Position                                           = 0;
+
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      subcarrierSpacing                                             = 1;
+
+
+  #tdd-UL-DL-ConfigurationCommon
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      referenceSubcarrierSpacing                                    = 1;
+      # pattern1 
+      # dl_UL_TransmissionPeriodicity
+      # 0=ms0p5, 1=ms0p625, 2=ms1, 3=ms1p25, 4=ms2, 5=ms2p5, 6=ms5, 7=ms10
+      dl_UL_TransmissionPeriodicity                                 = 6;
+      nrofDownlinkSlots                                             = 7; //8; //7;
+      nrofDownlinkSymbols                                           = 6; //0; //6;
+      nrofUplinkSlots                                               = 2;
+      nrofUplinkSymbols                                             = 4; //0; //4;
+
+  ssPBCH_BlockPower                                             = 10;
+  }
+
+  );
+
+
+    # ------- SCTP definitions
+    SCTP :
+    {
+        # Number of streams to use in input/output
+        SCTP_INSTREAMS  = 2;
+        SCTP_OUTSTREAMS = 2;
+    };
+
+
+    ////////// MME parameters:
+    mme_ip_address      = ( { ipv4       = "192.168.18.99";
+                              ipv6       = "192:168:30::17";
+                              active     = "yes";
+                              preference = "ipv4";
+                            }
+                          );
+
+    ///X2
+    enable_x2 = "yes";
+    t_reloc_prep      = 1000;      /* unit: millisecond */
+    tx2_reloc_overall = 2000;      /* unit: millisecond */
+    target_enb_x2_ip_address      = (
+                                     { ipv4       = "192.168.18.199";
+                                       ipv6       = "192:168:30::17";
+                                       preference = "ipv4";
+                                     }
+                                    );
+
+    NETWORK_INTERFACES :
+    {
+
+        GNB_INTERFACE_NAME_FOR_S1_MME            = "eth0";
+        GNB_IPV4_ADDRESS_FOR_S1_MME              = "192.168.18.198/24";
+        GNB_INTERFACE_NAME_FOR_S1U               = "eth0";
+        GNB_IPV4_ADDRESS_FOR_S1U                 = "192.168.18.198/24";
+        GNB_PORT_FOR_S1U                         = 2152; # Spec 2152
+        GNB_IPV4_ADDRESS_FOR_X2C                 = "192.168.18.198/24";
+        GNB_PORT_FOR_X2C                         = 36422; # Spec 36422
+    };
+  }
+);
+
+MACRLCs = (
+	{
+	num_cc = 1;
+	tr_s_preference = "local_L1";
+	tr_n_preference = "local_RRC";
+        }  
+);
+
+L1s = (
+    	{
+	num_cc = 1;
+	tr_n_preference = "local_mac";
+        }  
+);
+
+RUs = (
+    {		  
+       local_rf       = "yes"
+         nb_tx          = 1
+         nb_rx          = 1
+         att_tx         = 0
+         att_rx         = 0;
+         bands          = [7];
+         max_pdschReferenceSignalPower = -27;
+         max_rxgain                    = 114;
+         eNB_instances  = [0];
+         clock_src = "internal";
+    }
+);  
+
+THREAD_STRUCT = (
+  {
+    #three config for level of parallelism "PARALLEL_SINGLE_THREAD", "PARALLEL_RU_L1_SPLIT", or "PARALLEL_RU_L1_TRX_SPLIT"
+    //parallel_config    = "PARALLEL_RU_L1_TRX_SPLIT";
+    parallel_config    = "PARALLEL_SINGLE_THREAD";
+    #two option for worker "WORKER_DISABLE" or "WORKER_ENABLE"
+    worker_config      = "WORKER_ENABLE";
+  }
+);
+
+     log_config :
+     {
+       global_log_level                      ="info";
+       global_log_verbosity                  ="medium";
+       hw_log_level                          ="info";
+       hw_log_verbosity                      ="medium";
+       phy_log_level                         ="info";
+       phy_log_verbosity                     ="medium";
+       mac_log_level                         ="info";
+       mac_log_verbosity                     ="high";
+       rlc_log_level                         ="info";
+       rlc_log_verbosity                     ="medium";
+       pdcp_log_level                        ="info";
+       pdcp_log_verbosity                    ="medium";
+       rrc_log_level                         ="info";
+       rrc_log_verbosity                     ="medium";
+    };
+
diff --git a/doc/testing_gnb_w_cots_ue_resources/oai_enb.log b/doc/testing_gnb_w_cots_ue_resources/oai_enb.log
new file mode 100755
index 0000000000000000000000000000000000000000..9b9de24a86e8e29de56ba06007d1cdfc0c833843
--- /dev/null
+++ b/doc/testing_gnb_w_cots_ue_resources/oai_enb.log
@@ -0,0 +1,1912 @@
+[CONFIG] get parameters from libconfig ../../../targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.minimassive.master.conf , debug flags: 0x00000000
+[CONFIG] function config_libconfig_init returned 0
+[CONFIG] config module libconfig loaded
+[LIBCONFIG] config: 1/1 parameters successfully set, (1 to default value)
+# /dev/cpu_dma_latency set to 0us
+[LIBCONFIG] log_config: 3/3 parameters successfully set, (1 to default value)
+[LIBCONFIG] log_config: 52/52 parameters successfully set, (46 to default value)
+[LIBCONFIG] log_config: 52/52 parameters successfully set, (52 to default value)
+[LIBCONFIG] log_config: 15/15 parameters successfully set, (15 to default value)
+[LIBCONFIG] log_config: 15/15 parameters successfully set, (15 to default value)
+log init done
+Reading in command-line options
+[LIBCONFIG] (root): 23/23 parameters successfully set, (19 to default value)
+[LIBCONFIG] (root): 5/5 parameters successfully set, (4 to default value)
+Getting ENBSParams
+[LIBCONFIG] (root): 3/3 parameters successfully set, (1 to default value)
+[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value)
+[ENB_APP]   Impossible value: PARALLEL_RU_L1_TRX_SPLITaaaaaa
+[CONFIG] parallel_conf is set to 0
+[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value)
+[ENB_APP]   Impossible value: ENABLE
+[CONFIG] worker_conf is set to 0
+Configuration: nb_rrc_inst 1, nb_L1_inst 1, nb_ru 1
+[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value)
+[LIBCONFIG] loader.NB_IoT: 2/2 parameters successfully set, (1 to default value)
+               nb_nbiot_rrc_inst 0, nb_nbiot_L1_inst 0, nb_nbiot_macrlc_inst 0
+[LIBCONFIG] TTracer: 4/4 parameters successfully set, (4 to default value)
+configuring for RAU/RRU
+CPU Freq is 2.992899 
+ITTI init, useMME: 1
+[TMR]   Starting itti queue: TASK_UNKNOWN as task 0
+[TMR]   Starting itti queue: TASK_TIMER as task 1
+[TMR]   Starting itti queue: TASK_L2L1 as task 2
+[TMR]   Starting itti queue: TASK_BM as task 3
+[TMR]   Starting itti queue: TASK_PHY_ENB as task 4
+[TMR]   Starting itti queue: TASK_MAC_ENB as task 5
+[TMR]   Starting itti queue: TASK_RLC_ENB as task 6
+[TMR]   Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7
+[TMR]   Starting itti queue: TASK_PDCP_ENB as task 8
+[TMR]   Starting itti queue: TASK_DATA_FORWARDING as task 9
+[TMR]   Starting itti queue: TASK_END_MARKER as task 10
+[TMR]   Starting itti queue: TASK_RRC_ENB as task 11
+[TMR]   Starting itti queue: TASK_RRC_GNB as task 12
+[TMR]   Starting itti queue: TASK_RAL_ENB as task 13
+[TMR]   Starting itti queue: TASK_S1AP as task 14
+[TMR]   Starting itti queue: TASK_X2AP as task 15
+[TMR]   Starting itti queue: TASK_M2AP_ENB as task 16
+[TMR]   Starting itti queue: TASK_M2AP_MCE as task 17
+[TMR]   Starting itti queue: TASK_M3AP as task 18
+[TMR]   Starting itti queue: TASK_M3AP_MME as task 19
+[TMR]   Starting itti queue: TASK_M3AP_MCE as task 20
+[TMR]   Starting itti queue: TASK_SCTP as task 21
+[TMR]   Starting itti queue: TASK_ENB_APP as task 22
+[TMR]   Starting itti queue: TASK_GNB_APP as task 23
+[TMR]   Starting itti queue: TASK_MCE_APP as task 24
+[TMR]   Starting itti queue: TASK_MME_APP as task 25
+[TMR]   Starting itti queue: TASK_FLEXRAN_AGENT as task 26
+[TMR]   Starting itti queue: TASK_PHY_UE as task 27
+[TMR]   Starting itti queue: TASK_MAC_UE as task 28
+[TMR]   Starting itti queue: TASK_RLC_UE as task 29
+[TMR]   Starting itti queue: TASK_PDCP_UE as task 30
+[TMR]   Starting itti queue: TASK_RRC_UE as task 31
+[TMR]   Starting itti queue: TASK_NAS_UE as task 32
+[TMR]   Starting itti queue: TASK_RAL_UE as task 33
+[TMR]   Starting itti queue: TASK_MSC as task 34
+[TMR]   Starting itti queue: TASK_GTPV1_U as task 35
+[TMR]   Starting itti queue: TASK_UDP as task 36
+[TMR]   Starting itti queue: TASK_CU_F1 as task 37
+[TMR]   Starting itti queue: TASK_DU_F1 as task 38
+[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value)
+[OPT]   OPT disabled
+reported resolution = 1 ns
+[HW]   Version: Branch: NR_RRC_harq_hacks Abrev. Hash: 94fa9c5 Date: Fri Jun 19 18:16:53 2020 +0200
+Runtime table
+[PHY]   RC.eNB = 0x2b10b70
+[LIBCONFIG] L1s.[0]: 24/24 parameters successfully set, (22 to default value)
+[PHY]   RC.eNB[0] = 0x2b10c20
+[PHY]   RC.eNB[0][0] = 0x7f9fab347010
+[ENB_APP]   Initializing northbound interface for L1
+[PHY]   l1_north_init_eNB() RC.nb_L1_inst:1
+[PHY]   l1_north_init_eNB() RC.nb_L1_CC[0]:1
+[PHY]   l1_north_init_eNB() RC.eNB[0][0] installing callbacks
+[PHY]   read_config_and_init() RC.nb_L1_inst: 1
+[LIBCONFIG] MACRLCs.[0]: 20/20 parameters successfully set, (15 to default value)
+[LIBCONFIG] MACRLCs.[0]: 20/20 parameters successfully set, (15 to default value)
+[MAC]   [MAIN] Init function start:nb_macrlc_inst=1
+[PDCP]   PDCP layer has been initialized
+Configuring local RRC for MACRLC
+[ENB_APP]   sched mode = default 0 [default]
+[MAC]   read_config_and_init() RC.nb_macrlc_inst: 1
+[PHY]   l1_north_init_eNB() RC.nb_L1_inst:1
+[PHY]   l1_north_init_eNB() RC.nb_L1_CC[0]:1
+[PHY]   l1_north_init_eNB() RC.eNB[0][0] installing callbacks
+[LIBCONFIG] (root): 3/3 parameters successfully set, (1 to default value)
+[LIBCONFIG] eNBs.[0]: 20/20 parameters successfully set, (11 to default value)
+[RRC]   Instance 0: Southbound Transport local_mac
+[RRC]   Setting node_type to ngran_eNB
+[LIBCONFIG] eNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value)
+[RRC]   num component carriers 1 
+[RRC]   enb_config::RCconfig_RRC() parameter number: 0, total number of parameters: 78, ccspath: eNBs.[0].component_carriers.[0] 
+ 
+[LIBCONFIG] eNBs.[0].component_carriers.[0]: 78/78 parameters successfully set, (17 to default value)
+phich.resource 0 (ONESIXTH), phich.duration 0 (NORMAL)
+No eMBMS configuration, skipping it
+[LIBCONFIG] eNBs.[0].component_carriers.[0].emtc_parameters: 88/88 parameters successfully set, (88 to default value)
+No eMTC configuration, skipping it
+[LIBCONFIG] eNBs.[0].component_carriers.[0].SLparameters: 39/39 parameters successfully set, (39 to default value)
+No SL configuration skipping it
+[LIBCONFIG] eNBs.[0].srb1_parameters: 6/6 parameters successfully set, (0 to default value)
+[RRC]   Node type 0 
+ [LIBCONFIG] (root): 3/3 parameters successfully set, (1 to default value)
+[LIBCONFIG] NETWORK_CONTROLLER: 6/6 parameters successfully set, (6 to default value)
+[LIBCONFIG] RUs.[0]: 27/27 parameters successfully set, (18 to default value)
+Creating RC.ru[0]:0x2b41780
+Setting function for RU 0 to eNodeB_3GPP
+[PHY]   number of L1 instances 1, number of RU 1, number of CPU cores 4
+[FLEXRAN_AGENT]   FlexRAN Agent for eNB 0 is DISABLED
+[PDCP]   PDCP layer has been initialized
+[PDCP]   pdcp init,usegtp 
+[PDCP]   ENB pdcp will use tun interface for MBMS
+[NETLINK]Opened socket oaitun_enm1 with fd 84
+returnValue 0
+returnValue 0
+returnValue 0
+[OIP]   Interface oaitun_enm1 successfully configured, ip address 10.0.2.1, mask 255.255.255.0 broadcast address 10.0.2.255
+[ENB_APP]   Creating ENB_APP eNB Task
+[TMR]   Created Posix thread TASK_ENB_APP
+[RRC]   Creating RRC eNB Task
+[LIBCONFIG] (root): 3/3 parameters successfully set, (1 to default value)
+[TMR]   Created Posix thread TASK_RRC_ENB
+[LIBCONFIG] eNBs.[0]: 20/20 parameters successfully set, (11 to default value)
+[TMR]   Created Posix thread TASK_SCTP
+[RRC]   Entering main loop of RRC message task
+[LIBCONFIG] eNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value)
+[TMR]   Created Posix thread TASK_S1AP
+[TMR]   Created Posix thread TASK_UDP
+[SCTP]   Starting SCTP layer
+[S1AP]   Starting S1AP layer
+[UDP]   Initializing UDP task interface
+[UDP]   Initializing UDP task interface: DONE
+[LIBCONFIG] eNBs.[0].component_carriers.[0]: 78/78 parameters successfully set, (17 to default value)
+[LIBCONFIG] eNBs.[0].mme_ip_address.[0]: 5/5 parameters successfully set, (0 to default value)
+[LIBCONFIG] eNBs.[0].SCTP: 2/2 parameters successfully set, (0 to default value)
+[LIBCONFIG] eNBs.[0].NETWORK_INTERFACES: 11/11 parameters successfully set, (2 to default value)
+[TMR]   Created Posix thread TASK_GTPV1_U
+[GTPV1U]   Configuring GTPu
+[LIBCONFIG] (root): 3/3 parameters successfully set, (1 to default value)
+[LIBCONFIG] eNBs.[0]: 1/1 parameters successfully set, (0 to default value)
+[LIBCONFIG] gNBs.[0]: 1/1 parameters successfully set, (1 to default value)
+[LIBCONFIG] eNBs.[0].NETWORK_INTERFACES: 3/3 parameters successfully set, (0 to default value)
+[GTPV1U]   Configuring GTPu address : 192.168.18.199 -> c712a8c0
+[ENB_APP]   default drx 2
+[ENB_APP]   [eNB 0] eNB_app_register via S1AP for instance 0
+[LIBCONFIG] (root): 3/3 parameters successfully set, (1 to default value)
+[GTPV1U]   Initializing GTPU stack 0x16968b0
+[LIBCONFIG] eNBs.[0]: 20/20 parameters successfully set, (11 to default value)
+[LIBCONFIG] eNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value)
+[S1AP]   Registered new eNB[0] and macro eNB id 3585
+[S1AP]   [eNB 0] check the mme registration state
+[GTPV1U]   Tx UDP_INIT IP addr 192.168.18.199 (868)
+[UDP]   Initializing UDP for local address 192.168.18.199 with port 2152
+[TMR]   Created Posix thread TASK_X2AP
+[MAC]   Creating MAC eNB Task
+[LIBCONFIG] eNBs.[0].component_carriers.[0]: 78/78 parameters successfully set, (17 to default value)
+[LIBCONFIG] list eNBs.[0].target_enb_x2_ip_address not found in config file ../../../targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.minimassive.master.conf 
+[LIBCONFIG] eNBs.[0]: 2/2 parameters successfully set, (0 to default value)
+[LIBCONFIG] eNBs.[0].SCTP: 2/2 parameters successfully set, (0 to default value)
+[UDP]   Inserting new descriptor for task 35, sd 85
+[LIBCONFIG] eNBs.[0].NETWORK_INTERFACES: 11/11 parameters successfully set, (2 to default value)
+[UDP]   Initializing UDP for local address 192.168.18.199 with port 2152: DONE
+[MAC]   Starting main loop of MAC message task
+[LIBCONFIG] eNBs.[0]: 1/1 parameters successfully set, (1 to default value)
+[SCTP]   sctp_bindx SCTP_BINDX_ADD_ADDR socket bound to : 192.168.18.199
+[X2AP]   Registered new eNB[0] and macro eNB id 3585
+[X2AP]   eNB[0] eNB id 3585 acting as a listner (server)
+[TMR]   Created Posix thread TASK_MAC_ENB
+[SCTP]   Converted ipv4 address 192.168.18.99 to network type
+[RRC]   [eNB 0] Received RRC_CONFIGURATION_REQ : 0x2b4a80c
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 0] Init...
+[SCTP]   connectx assoc_id  903 in progress..., used 1 addresses
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 0] Checking release 
+[SCTP]   Inserted new descriptor for sd 86 in list, nb elements 1, assoc_id 903
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 0] Rel14 RRC detected, MBMS flag 0
+[SCTP]   Received SCTP_INIT_MSG_MULTI_REQ
+[RRC]   [eNB 0] Node type 0 
+ [SCTP]   Creating new listen socket on port 36422 with
+[SCTP]   ipv4 addresses:
+[SCTP]   	- 192.168.18.199
+[RRC]   configuration->schedulingInfoSIB1_BR_r13[CC_id] 0
+[RRC]   Configuring MIB (N_RB_DL 25,phich_Resource 0,phich_Duration 0)
+[RRC]   [MIB] systemBandwidth 2, phich_duration 0, phich_resource 0, sfn 0
+[RRC]   [MIB] schedulingInfoSIB1 0
+[RRC]   [eNB 0] Configuration SIB2/3, eMBMS = 0
+[RRC]   do_SIB23, size 38 
+ [MAC]   Configuring MIB for instance 0, CCid 0 : (band 7,N_RB_DL 25,Nid_cell 0,p 1,DL freq 2680000000,phich_config.resource 0, phich_config.duration 0)
+[MAC]   config_mib() NFAPI_CONFIG_REQUEST(num_tlv:16) DL_BW:25 UL_BW:25 Ncp 0,p_eNB 1,earfcn 3350,band 7,phich_resource 0 phich_duration 0 phich_power_offset 6000 PSS 6000 SSS 6000 PCI 0 PBCH repetition 0
+[MAC]   [CONFIG]SIB2/3 Contents (partial)
+[MAC]   [CONFIG]pusch_config_common.n_SB = 1
+[MAC]   [CONFIG]pusch_config_common.hoppingMode = 0
+[MAC]   [CONFIG]pusch_config_common.pusch_HoppingOffset = 0
+[MAC]   [CONFIG]pusch_config_common.enable64QAM = 0
+[MAC]   [CONFIG]pusch_config_common.groupHoppingEnabled = 1
+[MAC]   [CONFIG]pusch_config_common.groupAssignmentPUSCH = 0
+[MAC]   [CONFIG]pusch_config_common.sequenceHoppingEnabled = 0
+[MAC]   [CONFIG]pusch_config_common.cyclicShift  = 1
+[PHY]   Configuring MIB for instance 0, CCid 0 : (band 7,N_RB_DL 25, N_RB_UL 25, Nid_cell 0,eNB_tx_antenna_ports 1,Ncp 0,DL freq 3350,phich_config.resource 0, phich_config.duration 0)
+[PHY]   Initializing frame parms for N_RB_DL 25, Ncp 0, osf 1
+[PHY]   lte_parms.c: Setting N_RB_DL to 25, ofdm_symbol_size 512
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32769
+[SCTP]   Client association changed: 0
+[SCTP]   ----------------------
+[SCTP]   Peer addresses:
+[SCTP]       - [192.168.18.99]
+[SCTP]   ----------------------
+[SCTP]   ----------------------
+[SCTP]   SCTP Status:
+[SCTP]   assoc id .....: 903
+[SCTP]   state ........: 4
+[SCTP]   instrms ......: 2
+[SCTP]   outstrms .....: 2
+[SCTP]   fragmentation : 1452
+[SCTP]   pending data .: 0
+[SCTP]   unack data ...: 0
+[SCTP]   rwnd .........: 106496
+[SCTP]   peer info     :
+[SCTP]       state ....: 2
+[SCTP]       cwnd .....: 4380
+[SCTP]       srtt .....: 0
+[SCTP]       rto ......: 3000
+[SCTP]       mtu ......: 1500
+[SCTP]   ----------------------
+[SCTP]   Comm up notified for sd 86, assigned assoc_id 903
+[S1AP]   3585 -> 00e010
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>17</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <S1SetupRequest>
+                <protocolIEs>
+                    <S1SetupRequestIEs>
+                        <id>59</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <Global-ENB-ID>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <eNB-ID>
+                                    <macroENB-ID>
+                                        00000000111000000001
+                                    </macroENB-ID>
+                                </eNB-ID>
+                            </Global-ENB-ID>
+                        </value>
+                    </S1SetupRequestIEs>
+                    <S1SetupRequestIEs>
+                        <id>60</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <ENBname>eNB-Eurecom-LTEBox</ENBname>
+                        </value>
+                    </S1SetupRequestIEs>
+                    <S1SetupRequestIEs>
+                        <id>64</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <SupportedTAs>
+                                <SupportedTAs-Item>
+                                    <tAC>00 01</tAC>
+                                    <broadcastPLMNs>
+                                        <PLMNidentity>22 F2 10</PLMNidentity>
+                                    </broadcastPLMNs>
+                                </SupportedTAs-Item>
+                            </SupportedTAs>
+                        </value>
+                    </S1SetupRequestIEs>
+                    <S1SetupRequestIEs>
+                        <id>137</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <PagingDRX><v128/></PagingDRX>
+                        </value>
+                    </S1SetupRequestIEs>
+                </protocolIEs>
+            </S1SetupRequest>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 59 bytes on stream 0 for assoc_id 903
+[LIBCONFIG] loader.coding: 2/2 parameters successfully set, (1 to default value)
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 58 received from port 36412, on stream 0, PPID 18
+[S1AP]   servedGUMMEIs.list.count 3
+[S1AP]   servedPLMNs.list.count 1
+[S1AP]   servedPLMNs.list.count 1
+[S1AP]   servedPLMNs.list.count 1
+[ENB_APP]   [eNB 0] Received S1AP_REGISTER_ENB_CNF: associated MME 1
+[LOADER] library libcoding.so successfully loaded
+[PHY]   prach_config_common.rootSequenceIndex = 0
+[PHY]   prach_config_common.prach_ConfigInfo.prach_ConfigIndex = 0
+[PHY]   prach_config_common.prach_ConfigInfo.highSpeedFlag = 0
+[PHY]   prach_config_common.prach_ConfigInfo.zeroCorrelationZoneConfig = 1
+[PHY]   prach_config_common.prach_ConfigInfo.prach_FreqOffset = 2
+[PHY]   pusch_config_common.n_SB = 1
+[PHY]   pusch_config_common.hoppingMode = 0
+[PHY]   pusch_config_common.pusch_HoppingOffset = 0
+[PHY]   pusch_config_common.enable64QAM = 0
+[PHY]   pusch_config_common.ul_ReferenceSignalsPUSCH.groupHoppingEnabled = 1
+[PHY]   pusch_config_common.ul_ReferenceSignalsPUSCH.groupAssignmentPUSCH = 0
+[PHY]   pusch_config_common.ul_ReferenceSignalsPUSCH.sequenceHoppingEnabled = 0
+[PHY]   pusch_config_common.ul_ReferenceSignalsPUSCH.cyclicShift = 2
+[PHY]   eNB 0/0 configured
+[RRC]   [eNB] handover active state is 0 
+[RRC]   [eNB] eMBMS active state is 0 
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 0] ENB:OPENAIR RRC IN....
+[ENB_APP]   START MAIN THREADS
+RC.nb_L1_inst:1
+Initializing eNB threads single_thread_flag:0 wait_for_sync:0
+[PHY]   [lte-softmodem.c] eNB structure about to allocated RC.nb_L1_inst:1 RC.nb_L1_CC[0]:1
+[PHY]   [lte-softmodem.c] eNB structure RC.eNB allocated
+[PHY]   Initializing eNB 0 CC_id 0 single_thread_flag:0
+[PHY]   Initializing eNB 0 CC_id 0
+[PHY]   Registering with MAC interface module
+[PHY]   Setting indication lists
+[PHY]   [lte-softmodem.c] eNB structure allocated
+wait_eNBs()
+Waiting for eNB L1 instances to all get configured ... sleeping 50ms (nb_L1_inst 1)
+RC.nb_L1_CC[0]:1
+eNB L1 are configured
+About to Init RU threads RC.nb_RU:1
+Initializing RU threads
+[PHY]   DJP - delete code above this /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/targets/RT/USER/lte-ru.c:2739
+[PHY]   Copying frame parms from eNB 0 to ru 0
+[PHY]   Initializing RRU descriptor 0 : (local RF,synch_to_ext_device,0)
+configuring ru_id 0 (start_rf 0x5b1a00)
+[PHY]   Starting ru_thread 0, is_slave 0, send_dmrs 0
+[PHY]   Initializing RU proc 0 (eNodeB_3GPP,synch_to_ext_device),
+[PHY]   init_RU_proc() DJP - added creation of pthread_prach
+[HW]   thread_top_init() called with affinity>0, but overruled by #ifndef CPU_AFFINITY.
+[HW]   [SCHED][eNB] ru_thread started on CPU 1, sched_policy = SCHED_FIFO , priority = 99, CPU Affinity= CPU_0 CPU_1 CPU_2 CPU_3 
+[PHY]   thread ru created id=7295
+[PHY]   Starting RU 0 (eNodeB_3GPP,synch_to_ext_device),
+waiting for sync (ru_thread,-1/0xff4968,0x17af520,0x16952a0)
+channel 0, Setting tx_gain offset 0.000000, rx_gain offset 118.000000, tx_freq 2680000000.000000, rx_freq 2560000000.000000
+[HW]   thread_top_init() called with affinity>0, but overruled by #ifndef CPU_AFFINITY.
+[PHY]   Initializing frame parms for N_RB_DL 25, Ncp 0, osf 1
+[PHY]   lte_parms.c: Setting N_RB_DL to 25, ofdm_symbol_size 512
+[PHY]   Initializing RU signal buffers (if_south local RF) nb_tx 1
+[HW]   [SCHED][eNB] ru_thread_prach started on CPU 2, sched_policy = SCHED_FIFO , priority = 99, CPU Affinity= CPU_0 CPU_1 CPU_2 CPU_3 
+[PHY]   [INIT] common.txdata[0] = 0x7f9fafc66010 (307200 bytes)
+[PHY]   ru_thread_prach() RU configured - RACH processing thread running
+[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value)
+[LOADER] library libdfts.so successfully loaded
+[PHY]   nb_tx 1
+[PHY]   rxdata_7_5kHz[0] 0x2b9c1c0 for RU 0
+[PHY]   [INIT] common.txdata_BF= 0x2b4ae80 (8 bytes)
+[PHY]   txdataF_BF[0] 0x2bba1e0 for RU 0
+[PHY]   rxdataF[0] 0x2bc1200 for RU 0
+[LIBCONFIG] device.recplay: 7/7 parameters successfully set, (7 to default value)
+[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value)
+[LIBCONFIG] loader.oai_device: 2/2 parameters successfully set, (1 to default value)
+[LOADER] library liboai_device.so successfully loaded
+[HW]   UHD version 3.13.0.HEAD-0-g0ddc19e5 (3.13.0)
+[HW]   Found USRP b200
+Found USRP b200
+[HW]   Clock source set neither in usrp_args nor on command line, using default!
+[HW]   Time source set neither in usrp_args nor on command line, using default!
+[SCTP]   Found data for descriptor 87
+[SCTP]   Received notification for sd 87, type 32769
+[SCTP]   Client association changed: 0
+[SCTP]   Comm up notified for sd 87, assigned assoc_id 904
+[SCTP]   ----------------------
+[SCTP]   SCTP Status:
+[SCTP]   assoc id .....: 904
+[SCTP]   state ........: 4
+[SCTP]   instrms ......: 32
+[SCTP]   outstrms .....: 32
+[SCTP]   fragmentation : 1452
+[SCTP]   pending data .: 0
+[SCTP]   unack data ...: 0
+[SCTP]   rwnd .........: 106496
+[SCTP]   peer info     :
+[SCTP]       state ....: 2
+[SCTP]       cwnd .....: 4380
+[SCTP]       srtt .....: 0
+[SCTP]       rto ......: 3000
+[SCTP]       mtu ......: 1500
+[SCTP]   ----------------------
+x2ap_eNB_handle_sctp_association_ind at 1 (called for instance 0)
+here comes the tree (instance 0):
+---------------------------------------------
+---------------------------------------------
+x2ap_eNB_handle_sctp_association_ind at 2
+here comes the tree (instance 0):
+---------------------------------------------
+-----------------------
+eNB id 0 (null)
+state 2
+nextstream 0
+in_streams 0 out_streams 0
+cnx_id 1 assoc_id 0
+---------------------------------------------
+x2ap_eNB_handle_sctp_association_ind at 3
+here comes the tree (instance 0):
+---------------------------------------------
+-----------------------
+eNB id 0 (null)
+state 2
+nextstream 0
+in_streams 32 out_streams 32
+cnx_id 1 assoc_id 904
+---------------------------------------------
+[SCTP]   Found data for descriptor 95
+[SCTP]   [904][95] Msg of length 66 received from port 36422, on stream 0, PPID 27
+<X2AP-PDU>
+    <initiatingMessage>
+        <procedureCode>36</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <ENDCX2SetupRequest>
+                <protocolIEs>
+                    <ENDCX2SetupRequest-IEs>
+                        <id>244</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <InitiatingNodeType-EndcX2Setup>
+                                <init-en-gNB>
+                                    <En-gNB-ENDCX2SetupReqIEs>
+                                        <id>252</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <GlobalGNB-ID>
+                                                <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                <gNB-ID>
+                                                    <gNB-ID>
+                                                        00000000000000000000111000000000
+                                                    </gNB-ID>
+                                                </gNB-ID>
+                                            </GlobalGNB-ID>
+                                        </value>
+                                    </En-gNB-ENDCX2SetupReqIEs>
+                                    <En-gNB-ENDCX2SetupReqIEs>
+                                        <id>253</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <ServedNRcellsENDCX2ManagementList>
+                                                <SEQUENCE>
+                                                    <servedNRCellInfo>
+                                                        <nrpCI>0</nrpCI>
+                                                        <nrCellID>
+                                                            <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                            <nRcellIdentifier>
+                                                                000000000000000000000000111000000000
+                                                            </nRcellIdentifier>
+                                                        </nrCellID>
+                                                        <fiveGS-TAC>00 64 90</fiveGS-TAC>
+                                                        <broadcastPLMNs>
+                                                            <PLMN-Identity>22 F2 10</PLMN-Identity>
+                                                        </broadcastPLMNs>
+                                                        <nrModeInfo>
+                                                            <tdd>
+                                                                <nRFreqInfo>
+                                                                    <nRARFCN>0</nRARFCN>
+                                                                    <freqBandListNr>
+                                                                        <FreqBandNrItem>
+                                                                            <freqBandIndicatorNr>1</freqBandIndicatorNr>
+                                                                            <supportedSULBandList>
+                                                                                <SupportedSULFreqBandItem>
+                                                                                    <freqBandIndicatorNr>80</freqBandIndicatorNr>
+                                                                                </SupportedSULFreqBandItem>
+                                                                            </supportedSULBandList>
+                                                                        </FreqBandNrItem>
+                                                                    </freqBandListNr>
+                                                                </nRFreqInfo>
+                                                                <nR-TxBW>
+                                                                    <nRSCS><scs15/></nRSCS>
+                                                                    <nRNRB><nrb106/></nRNRB>
+                                                                </nR-TxBW>
+                                                            </tdd>
+                                                        </nrModeInfo>
+                                                        <measurementTimingConfiguration>00</measurementTimingConfiguration>
+                                                    </servedNRCellInfo>
+                                                </SEQUENCE>
+                                            </ServedNRcellsENDCX2ManagementList>
+                                        </value>
+                                    </En-gNB-ENDCX2SetupReqIEs>
+                                </init-en-gNB>
+                            </InitiatingNodeType-EndcX2Setup>
+                        </value>
+                    </ENDCX2SetupRequest-IEs>
+                </protocolIEs>
+            </ENDCX2SetupRequest>
+        </value>
+    </initiatingMessage>
+</X2AP-PDU>
+[X2AP]   X2AP_ProcedureCode_id_endcX2Setup message!
+[X2AP]   TAC: 006490
+[X2AP]   PLMN: 22f210
+<X2AP-PDU>
+    <successfulOutcome>
+        <procedureCode>36</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <ENDCX2SetupResponse>
+                <protocolIEs>
+                    <ENDCX2SetupResponse-IEs>
+                        <id>246</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <RespondingNodeType-EndcX2Setup>
+                                <respond-eNB>
+                                    <ENB-ENDCX2SetupReqAckIEs>
+                                        <id>21</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <GlobalENB-ID>
+                                                <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                <eNB-ID>
+                                                    <macro-eNB-ID>
+                                                        00000000111000000001
+                                                    </macro-eNB-ID>
+                                                </eNB-ID>
+                                            </GlobalENB-ID>
+                                        </value>
+                                    </ENB-ENDCX2SetupReqAckIEs>
+                                    <ENB-ENDCX2SetupReqAckIEs>
+                                        <id>250</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <ServedEUTRAcellsENDCX2ManagementList>
+                                                <SEQUENCE>
+                                                    <servedEUTRACellInfo>
+                                                        <pCI>0</pCI>
+                                                        <cellId>
+                                                            <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                            <eUTRANcellIdentifier>
+                                                                0000000011100000000100000000
+                                                            </eUTRANcellIdentifier>
+                                                        </cellId>
+                                                        <tAC>00 01</tAC>
+                                                        <broadcastPLMNs>
+                                                            <PLMN-Identity>22 F2 10</PLMN-Identity>
+                                                        </broadcastPLMNs>
+                                                        <eUTRA-Mode-Info>
+                                                            <fDD>
+                                                                <uL-EARFCN>21350</uL-EARFCN>
+                                                                <dL-EARFCN>3350</dL-EARFCN>
+                                                                <uL-Transmission-Bandwidth><bw25/></uL-Transmission-Bandwidth>
+                                                                <dL-Transmission-Bandwidth><bw25/></dL-Transmission-Bandwidth>
+                                                            </fDD>
+                                                        </eUTRA-Mode-Info>
+                                                    </servedEUTRACellInfo>
+                                                </SEQUENCE>
+                                            </ServedEUTRAcellsENDCX2ManagementList>
+                                        </value>
+                                    </ENB-ENDCX2SetupReqAckIEs>
+                                </respond-eNB>
+                            </RespondingNodeType-EndcX2Setup>
+                        </value>
+                    </ENDCX2SetupResponse-IEs>
+                </protocolIEs>
+            </ENDCX2SetupResponse>
+        </value>
+    </successfulOutcome>
+</X2AP-PDU>
+[SCTP]   Successfully sent 53 bytes on stream 0 for assoc_id 904
+[SCTP]   Found data for descriptor 95
+[SCTP]   Received notification for sd 95, type 32777
+[HW]   cal 0: freq 3500000000.000000, offset 44.000000, diff 940000000.000000
+[HW]   cal 1: freq 2660000000.000000, offset 49.800000, diff 100000000.000000
+[HW]   cal 2: freq 2300000000.000000, offset 51.000000, diff 260000000.000000
+[HW]   cal 3: freq 1880000000.000000, offset 53.000000, diff 680000000.000000
+[HW]   cal 4: freq 816000000.000000, offset 57.000000, diff 1744000000.000000
+[HW]   RX Gain 0 118.000000 (55.800000) => 62.200000 (max 76.000000)
+[HW]   USRP TX_GAIN:89.75 gain_range:89.75 tx_gain:0.00
+[HW]   Actual master clock: 30.720000MHz...
+[HW]   Actual clock source internal...
+[HW]   Actual time source internal...
+[HW]   RF board max packet size 1916, size for 100µs jitter 768 
+[HW]   rx_max_num_samps 768
+[HW]   RX Channel 0
+[HW]     Actual RX sample rate: 7.680000MSps...
+[HW]     Actual RX frequency: 2.560000GHz...
+[HW]     Actual RX gain: 62.000000...
+[HW]     Actual RX bandwidth: 20.000000M...
+[HW]     Actual RX antenna: RX2...
+[HW]   TX Channel 0
+[HW]     Actual TX sample rate: 7.680000MSps...
+[HW]     Actual TX frequency: 2.680000GHz...
+[HW]     Actual TX gain: 89.750000...
+[HW]     Actual TX bandwidth: 20.000000M...
+[HW]     Actual TX antenna: TX/RX...
+[HW]     Actual TX packet size: 1916
+[HW]   Device timestamp: 1.703971...
+[HW]   [RAU] has loaded USRP B200 device.
+setup_RU_buffers: frame_parms = 0x7f9fab347e68
+[PHY]   Signaling main thread that RU 0 (is_slave 0,send_dmrs 0) is ready in state RU_RUN
+wait RUs
+[ENB_APP]   Waiting for RUs to be configured ... RC.ru_mask:00
+[PHY]   RUs configured
+[ENB_APP]   RC.nb_RU:1
+ALL RUs ready - init eNBs
+[ENB_APP]   Not NFAPI mode - call init_eNB_afterRU()
+[PHY]   init_eNB_afterRU() RC.nb_inst:1
+[PHY]   RC.nb_CC[inst]:1
+[PHY]   RC.nb_CC[inst:0][CC_id:0]:0x7f9fab347010
+[PHY]   [eNB 0] phy_init_lte_eNB() About to wait for eNB to be configured[PHY]   [eNB 0] Initializing DL_FRAME_PARMS : N_RB_DL 25, PHICH Resource 1, PHICH Duration 0 nb_antennas_tx:0 nb_antennas_rx:1 nb_antenna_ports_eNB:1 PRACH[rootSequenceIndex:0 prach_Config_enabled:1 configIndex:0 highSpeed:0 zeroCorrelationZoneConfig:1 freqOffset:2]
+[PHY]   [eNB 0] Initializing DL_FRAME_PARMS : N_RB_DL 25, PHICH Resource 1, PHICH Duration 0
+pcfich_reg : 0,12,25,37
+[PHY]   [INIT] NB_ANTENNA_PORTS_ENB:6 fp->nb_antenna_ports_eNB:1
+[PHY]   [INIT] common_vars->txdataF[0] = 0x7f9fafb87010 (286720 bytes)
+[PHY]   [INIT] common_vars->txdataF[5] = 0x7f9fa80ff010 (286720 bytes)
+[PHY]   Mapping RX ports from 1 RUs to eNB 0
+[PHY]   Overwriting eNB->prach_vars.rxsigF[0]:0x330a6c0
+[PHY]   Overwriting eNB->prach_vars_br.rxsigF.rxsigF[0]:(nil)
+[PHY]   Overwriting eNB->prach_vars_br.rxsigF.rxsigF[0]:(nil)
+[PHY]   Overwriting eNB->prach_vars_br.rxsigF.rxsigF[0]:(nil)
+[PHY]   Overwriting eNB->prach_vars_br.rxsigF.rxsigF[0]:(nil)
+[PHY]   eNB->num_RU:1
+[PHY]   Attaching RU 0 antenna 0 to eNB antenna 0
+[PHY]   init_eNB_afterRU() ************* DJP ***** eNB->frame_parms.nb_antennas_tx:0 - GOING TO HARD CODE TO 1[PHY]   inst 0, CC_id 0 : nb_antennas_rx 1
+[PHY]   Initialise transport
+[PHY]   init_eNB_proc(inst:0) RC.nb_CC[inst]:1 
+[PHY]   Initializing eNB processes instance:0 CC_id 0 
+[PHY]   eNB->single_thread_flag:0
+[HW]   thread_top_init() called with affinity>0, but overruled by #ifndef CPU_AFFINITY.
+[HW]   [SCHED][eNB] eNB_thread_prach started on CPU 0, sched_policy = SCHED_FIFO , priority = 99, CPU Affinity= CPU_0 CPU_1 CPU_2 CPU_3 
+[ENB_APP]   ALL RUs ready - ALL eNBs ready
+[HW]   thread_top_init() called with affinity>0, but overruled by #ifndef CPU_AFFINITY.
+[HW]   [SCHED][eNB] eNB_thread_prach_br started on CPU 0, sched_policy = SCHED_FIFO , priority = 99, CPU Affinity= CPU_0 CPU_1 CPU_2 CPU_3 
+[ENB_APP]   Sending sync to all threads
+[MME_APP]   Creating MME_APP eNB Task
+got sync (ru_thread)
+[TMR]   Created Posix thread TASK_MME_APP
+[HW]   Time in secs now: 22168192 
+[LIBCONFIG] MMEs.[0]: 1/1 parameters successfully set, (1 to default value)
+[MCE_APP]   Creating MCE_APP eNB Task
+[HW]   Time in secs last pps: 21747824 
+[PHY]   RU 0 rf device ready
+[TMR]   Created Posix thread TASK_MCE_APP
+[LIBCONFIG] MCEs.[0]: 1/1 parameters successfully set, (1 to default value)
+[LIBCONFIG] MCEs.[0]: 1/1 parameters successfully set, (1 to default value)
+[ENB_APP]   TYPE <CTRL-C> TO TERMINATE
+[ENB_APP]   [MCE 0] MCE_app_register via M3AP for instance 0
+[HW]   [recv] received 0 samples out of 7680
+[HW]   ERROR_CODE_OVERFLOW (Out of sequence error)
+
+[PHY]   rx_rf: Asked for 7680 samples, got 0 from SDR
+[PHY]   problem receiving samples[MAC]   SCHED_MODE = 0
+[PHY]   rx_rf: rfdevice timing drift of 22200737 samples (ts_off 0)
+[PHY]   prach_I0 = 0.0 dB
+[PHY]   max_I0 18, min_I0 0
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[RRC]   [FRAME 00738][eNB][MOD 00][RNTI 43eb] Decoding UL CCCH 59.e8.a9.2.18.72 (0x3a52693)
+[RRC]   [FRAME 00738][eNB][MOD 00][RNTI 43eb] Accept new connection from UE random UE identity (0x8721908a9e000000) MME code 0 TMSI 0 cause 1
+[MAC]   UE 0 RNTI 43eb adding LC 1 idx 0 to scheduling control (total 1)
+[MAC]   UE 0 RNTI 43eb adding LC 2 idx 1 to scheduling control (total 2)
+[MAC]   Added physicalConfigDedicated 0x7f9f600085d0 for 0.0
+[RRC]   [FRAME 00738][eNB][MOD 00][RNTI 43eb]CALLING RLC CONFIG SRB1 (rbid 1)
+add new uid is 0 43eb
+
+[PDCP]   [FRAME 00738][eNB][MOD 00][RNTI 43eb][SRB 01]  Action ADD  LCID 1 (SRB id 1) configured with SN size 5 bits and RLC AM
+[MAC]   generate_Msg4 ra->Msg4_frame SFN/SF: 739.2,  frameP SFN/SF: 739.2 FOR eNB_Mod: 0 
+[MAC]   [eNB 0][RAPROC] CC_id 0 Frame 739, subframeP 2: Generating Msg4 with RRC Piggyback (RNTI 43eb)
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 740.6 ULSCH in error in round 0, ul_cqi 132, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 741.4 ULSCH in error in round 1, ul_cqi 138, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 742.2 ULSCH in error in round 2, ul_cqi 134, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 743.0 ULSCH in error in round 3, ul_cqi 132, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 743.8 ULSCH in error in round 0, ul_cqi 140, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 744.6 ULSCH in error in round 1, ul_cqi 140, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 745.4 ULSCH in error in round 2, ul_cqi 142, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 746.2 ULSCH in error in round 3, ul_cqi 143, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 747.0 ULSCH in error in round 0, ul_cqi 143, UE_id 0, RNTI 43eb (len 63)
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 748.8 ULSCH in error in round 0, ul_cqi 146, UE_id 0, RNTI 43eb (len 63)
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] [RAPROC] Logical Channel UL-DCCH, processing LTE_RRCConnectionSetupComplete from UE (SRB1 Active)
+[NAS]    AttachRequest.c:40  EMM  - attach_request len = 97
+[NAS]    UeNetworkCapability.c:46  decode_ue_network_capability len = 7
+[NAS]    UeNetworkCapability.c:63  uenetworkcapability decoded UMTS
+
+[NAS]    UeNetworkCapability.c:74  uenetworkcapability decoded GPRS
+
+[NAS]    UeNetworkCapability.c:82  uenetworkcapability decoded=6
+
+[NAS]    UeNetworkCapability.c:86  uenetworkcapability then decoded=8
+
+[NAS]    AttachRequest.c:285  EMM: Can't decode the message with iei 111
+
+[S1AP]   [eNB 0] Build S1AP_NAS_FIRST_REQ adding in s_TMSI: GUMMEI mme_code 1 mme_group_id 32768 ue 43eb
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] UE State = RRC_CONNECTED 
+[S1AP]   [eNB 0] Chose MME 'MME 1' (assoc_id 903) through GUMMEI MCC 222 MNC 1 MMEGI 32768 MMEC 1
+[S1AP]   Found usable eNB_ue_s1ap_id: 0x06692d 420141(10)
+[S1AP]   GUMMEI_ID_PRESENT
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>12</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <InitialUEMessage>
+                <protocolIEs>
+                    <InitialUEMessage-IEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </InitialUEMessage-IEs>
+                    <InitialUEMessage-IEs>
+                        <id>26</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NAS-PDU>
+                                17 A0 9C 9B 3F 04 07 41 02 0B F6 22 F2 10 80 00 
+                                01 00 00 00 37 07 F0 70 C0 40 10 00 10 00 2A 02 
+                                1F D0 11 D1 27 23 80 80 21 10 01 00 00 10 81 06 
+                                00 00 00 00 83 06 00 00 00 00 00 0D 00 00 0A 00 
+                                00 05 00 00 10 00 00 11 00 52 22 F2 10 00 01 5C 
+                                0A 00 31 04 E5 E0 34 01 90 11 03 57 58 A6 5D 01 
+                                00 E0 C1 6F 04 F0 00 70 00
+                            </NAS-PDU>
+                        </value>
+                    </InitialUEMessage-IEs>
+                    <InitialUEMessage-IEs>
+                        <id>67</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <TAI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <tAC>00 01</tAC>
+                            </TAI>
+                        </value>
+                    </InitialUEMessage-IEs>
+                    <InitialUEMessage-IEs>
+                        <id>100</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <EUTRAN-CGI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <cell-ID>
+                                    0000000011100000000100000000
+                                </cell-ID>
+                            </EUTRAN-CGI>
+                        </value>
+                    </InitialUEMessage-IEs>
+                    <InitialUEMessage-IEs>
+                        <id>134</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <RRC-Establishment-Cause><highPriorityAccess/></RRC-Establishment-Cause>
+                        </value>
+                    </InitialUEMessage-IEs>
+                    <InitialUEMessage-IEs>
+                        <id>75</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <GUMMEI>
+                                <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                <mME-Group-ID>80 00</mME-Group-ID>
+                                <mME-Code>01</mME-Code>
+                            </GUMMEI>
+                        </value>
+                    </InitialUEMessage-IEs>
+                </protocolIEs>
+            </InitialUEMessage>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 164 bytes on stream 1 for assoc_id 903
+[RLC]   /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/openair2/LAYER2/rlc_v2/rlc_entity_am.c:941:generate_status: warning: cannot generate status PDU, not enough room
+[RLC]   /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/openair2/LAYER2/rlc_v2/rlc_entity_am.c:941:generate_status: warning: cannot generate status PDU, not enough room
+[RLC]   /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/openair2/LAYER2/rlc_v2/rlc_entity_am.c:941:generate_status: warning: cannot generate status PDU, not enough room
+[RLC]   /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/openair2/LAYER2/rlc_v2/rlc_entity_am.c:941:generate_status: warning: cannot generate status PDU, not enough room
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 32 received from port 36412, on stream 1, PPID 18
+[RRC]   [eNB 0] Received S1AP_DOWNLINK_NAS: ue_initial_id 1, eNB_ue_s1ap_id 420141
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 752.3 ULSCH in error in round 0, ul_cqi 146, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 752.8 ULSCH in error in round 0, ul_cqi 152, UE_id 0, RNTI 43eb (len 63)
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>13</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <UplinkNASTransport>
+                <protocolIEs>
+                    <UplinkNASTransport-IEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>26</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NAS-PDU>
+                                17 A8 76 C5 F5 05 07 56 08 29 22 10 10 00 00 11 
+                                04
+                            </NAS-PDU>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>100</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <EUTRAN-CGI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <cell-ID>
+                                    0000000011100000000100000000
+                                </cell-ID>
+                            </EUTRAN-CGI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>67</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <TAI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <tAC>00 01</tAC>
+                            </TAI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                </protocolIEs>
+            </UplinkNASTransport>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 68 bytes on stream 1 for assoc_id 903
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 65 received from port 36412, on stream 1, PPID 18
+[RRC]   [eNB 0] Received S1AP_DOWNLINK_NAS: ue_initial_id 1, eNB_ue_s1ap_id 420141
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[MAC]   [eNB 0][PUSCH 4] CC_id 0 761.2 ULSCH in error in round 0, ul_cqi 158, UE_id 0, RNTI 43eb (len 63)
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 10 PUCCH SNR 10
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>13</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <UplinkNASTransport>
+                <protocolIEs>
+                    <UplinkNASTransport-IEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>26</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NAS-PDU>
+                                17 9B EE 3B BF 06 07 53 08 ED CA A1 31 56 26 D7 
+                                E1
+                            </NAS-PDU>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>100</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <EUTRAN-CGI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <cell-ID>
+                                    0000000011100000000100000000
+                                </cell-ID>
+                            </EUTRAN-CGI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>67</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <TAI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <tAC>00 01</tAC>
+                            </TAI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                </protocolIEs>
+            </UplinkNASTransport>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 68 bytes on stream 1 for assoc_id 903
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 51 received from port 36412, on stream 1, PPID 18
+[RRC]   [eNB 0] Received S1AP_DOWNLINK_NAS: ue_initial_id 1, eNB_ue_s1ap_id 420141
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>13</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <UplinkNASTransport>
+                <protocolIEs>
+                    <UplinkNASTransport-IEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>26</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NAS-PDU>47 86 59 47 B7 00 07 5E</NAS-PDU>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>100</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <EUTRAN-CGI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <cell-ID>
+                                    0000000011100000000100000000
+                                </cell-ID>
+                            </EUTRAN-CGI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>67</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <TAI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <tAC>00 01</tAC>
+                            </TAI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                </protocolIEs>
+            </UplinkNASTransport>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 59 bytes on stream 1 for assoc_id 903
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 38 received from port 36412, on stream 1, PPID 18
+[RRC]   [eNB 0] Received S1AP_DOWNLINK_NAS: ue_initial_id 1, eNB_ue_s1ap_id 420141
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>13</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <UplinkNASTransport>
+                <protocolIEs>
+                    <UplinkNASTransport-IEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>26</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NAS-PDU>
+                                27 F5 4A 60 81 01 02 1F DA 28 09 03 6F 61 69 04 
+                                69 70 76 34
+                            </NAS-PDU>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>100</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <EUTRAN-CGI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <cell-ID>
+                                    0000000011100000000100000000
+                                </cell-ID>
+                            </EUTRAN-CGI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>67</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <TAI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <tAC>00 01</tAC>
+                            </TAI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                </protocolIEs>
+            </UplinkNASTransport>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 71 bytes on stream 1 for assoc_id 903
+[PHY]   fill_ulsch UE_id 0 nb_rb = 0
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 235 received from port 36412, on stream 1, PPID 18
+[S1AP]   Received NAS message with the E_RAB setup procedure
+[RRC]   [eNB 0] Received S1AP_INITIAL_CONTEXT_SETUP_REQ: ue_initial_id 1, eNB_ue_s1ap_id 420141, nb_of_e_rabs 1
+[GTPV1U]   Configured GTPu address : c712a8c0
+[GTPV1U]   Copied to create_tunnel_resp tunnel: index 0 target gNB ip 192.168.18.199 length 4 gtp teid 3396329693
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] rrc_eNB_process_GTPV1U_CREATE_TUNNEL_RESP tunnel (3396329693, 3396329693) bearer UE context index 0, msg index 0, id 5, gtp addr len 4 
+[RRC]   [eNB 0][UE 43eb] Selected security algorithms (0x7f9f9400213c): 0, 2, changed
+[RRC]   [eNB 0][UE 43eb] Saved security key 107FB5D1A79727631F15C38738093134AAF72931EA06D9495605EDB00D8D8044
+[RRC]   
+KeNB:10 7f b5 d1 a7 97 27 63 1f 15 c3 87 38 09 31 34 aa f7 29 31 ea 06 d9 49 56 05 ed b0 0d 8d 80 44 
+[RRC]   
+KRRCenc:1b 33 28 35 5a 74 f3 6a 05 c6 cf 34 e9 be 54 63 7b a8 5a 48 1d 72 54 67 ae b0 12 a4 1d 3b 7d 86 
+[RRC]   
+KRRCint:ba a3 e0 18 79 1e 68 44 c6 60 dd c9 a8 8c 65 c2 e8 74 09 da 28 d6 f2 d9 6f ad da 41 d7 ec 8e 71 
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] Logical Channel DL-DCCH, Generate SecurityModeCommand (bytes 3)
+[RRC]   calling rrc_data_req :securityModeCommand
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] received securityModeComplete on UL-DCCH 1 from UE
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] Logical Channel DL-DCCH, Generate UECapabilityEnquiry (bytes 3)
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] received ueCapabilityInformation on UL-DCCH 1 from UE
+[RRC]   got UE capabilities for UE 43eb
+[RRC]   drx_Configuration parameter is NULL, cannot configure local UE parameters or CDRX is deactivated
+[RRC]   [eNB 0] frame 0: requesting A2, A3, A4, and A5 event reporting
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>22</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <UECapabilityInfoIndication>
+                <protocolIEs>
+                    <UECapabilityInfoIndicationIEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </UECapabilityInfoIndicationIEs>
+                    <UECapabilityInfoIndicationIEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </UECapabilityInfoIndicationIEs>
+                    <UECapabilityInfoIndicationIEs>
+                        <id>74</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <UERadioCapability>
+                                04 43 DA 01 08 87 7D DB 80 51 81 80 01 04 0C 20 
+                                71 63 08 11 24 4C C1 93 67 0F A1 4A 99 3A 85 AF 
+                                CC 58 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF 
+                                FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE 
+                                C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 
+                                2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F 
+                                FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F 
+                                FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF 
+                                FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 
+                                3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 
+                                5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF 
+                                FF FF 2B FF D8 FF FF FF 95 FF DF F3 FF AF A2 0C 
+                                00 8C 85 3C 10 65 3A 54 95 1F C0 77 7E 00 00 00 
+                                00 02 04 BD 80 00 00 08 09 DF 00 00 00 02 F5 C0 
+                                0C 00 A0 04 00 04 00 A0 06 00 48 20 0C 10 06 08 
+                                03 04 01 82 00 C1 08 60 84 30 42 18 21 0A 08 03 
+                                04 01 82 00 C1 00 60 84 30 42 18 20 0C 10 06 08 
+                                03 04 01 82 00 A1 80 01 04 30 00 20 86 00 04 10 
+                                C0 00 82 18 00 10 43 00 02 08 40 00 61 00 01 84 
+                                00 82 10 00 18 40 08 21 00 01 84 00 82 10 00 18 
+                                40 08 21 00 01 84 00 82 10 02 08 60 08 43 0C 01 
+                                08 61 80 21 0C 30 04 21 84 00 86 10 02 18 40 08 
+                                61 00 21 84 00 86 10 02 18 60 08 43 0C 01 08 61 
+                                80 21 0C 30 04 21 84 00 86 10 02 18 40 08 61 00 
+                                21 84 00 86 10 02 18 41 08 61 04 21 84 10 86 08 
+                                43 04 21 82 10 C1 08 60 04 84 00 86 10 02 18 40 
+                                08 61 00 21 84 00 86 10 02 18 21 0C 10 86 10 00 
+                                18 40 00 60 80 30 03 00 25 A0 7D 54 6C 1E 00 00 
+                                35 81 8C 00 08 20 60 00 02 08 18 20 00 80 06 10 
+                                00 20 81 86 00 08 00 62 00 02 00 18 E0 00 80 06 
+                                58 00 20 01 98 00 08 00 68 00 02 00 1A 20 00 80 
+                                06 90 00 20 01 A6 00 08 00 6C 00 02 00 1B 20 00 
+                                80 06 D8 00 20 00 B8 10 00 5F 08 00 70 80 02 00 
+                                1C A0 00 82 07 30 00 20 01 CE 00 08 20 74 00 02 
+                                08 0D A1 00 0F F0 00 40 05 7C 20 63 00 02 08 3B 
+                                60 00 80 8C 10 41 5B 08 18 C0 00 82 0E 98 00 20 
+                                23 04 10 54 C2 06 30 00 20 83 8C 00 08 28 41 04 
+                                14 60 83 84 00 08 20 E3 00 02 0A 00 41 05 18 20 
+                                E0 00 02 08 2B E1 03 00 00 10 01 DB 00 04 04 00 
+                                82 0A D8 40 C0 00 04 10 74 C0 01 01 00 20 82 A6 
+                                10 30 00 01 04 1C 20 00 41 40 08 20 A1 04 1C 00 
+                                00 41 05 7C 20 61 00 02 08 3B 60 00 80 84 10 41 
+                                5B 08 18 40 00 82 0E 98 00 20 21 04 10 54 C2 06 
+                                10 00 20 82 BE 10 34 C0 01 00 35 F0 81 A6 00 08 
+                                08 C1 05 08 20 06 BE 10 14 C2 06 30 00 20 A1 04 
+                                00 D7 C2 02 98 40 46 08 38 40 00 80 1A F8 40 D3 
+                                00 04 04 60 82 80 10 03 5F 08 0A 61 03 18 00 10 
+                                50 02 00 6B E1 01 4C 20 23 04 1C 00 00 40 09 7C 
+                                20 69 80 02 02 30 41 09 7C 20 29 84 0C 60 00 41 
+                                09 7C 20 63 00 02 0A 10 48 09 7C 20 63 00 02 02 
+                                10 49 09 7C 20 23 04 1C 20 00 48 09 7C 20 23 04 
+                                0C 20 00 49 09 7C 20 63 00 02 0A 10 40 09 7C 20 
+                                63 00 02 02 10 41 09 7C 20 23 04 1C 20 00 40 09 
+                                7C 20 23 04 0C 20 00 41 09 7C 20 63 00 02 0A 00 
+                                40 09 7C 20 23 04 1C 00 00 40 0F 6C 00 10 11 82 
+                                0A 10 41 40 08 21 AD 84 0C 60 00 41 42 08 28 01 
+                                04 35 B0 80 8C 10 70 80 01 05 00 20 86 B6 10 11 
+                                82 0A 10 41 C0 00 04 10 B6 C0 01 01 18 20 A1 04 
+                                10 96 C2 06 30 00 20 A1 04 10 96 C2 02 30 41 C2 
+                                00 04 10 B6 C0 01 01 18 20 A0 04 10 96 C2 06 30 
+                                00 20 A0 04 10 96 C2 02 30 41 C0 00 04 10 F4 C0 
+                                01 01 18 20 A1 04 14 00 82 1A 98 40 C6 00 04 14 
+                                20 82 80 10 43 53 08 08 C1 07 08 00 10 50 02 08 
+                                6A 61 01 18 20 A1 04 1C 00 00 41 0B 4C 00 10 11 
+                                82 0A 10 41 09 4C 20 63 00 02 0A 10 41 09 4C 20 
+                                23 04 1C 20 00 41 0B 4C 00 10 11 82 0A 00 41 09 
+                                4C 20 63 00 02 0A 00 41 09 4C 20 23 04 1C 00 00 
+                                41 0B 18 00 10 50 82 0A 00 41 09 18 20 E1 00 02 
+                                0A 00 41 09 18 20 A1 04 1C 00 00 41 07 18 04 12 
+                                50 82 08 28 C1 27 08 00 10 41 C6 00 04 14 20 92 
+                                0A 30 41 C2 01 04 90 31 80 41 24 25 F0 81 A6 00 
+                                08 08 01 00 25 F0 80 A6 10 30 00 01 00 2D B0 00 
+                                40 42 08 28 01 04 25 B0 81 84 00 08 28 01 04 25 
+                                B0 80 84 10 70 00 01 04 2D 30 00 40 42 08 28 01 
+                                04 25 30 81 84 00 08 28 01 04 25 30 80 84 10 70 
+                                00 01 04 1C 20 00 41 40 09 20 A1 04 1C 00 00 49 
+                                09 7C 20 69 80 02 02 10 41 09 7C 20 29 84 0C 20 
+                                00 41 05 7C 20 61 00 02 48 18 40 20 92 07 28 08 
+                                24 EB B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F 
+                                FF FF CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF 
+                                FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 63 FF FF 
+                                FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 
+                                7F FF FF CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 
+                                BF FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 63 FF 
+                                FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 95 FF 
+                                EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 1F FF FF 
+                                F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 63 
+                                FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 95 
+                                FF EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 1F FF 
+                                FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 
+                                63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 
+                                95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 1F 
+                                FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC AF 
+                                FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF 
+                                FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 
+                                1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC 
+                                AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF 
+                                FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F 
+                                FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF 
+                                FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 
+                                FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 
+                                7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF 
+                                FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF 
+                                D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF 
+                                E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 
+                                FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B 
+                                FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF 
+                                FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE 
+                                C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 
+                                2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F 
+                                FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F 
+                                FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF 
+                                FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 
+                                3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 
+                                5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF 
+                                FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF 
+                                F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF 
+                                F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 
+                                FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA 
+                                FF F6 3F FF FF E5 7F F6 CE C0 00 0F D8 81 B3 B0 
+                                00 00 8F 9D 80 00 1A C0 00 00 08 78 78 BC 5E 1E 
+                                1E 1E 1D 0F 0E 43 C3 A1 E1 E1 E1 E1 C0 00 08 78 
+                                78 78 71 17 8B C5 E1 E1 E1 E1 E1 E1 E1 E2 F1 78 
+                                BC 3C 3C 3C 3C 39 17 00 01 F5 80 00 00 00 00 00 
+                                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
+                                00 00 00 80 82 00 80 20 08 02 00 80 20 08 02 00 
+                                80 20 08 02 00 80 20 08 02 00 80 20 08 02 00 80 
+                                60 01 80 06 00 18 00 60 01 80 04 00 40 04 00 40 
+                                04 00 40 04 00 40 04 00 40 04 00 40 06 00 18 00 
+                                60 01 80 04 00 40 04 00 40 04 00 40 06 00 18 00 
+                                60 01 80 04 00 40 04 00 40 04 00 40 04 00 40 04 
+                                00 20 08 02 00 80 00 40 04 00 40 04 00 40 04 00 
+                                40 04 00 20 08 04 00 40 02 00 00 1F 04 01 20 03 
+                                E6 57 9A 04 01 4B 1F FF FF FF FF FF FE 69 4B BC 
+                                50 0F 80 04 20 09 86 00 00 00 00 00 05 50 92 48 
+                                81 01 00 02 F2 42 0B 51 40 01 34 00 00 00
+                            </UERadioCapability>
+                        </value>
+                    </UECapabilityInfoIndicationIEs>
+                </protocolIEs>
+        [RRC]   RRCConnectionReconfiguration Encoded 1796 bits (225 bytes)
+[RRC]   [eNB 0] Frame 0, Logical Channel DL-DCCH, Generate LTE_RRCConnectionReconfiguration (bytes 225, UE id 43eb)
+    </UECapabilityInfoIndication>[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+
+        </value>
+    </initiatingMessage>[PDCP]   [FRAME 00000][eNB][MOD 00][RNTI 43eb][SRB 02]  Action ADD  LCID 2 (SRB id 2) configured with SN size 5 bits and RLC AM
+
+</S1AP-PDU>
+[PDCP]   [FRAME 00000][eNB][MOD 00][RNTI 43eb][DRB 01]  Action ADD  LCID 3 (DRB id 1) configured with SN size 12 bits and RLC AM
+[SCTP]   Successfully sent 2206 bytes on stream 1 for assoc_id 903
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] UE State = RRC_RECONFIGURED (default DRB, xid 2)
+[PDCP]   [FRAME 00000][eNB][MOD 00][RNTI 43eb][SRB 02]  Action MODIFY LCID 2 RB id 2 reconfigured with SN size 5 and RLC AM 
+[PDCP]   [FRAME 00000][eNB][MOD 00][RNTI 43eb][DRB 01]  Action MODIFY LCID 3 RB id 1 reconfigured with SN size 1 and RLC AM 
+[RRC]   [eNB 0] Frame  0 CC 0 : SRB2 is now active
+[RRC]   [eNB 0] Frame  0 : Logical Channel UL-DCCH, Received LTE_RRCConnectionReconfigurationComplete from UE rnti 43eb, reconfiguring DRB 1/LCID 3
+[RRC]   [eNB 0] Frame  0 : Logical Channel UL-DCCH, Received LTE_RRCConnectionReconfigurationComplete from UE 0, reconfiguring DRB 1/LCID 3
+[MAC]   UE 0 RNTI 43eb adding LC 3 idx 2 to scheduling control (total 3)
+[MAC]   Added physicalConfigDedicated 0x7f9f600085d0 for 0.0
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] Logical Channel DL-DCCH, Generate NR UECapabilityEnquiry (bytes 27)
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+[S1AP]   initial_ctxt_resp_p: e_rab ID 5, enb_addr 192.168.18.199, SIZE 4 
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>13</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <UplinkNASTransport>
+                <protocolIEs>
+                    <UplinkNASTransport-IEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>26</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NAS-PDU>27 22 5C 78 F3 02 07 43 00 03 52 00 C2</NAS-PDU>
+                        </value[SCTP]   Successfully sent 43 bytes on stream 1 for assoc_id 903
+>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>100</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <EUTRAN-CGI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <cell-ID>
+                                    0000000011100000000100000000
+                                </cell-ID>
+                            </EUTRAN-CGI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>67</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <TAI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <tAC>00 01</tAC>
+                            </TAI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                </protocolIEs>
+            </UplinkNASTransport>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 64 bytes on stream 1 for assoc_id 903
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] received ueCapabilityInformation on UL-DCCH 1 from UE
+[RRC]   got UE capabilities for UE 43eb
+[MAC]   [eNB 0][PUSCH 7] CC_id 0 796.7 ULSCH in error in round 0, ul_cqi 152, UE_id 0, RNTI 43eb (len 63)
+[RRC]   [eNB 0] frame 0 subframe 0: UE rnti 43eb switching to NSA mode
+[RRC]   Read in 2056 bytes for uecap
+<X2AP-PDU>
+    <initiatingMessage>
+        <procedureCode>27</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <SgNBAdditionRequest>
+                <protocolIEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>111</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <UE-X2AP-ID>0</UE-X2AP-ID>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>248</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NRUESecurityCapabilities>
+                                <nRencryptionAlgorithms>
+                                    0000000000000000
+                                </nRencryptionAlgorithms>
+                                <nRintegrityProtectionAlgorithms>
+                                    0000000000000000
+                                </nRintegrityProtectionAlgorithms>
+                            </NRUESecurityCapabilities>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>203</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <SgNBSecurityKey>
+                                0000000000000000000000000000000000000000000000000000000000000000
+                                0000000000000000000000000000000000000000000000000000000000000000
+                                0000000000000000000000000000000000000000000000000000000000000000
+                                0000000000000000000000000000000000000000000000000000000000000000
+                            </SgNBSecurityKey>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>204</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <UEAggregateMaximumBitRate>
+                                <uEaggregateMaximumBitRateDownlink>100000000</uEaggregateMaximumBitRateDownlink>
+                                <uEaggregateMaximumBitRateUplink>100000000</uEaggregateMaximumBitRateUplink>
+                            </UEAggregateMaximumBitRate>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>205</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <E-RABs-ToBeAdded-SgNBAddReqList>
+                                <ProtocolIE-Single-Container>
+                                    <id>209</id>
+                                    <criticality><ignore/></criticality>
+                                    <value>
+                                        <E-RABs-ToBeAdded-SgNBAddReq-Item>
+                                            <e-RAB-ID>5</e-RAB-ID>
+                                            <drb-ID>1</drb-ID>
+                                            <en-DC-ResourceConfiguration>
+                                                <pDCPatSgNB><present/></pDCPatSgNB>
+                                                <mCGresources><not-present/></mCGresources>
+                                                <sCGresources><not-present/></sCGresources>
+                                            </en-DC-ResourceConfiguration>
+                                            <resource-configuration>
+                                                <sgNBPDCPpresent>
+                                                    <full-E-RAB-Level-QoS-Parameters>
+                                                        <qCI>1</qCI>
+                                                        <allocationAndRetentionPriority>
+                                                            <priorityLevel>15</priorityLevel>
+                                                            <pre-emptionCapability><shall-not-trigger-pre-emption/></pre-emptionCapability>
+                                                            <pre-emptionVulnerability><not-pre-emptable/></pre-emptionVulnerability>
+                                                        </allocationAndRetentionPriority>
+                                                    </full-E-RAB-Level-QoS-Parameters>
+                                                    <s1-UL-GTPtunnelEndpoint>
+                                                        <transportLayerAddress>
+                                                            11000000101010000001001001100011
+                                                        </transportLayerAddress>
+                                                        <gTP-TEID>00 00 00 02</gTP-TEID>
+                                                    </s1-UL-GTPtunnelEndpoint>
+                                                </sgNBPDCPpresent>
+                                            </resource-configuration>
+                                        </E-RABs-ToBeAdded-SgNBAddReq-Item>
+                                    </value>
+                                </ProtocolIE-Single-Container>
+                            </E-RABs-ToBeAdded-SgNBAddReqList>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>206</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MeNBtoSgNBContainer>
+                                3A 03 08 78 8D DB 80 51 81 80 01 04 0C 20 71 63 
+                                08 11 24 4C C1 93 67 0F A1 4A 99 3A 85 AF CC 58 
+                                FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 
+                                7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF 
+                                FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF 
+                                D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF 
+                                E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 
+                                FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B 
+                                FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF 
+                                FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE 
+                                C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 
+                                2B FF D8 FF FF FF 95 FF DF F3 FF AF A2 0C 00 8C 
+                                85 3C 10 65 3A 54 97 1F C0 68 FE 00 00 00 00 02 
+                                04 BD 80 00 00 08 09 DF 00 00 00 02 EE C0 0C 00 
+                                A0 04 00 04 00 A0 06 00 48 20 0C 10 06 08 03 04 
+                                01 82 10 C1 08 60 84 30 42 18 20 0C 10 06 08 43 
+                                04 21 82 00 C1 00 60 80 30 40 18 20 0C 10 06 18 
+                                02 10 C3 00 42 18 60 08 43 0C 01 08 61 80 21 0C 
+                                30 04 21 86 00 84 30 C0 10 86 10 02 18 40 08 61 
+                                00 21 84 00 86 10 02 18 40 08 61 00 21 84 00 86 
+                                10 02 18 20 0C 10 06 18 02 10 C3 00 42 18 60 08 
+                                43 0C 01 08 61 00 21 84 00 86 10 02 18 41 08 61 
+                                04 21 84 10 86 10 42 18 41 08 61 04 21 84 10 86 
+                                10 42 18 41 08 60 84 30 42 18 21 0C 10 86 00 61 
+                                00 21 84 00 86 10 02 18 40 08 61 00 21 84 00 86 
+                                08 43 04 21 82 00 C1 00 60 04 B4 7D 54 6C 1E 00 
+                                00 2E 81 8C 00 08 20 60 00 02 08 18 20 00 80 06 
+                                10 00 20 81 86 00 08 00 62 00 02 00 18 E0 00 80 
+                                06 58 00 20 01 98 00 08 00 68 00 02 00 1A 20 00 
+                                80 06 90 00 20 01 A6 00 08 00 6C 00 02 00 1B 20 
+                                00 80 06 D8 00 20 00 B8 10 00 5F 08 00 70 80 02 
+                                00 1C A0 00 82 07 30 00 20 01 CE 00 08 20 74 00 
+                                02 08 0D A1 00 0F F0 00 40 07 4C 00 10 11 82 08 
+                                2A 61 03 18 00 10 41 C7 00 04 04 60 82 0A 38 40 
+                                C6 00 04 10 71 80 01 05 08 20 82 8C 10 70 80 01 
+                                04 1C 60 00 41 40 08 20 A3 04 1C 00 00 41 07 4C 
+                                00 10 10 02 08 2A 61 03 00 00 10 41 C2 00 04 14 
+                                00 82 0A 10 41 C0 00 04 10 76 C0 01 01 08 20 82 
+                                B6 10 30 80 01 04 1D 30 00 40 42 08 20 A9 84 0C 
+                                20 00 41 07 1C 00 10 10 82 08 28 E1 03 08 00 10 
+                                43 D3 00 04 04 60 82 84 12 50 02 08 6A 61 03 18 
+                                00 10 50 82 4A 00 41 0D 4C 20 23 04 1C 20 00 49 
+                                40 08 21 A9 84 04 60 82 84 12 70 00 01 04 3D 30 
+                                00 40 46 08 28 41 05 00 20 86 A6 10 31 80 01 05 
+                                08 20 A0 04 10 D4 C2 02 30 41 C2 00 04 14 00 82 
+                                1A 98 40 46 08 28 41 07 00 00 10 42 D3 00 04 04 
+                                60 82 84 12 42 53 08 18 C0 00 82 84 12 42 53 08 
+                                08 C1 07 08 00 12 42 D3 00 04 04 60 82 84 10 42 
+                                53 08 18 C0 00 82 84 10 42 53 08 08 C1 07 08 00 
+                                10 42 D3 00 04 04 60 82 80 10 42 53 08 18 C0 00 
+                                82 80 10 42 53 08 08 C1 07 00 00 10 41 D3 00 04 
+                                04 60 92 0A 98 40 C6 00 04 90 F1 C0 01 01 18 20 
+                                A1 04 14 00 82 1A 38 40 C6 00 04 14 20 82 80 10 
+                                43 47 08 08 C1 07 08 00 10 50 02 08 68 E1 01 18 
+                                20 A1 04 1C 00 00 41 0B 1C 00 10 11 82 0A 10 41 
+                                09 1C 20 63 00 02 0A 10 41 09 1C 20 23 04 1C 20 
+                                00 41 0B 18 00 12 50 82 0A 00 41 09 18 24 E1 00 
+                                02 0A 00 41 09 18 24 A1 04 1C 00 00 41 0B 18 00 
+                                10 50 82 4A 00 41 09 18 20 E1 00 02 4A 00 41 09 
+                                18 20 A1 04 9C 00 00 41 0B 18 00 10 50 82 0A 00 
+                                41 09 18 20 E1 00 02 0A 00 41 09 18 20 A1 04 1C 
+                                00 00 41 07 18 04 12 50 82 08 28 C1 27 08 00 10 
+                                41 C6 00 04 14 20 92 0A 30 41 C2 01 04 90 31 80 
+                                41 24 2D 30 00 40 42 09 28 01 04 25 30 81 84 00 
+                                09 28 01 04 25 30 80 84 12 70 00 01 04 2D 30 00 
+                                40 42 08 28 01 04 25 30 81 84 00 08 28 01 04 25 
+                                30 80 84 10 70 00 01 04 1C 20 10 49 40 08 20 A1 
+                                04 9C 00 00 41 07 4C 00 10 10 82 48 2A 61 03 08 
+                                00 12 40 C2 01 04 9B B6 3F FF FF E5 7F FB 1F FF 
+                                FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 
+                                63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 
+                                95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 1F 
+                                FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC AF 
+                                FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF 
+                                FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 
+                                1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC 
+                                AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF 
+                                FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F 
+                                FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF 
+                                FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 
+                                FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 
+                                7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF 
+                                FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF 
+                                D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF 
+                                E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 
+                                FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B 
+                                FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF 
+                                FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE 
+                                C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 
+                                2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F 
+                                FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F 
+                                FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF 
+                                FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 
+                                3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 
+                                5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF 
+                                FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF 
+                                F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF 
+                                F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 
+                                FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA 
+                                FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF 
+                                FF F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF 
+                                B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF 
+                                CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F 
+                                FF FF F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 
+                                FF B1 FF FF FF 2B FF B6 76 00 00 7E C4 0D 9D 80 
+                                00 04 7C EC 00 00 BA 00 00 00 8B C5 E2 F1 78 78 
+                                78 78 72 1E 1E 1E 1E 1E 1E 3F 8F C2 1E 1E 1E 1E 
+                                1E 1E 1E 1E 1E 1E 2F 17 8B 90 F0 F0 F0 F1 78 BC 
+                                5E 1E 1E 1E 1E 1E 1E 1E 1E 1E 1E 1C 8B 80 0F 74 
+                                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
+                                00 00 00 00 00 00 00 00 04 04 10 04 01 00 40 10 
+                                04 01 00 40 10 04 01 00 40 10 04 01 00 40 10 04 
+                                03 00 0C 00 30 00 C0 03 00 0C 00 30 00 C0 02 00 
+                                20 02 00 20 02 00 20 02 00 20 02 00 10 04 03 00 
+                                0C 00 30 00 C0 02 00 20 02 00 20 02 00 20 02 00 
+                                20 02 00 20 02 00 20 01 00 40 10 04 00 02 00 20 
+                                02 00 20 02 00 20 01 00 40 10 04 00 3E 08 02 40 
+                                07 CC AF 34 08 02 96 3F FF FF FF FF FF FC D2 97 
+                                78 A0 1F 00 08 40 13 0C 00 00 00 00 00 0A A1 34 
+                                91 02 02 00 05 E4 84 12 E2 80 02 6B C0 C0 04 00 
+                                01 04 10 40 00 28 C8 00 00 08 80 00 05 58 E1 00 
+                                00 00 01 4F 7E 03 02 00 00 01 40 48 07 06 0E 22 
+                                0C 00 02 13 60 10 73 E4 20 F0 00 82 40 31 10 00 
+                                A0 58 9B A0 21 94 34 08 81 07 41 86 04 C0 42 54 
+                                41 01 00 80 06 08 1C 1C 22 03 C8 0F 00 20 1A 02 
+                                6E 26 F0 00 09 00 00 00 00 72 A6 80 00 80 00 02 
+                                0C 30 00 1A 55 30 62 00 11 C0 48 16 0C 01 C4 D0 
+                                00 00 00 40 04 03 40 4D 01 04 40 41 4E 9C 00 02 
+                                00 01 00 80 80 10 02 00
+                            </MeNBtoSgNBContainer>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                </protocolIEs>
+            </SgNBAdditionRequest>
+        </value>
+    </initiatingMessage>
+</X2AP-PDU>
+[SCTP]   Successfully sent 2161 bytes on stream 0 for assoc_id 904
+[SCTP]   Found data for descriptor 95
+[SCTP]   Received notification for sd 95, type 32777
+[SCTP]   Found data for descriptor 95
+[SCTP]   [904][95] Msg of length 371 received from port 36422, on stream 0, PPID 27
+<X2AP-PDU>
+    <successfulOutcome>
+        <procedureCode>27</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <SgNBAdditionRequestAcknowledge>
+                <protocolIEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>111</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <UE-X2AP-ID>0</UE-X2AP-ID>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>207</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <SgNB-UE-X2AP-ID>0</SgNB-UE-X2AP-ID>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>210</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <E-RABs-Admitted-ToBeAdded-SgNBAddReqAckList>
+                                <ProtocolIE-Single-Container>
+                                    <id>213</id>
+                                    <criticality><ignore/></criticality>
+                                    <value>
+                                        <E-RABs-Admitted-ToBeAdded-SgNBAddReqAck-Item>
+                                            <e-RAB-ID>5</e-RAB-ID>
+                                            <en-DC-ResourceConfiguration>
+                                                <pDCPatSgNB><present/></pDCPatSgNB>
+                                                <mCGresources><not-present/></mCGresources>
+                                                <sCGresources><not-present/></sCGresources>
+                                            </en-DC-ResourceConfiguration>
+                                            <resource-configuration>
+                                                <sgNBPDCPpresent>
+                                                    <s1-DL-GTPtunnelEndpoint>
+                                                        <transportLayerAddress>
+                                                            11000000101010000001001011000110
+                                                        </transportLayerAddress>
+                                                        <gTP-TEID>92 CC 30 02</gTP-TEID>
+                                                    </s1-DL-GTPtunnelEndpoint>
+                                                </sgNBPDCPpresent>
+                                            </resource-configuration>
+                                        </E-RABs-Admitted-ToBeAdded-SgNBAddReqAck-Item>
+                                    </value>
+                                </ProtocolIE-Single-Container>
+                            </E-RABs-Admitted-ToBeAdded-SgNBAddReqAckList>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>211</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <SgNBtoMeNBContainer>
+                                18 04 09 A8 44 09 92 E2 07 8E 01 90 43 7E 30 D0 
+                                41 E6 41 C8 54 1E 21 00 83 2B A1 6E 63 00 1A 4E 
+                                47 C0 13 49 C4 00 00 00 26 96 18 DE 35 00 05 38 
+                                05 10 0D 60 1B 40 39 D2 02 68 00 01 34 E4 E1 8D 
+                                E3 2A 31 00 0D 66 66 BE E4 E0 24 BC A1 5B C2 C5 
+                                8F 68 9C 2E 00 50 E0 18 04 21 60 3B 00 91 19 1F 
+                                5E 24 62 00 1A CC CD 00 03 F0 DB 00 10 1C 02 D9 
+                                00 92 00 20 24 04 63 2C E1 96 65 14 0F FF F8 00 
+                                00 00 08 70 00 41 03 08 14 30 73 70 44 30 00 00 
+                                80 80 1A 70 0A 20 1A C0 36 80 72 CA 80 40 FF FF 
+                                80 00 00 00 87 00 04 10 30 81 43 07 0D C2 10 C0 
+                                00 08 05 90 01 01 20 23 25 61 52 C0 E1 04 16 0E 
+                                0C 10 E1 00 71 28 1C 00 00 20 5E F4 01 00 02 00 
+                                00 0F 40 01 41 00 19 73 86 59 95 18 80 06 B3 33 
+                                5F 72 70 12 5E 50 AD E1 62 C7 B4 4E 17 00 28 70 
+                                6A A4 1A 80 81 04 42 0C 20 30 08 C0 03 40 43 00 
+                                0C 01 8A 17 B4 08 28 5E C9 07 91 A2 B3 80 00 40 
+                                00 7F 42 10 84 00 80 40 25 81 C2 08 2C 1C 18 21 
+                                C2 00 E2 50 38 00 00 40 BD E8 02 00 04 00 00 1E 
+                                80 02 82 00 70 01 01 88 00 40 A0 49 40 BC 16 00 
+                                60 00
+                            </SgNBtoMeNBContainer>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                </protocolIEs>
+            </SgNBAdditionRequestAcknowledge>
+        </value>
+    </successfulOutcome>
+</X2AP-PDU>
+[X2AP]   x2ap_eNB_decode_successfuloutcome_message!
+[X2AP]   X2AP Association id: 904 
+322: 180409a8440992e2078e0190437e30d041e641c8541e2100832ba16e63001a4e47c01349c4000000269618de3500053805100d601b4039d20268000134e4e18de32a31000d6666bee4e024bca15bc2c58f689c2e0050e0180421603b0091191f5e2462001acccd0003f0db00101c02d9009200202404632ce19665140ffff8000000087000410308143073704430000080801a700a201ac0368072ca8040ffff8000000087000410308143070dc210c00008059001012023256152c0e104160e0c10e10071281c0000205ef401000200000f400141001973865995188006b3335f7270125e50ade162c7b44e170028706aa41a808104420c203008c0034043000c018a17b408285ec90791a2b3800040007f4210840080402581c2082c1c1821c200e25038000040bde802000400001e80028200700101880040a04940bc16006000
+<CG-Config>
+    <criticalExtensions>
+        <c1>
+            <cg-Config>
+                <scg-CellGroupConfig>
+                    08 81 32 5C 40 F1 C0 32 08 6F C6 1A 08 3C C8 39 
+                    0A 83 C4 20 10 65 74 2D CC 60 03 49 C8 F8 02 69 
+                    38 80 00 00 04 D2 C3 1B C6 A0 00 A7 00 A2 01 AC 
+                    03 68 07 3A 40 4D 00 00 26 9C 9C 31 BC 65 46 20 
+                    01 AC CC D7 DC 9C 04 97 94 2B 78 58 B1 ED 13 85 
+                    C0 0A 1C 03 00 84 2C 07 60 12 23 23 EB C4 8C 40 
+                    03 59 99 A0 00 7E 1B 60 02 03 80 5B 20 12 40 04 
+                    04 80 8C 65 9C 32 CC A2 81 FF FF 00 00 00 01 0E 
+                    00 08 20 61 02 86 0E 6E 08 86 00 00 10 10 03 4E 
+                    01 44 03 58 06 D0 0E 59 50 08 1F FF F0 00 00 00 
+                    10 E0 00 82 06 10 28 60 E1 B8 42 18 00 01 00 B2 
+                    00 20 24 04 64 AC 2A 58 1C 20 82 C1 C1 82 1C 20 
+                    0E 25 03 80 00 04 0B DE 80 20 00 40 00 01 E8 00 
+                    28 20 03 2E 70 CB 32 A3 10 00 D6 66 6B EE 4E 02 
+                    4B CA 15 BC 2C 58 F6 89 C2 E0 05 0E 0D 54 83 50 
+                    10 20 88 41 84 06 01 18 00 68 08 60 01 80 31 42 
+                    F6 81 05 0B D9 20 F2 34 56 70 00 08 00 0F E8 42 
+                    10 80 10 08 04 B0 38 41 05 83 83 04 38 40 1C 4A 
+                    07 00 00 08 17 BD 00 40 00 80 00 03 D0 00 50 40 
+                    0E 00 20 31 00
+                </scg-CellGroupConfig>
+                <scg-RB-Config>14 09 28 17 82 C0 0C 00</scg-RB-Config>
+            </cg-Config>
+        </c1>
+    </criticalExtensions>
+</CG-Config>
+[RRC]   Dumping scg_CellGroupConfig: 3090881325c40f1c032086fc61a083cc8390a83c4201065742dcc600349c8f802693880000004d2c31bc6a000a700a201ac0368073a404d0000269c9c31bc65462001acccd7dc9c0497942b7858b1ed1385c00a1c0300842c0760122323ebc48c40035999a0007e1b600203805b2012400404808c659c32cca281ffff000000010e0008206102860e6e088600001010034e0144035806d00e5950081ffff000000010e0008206102860e1b84218000100b20020240464ac2a581c2082c1c1821c200e25038000040bde802000400001e8002820032e70cb32a31000d6666bee4e024bca15bc2c58f689c2e0050e0d54835010208841840601180068086001803142f681050bd920f23456700008000fe8421080100804b038410583830438401c4a0700000817bd004000800003d00050400e00203100
+[RRC]   Dumping scg_RB_Config: 81409281782c00c00
+[RRC]   Dumping nr_SecondaryCellGroupConfig: 3090881325c40f1c032086fc61a083cc8390a83c4201065742dcc600349c8f802693880000004d2c31bc6a000a700a201ac0368073a404d0000269c9c31bc65462001acccd7dc9c0497942b7858b1ed1385c00a1c0300842c0760122323ebc48c40035999a0007e1b600203805b2012400404808c659c32cca281ffff000000010e0008206102860e6e088600001010034e0144035806d00e5950081ffff000000010e0008206102860e1b84218000100b20020240464ac2a581c2082c1c1821c200e25038000040bde802000400001e8002820032e70cb32a31000d6666bee4e024bca15bc2c58f689c2e0050e0d54835010208841840601180068086001803142f681050bd920f23456700008000fe8421080100804b038410583830438401c4a0700000817bd004000800003d00050400e00203100
+[RRC]   Dumping nr_RadioBearerConfig1: 81409281782c00c00
+len = 336
+ 22 02 8c 00 23 08 10 00 ac 24 a0 82 1e 32 04 d4 22 04 c9 71 03 c7 00 c8 21 bf 18 68 20 f3 20 e4 2a 0f 10 80 41 95 d0 b7 31 80 0d 27 23 e0 09 a4 e2 00 00 00 13 4b 0c 6f 1a 80 02 9c 02 88 06 b0 0d a0 1c e9 01 34 00 00 9a 72 70 c6 f1 95 18 80 06 b3 33 5f 72 70 12 5e 50 ad e1 62 c7 b4 4e 17 00 28 70 0c 02 10 b0 1d 80 48 8c 8f af 12 31 00 0d 66 66 80 01 f8 6d 80 08 0e 01 6c 80 49 00 10 12 02 31 96 70 cb 32 8a 07 ff fc 00 00 00 04 38 00 20 81 84 0a 18 39 b8 22 18 00 00 40 40 0d 38 05 10 0d 60 1b 40 39 65 40 20 7f ff c0 00 00 00 43 80 02 08 18 40 a1 83 86 e1 08 60 00 04 02 c8 00 80 90 11 92 b0 a9 60 70 82 0b 07 06 08 70 80 38 94 0e 00 00 10 2f 7a 00 80 01 00 00 07 a0 00 a0 80 0c b9 c3 2c ca 8c 40 03 59 99 af b9 38 09 2f 28 56 f0 b1 63 da 27 0b 80 14 38 35 52 0d 40 40 82 21 06 10 18 04 60 01 a0 21 80 06 00 c5 0b da 04 14 2f 64 83 c8 d1 59 c0 00 20 00 3f a1 08 42 00 40 20 12 c0 e1 04 16 0e 0c 10 e1 00 71 28 1c 00 00 20 5e f4 01 00 02 00 00 0f 40 01 41 00 38 00 80 c4 00 00 00 20 50 24 a0 5e 0b 00 30 00
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] UE State = RRC_RECONFIGURED (default DRB, xid 1)
+[RRC]   E-RAB modification indication: nb nb_of_e_rabs 1 status 4
+[RRC]   S1AP_E_RAB_MODIFICATION_IND: sending the message: nb_of_erabstobemodified 1, total e_rabs 1, index 1
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>50</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <E-RABModificationIndication>
+                <protocolIEs>
+                    <E-RABModificationIndicationIEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </E-RABModificationIndicationIEs>
+                    <E-RABModificationIndicationIEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </E-RABModificationIndicationIEs>
+                    <E-RABModificationIndicationIEs>
+                        <id>199</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <E-RABToBeModifiedListBearerModInd>
+                                <ProtocolIE-SingleContainer>
+                                    <id>200</id>
+                                    <criticality><reject/></criticality>
+                                    <value>
+                                        <E-RABToBeModifiedItemBearerModInd>
+                                            <e-RAB-ID>5</e-RAB-ID>
+                                            <transportLayerAddress>
+                                                11000000101010000001001011000110
+                                            </transportLayerAddress>
+                                            <dL-GTP-TEID>92 CC 30 02</dL-GTP-TEID>
+                                        </E-RABToBeModifiedItemBearerModInd>
+                                    </value>
+                                </ProtocolIE-SingleContainer>
+                            </E-RABToBeModifiedListBearerModInd>
+                        </value>
+                    </E-RABModificationIndicationIEs>
+                </protocolIEs>
+            </E-RABModificationIndication>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[S1AP]   Size of encoded message: 43 
+[S1AP]   initial context setup response: failed e_rab ID 5
+[SCTP]   Successfully sent 43 bytes on stream 1 for assoc_id 903
+[SCTP]   Sctp_sendmsg failed: Message too long
+[GTPV1U]   NW_GTP_END_MARKER
+[PDCP]   Handed SDU is of size 0! Ignoring...
+[GTPV1U]   PDCP data request failed, cause: [UE:43eb]RB is not configured!
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 34 received from port 36412, on stream 1, PPID 18
+[S1AP]   Implementation of S1AP E-RAB Modification confirm handler is pending...
+[MAC]   [eNB 0][PUSCH 1] CC_id 0 874.5 ULSCH in error in round 0, ul_cqi 158, UE_id 0, RNTI 43eb (len 63)
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 18 PUCCH SNR 15
+[X2AP]   X2 has 1 process ongoing
+[X2AP]   X2 has 1 process ongoing
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 15 PUCCH SNR 16
+[RRC]   UE rnti 43eb failure timer 0/8
+[PHY]   prach_I0 = 0.0 dB
+[PHY]   max_I0 19, min_I0 12
+[MAC]   [eNB 0][PUSCH 4] CC_id 0 73.2 ULSCH in error in round 0, ul_cqi 159, UE_id 0, RNTI 43eb (len 63)
+[X2AP]   X2 has 1 process ongoing
+[MAC]   [eNB 0][PUSCH 7] CC_id 0 114.3 ULSCH in error in round 0, ul_cqi 165, UE_id 0, RNTI 43eb (len 63)
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 13 PUCCH SNR 10
+[X2AP]   X2 has 1 process ongoing
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 218.4 ULSCH in error in round 0, ul_cqi 158, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 6] CC_id 0 226.2 ULSCH in error in round 0, ul_cqi 164, UE_id 0, RNTI 43eb (len 63)
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 13 PUCCH SNR 13
+[X2AP]   X2 has 1 process ongoing
+[X2AP]   X2 has 1 process ongoing
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 19 PUCCH SNR 15
+[X2AP]   X2 has 1 process ongoing
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 18 PUCCH SNR 13
+[X2AP]   X2 has 1 process ongoing
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 13 PUCCH SNR 15
+[X2AP]   X2 has 1 process ongoing
+[MAC]   [eNB 0][PUSCH 2] CC_id 0 753.0 ULSCH in error in round 0, ul_cqi 164, UE_id 0, RNTI 43eb (len 63)
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 18 PUCCH SNR 15
+[X2AP]   X2 has 1 process ongoing
+[X2AP]   X2 has 1 process ongoing
+[MAC]   UE  rnti 43eb : in synch, PHR 40 dB DL CQI 15 PUSCH SNR 15 PUCCH SNR 16
+<S1AP-PDU>
+    <initiatingMessage>
+        <procedureCode>13</procedureCode>
+        <criticality><ignore/></criticality>
+        <value>
+            <UplinkNASTransport>
+                <protocolIEs>
+                    <UplinkNASTransport-IEs>
+                        <id>0</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MME-UE-S1AP-ID>553648130</MME-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>8</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <ENB-UE-S1AP-ID>420141</ENB-UE-S1AP-ID>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>26</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NAS-PDU>
+                                27 D6 DB 4F 5E 03 07 45 0B 0B F6 22 F2 10 80 00 
+                                01 00 00 00 37
+                            </NAS-PDU>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>100</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <EUTRAN-CGI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <cell-ID>
+                                    0000000011100000000100000000
+                                </cell-ID>
+                            </EUTRAN-CGI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                    <UplinkNASTransport-IEs>
+                        <id>67</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <TAI>
+                                <pLMNidentity>22 F2 10</pLMNidentity>
+                                <tAC>00 01</tAC>
+                            </TAI>
+                        </value>
+                    </UplinkNASTransport-IEs>
+                </protocolIEs>
+            </UplinkNASTransport>
+        </value>
+    </initiatingMessage>
+</S1AP-PDU>
+[SCTP]   Successfully sent 72 bytes on stream 1 for assoc_id 903
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[SCTP]   Found data for descriptor 86
+[SCTP]   [903][86] Msg of length 25 received from port 36412, on stream 1, PPID 18
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] Logical Channel DL-DCCH, Generate RRCConnectionRelease (bytes 3)
+[RRC]   sent RRC_DCCH_DATA_REQ to TASK_PDCP_ENB
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 927.5 ULSCH in error in round 0, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 928.3 ULSCH in error in round 1, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 929.1 ULSCH in error in round 2, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 929.9 ULSCH in error in round 3, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 930.7 ULSCH in error in round 0, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 931.5 ULSCH in error in round 1, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 932.3 ULSCH in error in round 2, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 933.1 ULSCH in error in round 3, ul_cqi 128, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 933.9 ULSCH in error in round 0, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 934.7 ULSCH in error in round 1, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 935.5 ULSCH in error in round 2, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 3] CC_id 0 936.3 ULSCH in error in round 3, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 936.8 ULSCH in error in round 0, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 937.6 ULSCH in error in round 1, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 938.4 ULSCH in error in round 2, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 939.2 ULSCH in error in round 3, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 940.0 ULSCH in error in round 0, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 940.8 ULSCH in error in round 1, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 941.6 ULSCH in error in round 2, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 942.4 ULSCH in error in round 3, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 943.2 ULSCH in error in round 0, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 944.0 ULSCH in error in round 1, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 944.8 ULSCH in error in round 2, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 945.6 ULSCH in error in round 3, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 946.4 ULSCH in error in round 0, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 947.2 ULSCH in error in round 1, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 948.0 ULSCH in error in round 2, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 948.8 ULSCH in error in round 3, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 949.6 ULSCH in error in round 0, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 950.4 ULSCH in error in round 1, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 951.2 ULSCH in error in round 2, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 952.0 ULSCH in error in round 3, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 952.8 ULSCH in error in round 0, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 953.6 ULSCH in error in round 1, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 954.4 ULSCH in error in round 2, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 955.2 ULSCH in error in round 3, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 956.0 ULSCH in error in round 0, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 956.8 ULSCH in error in round 1, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 957.6 ULSCH in error in round 2, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 958.4 ULSCH in error in round 3, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 959.2 ULSCH in error in round 0, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 960.0 ULSCH in error in round 1, ul_cqi 112, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 960.8 ULSCH in error in round 2, ul_cqi 122, UE_id 0, RNTI 43eb (len 63)
+[MAC]   [eNB 0][PUSCH 0] CC_id 0 961.6 ULSCH in error in round 3, ul_cqi 116, UE_id 0, RNTI 43eb (len 63)
+[MAC]   UE 0 rnti 43eb: UL Failure timer 1 
+[RRC]   S1AP removed entry in hashtable s1ap_id2_s1ap_ids for eNB_ue_s1ap_id 420141
+[RRC]   S1AP removed entry in hashtable initial_id2_s1ap_ids for ue_initial_id 1
+[S1AP]   Removed UE context eNB_ue_s1ap_id 420141
+[SCTP]   Successfully sent 24 bytes on stream 1 for assoc_id 903
+[RRC]   Removing UE 43eb instance after UE_CONTEXT_RELEASE_Complete (ue_release_timer_rrc timeout)
+[RRC]   [eNB 0] Removing UE RNTI 43eb
+[RRC]   Put UE 43eb into freeList
+[RRC]   clean_eNb_dlsch dlsch[2] UE 43eb 
+[MAC]   clean eNb uci_vars[0] UE 43eb 
+[MAC]   clean eNb uci_vars[1] UE 43eb 
+[MAC]   clean eNb uci_vars[2] UE 43eb 
+[MAC]   clean eNb uci_vars[3] UE 43eb 
+[RRC]   remove UE 43eb from ul_config_pdu_list 0/1
+[MAC]   Removing UE 0 from Primary CC_id 0 (rnti 43eb)
+[PDCP]   remove uid is 0/0 43eb
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 43eb] Removed UE context
+[RRC]   [release_UE_in_freeList] remove UE 43eb from freeList
+[X2AP]   X2 has 1 process ongoing
+[SCTP]   Found data for descriptor 86
+[SCTP]   Received notification for sd 86, type 32777
+[PHY]   prach_I0 = 0.0 dB
+[PHY]   max_I0 18, min_I0 12
+[X2AP]   X2 has 1 process ongoing
+[X2AP]   X2 has 1 process ongoing
+[X2AP]   X2 has 1 process ongoing
+
\ No newline at end of file
diff --git a/doc/testing_gnb_w_cots_ue_resources/oai_fr1_lab.jpg b/doc/testing_gnb_w_cots_ue_resources/oai_fr1_lab.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..fccbd9a8a325b26a69a5be87d22852b0b840aad9
Binary files /dev/null and b/doc/testing_gnb_w_cots_ue_resources/oai_fr1_lab.jpg differ
diff --git a/doc/testing_gnb_w_cots_ue_resources/oai_fr1_setup.jpg b/doc/testing_gnb_w_cots_ue_resources/oai_fr1_setup.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..23e3af3c89bdc98aca84f6256ab527d82d9c200d
Binary files /dev/null and b/doc/testing_gnb_w_cots_ue_resources/oai_fr1_setup.jpg differ
diff --git a/doc/testing_gnb_w_cots_ue_resources/oai_fr1_setup.vsdx b/doc/testing_gnb_w_cots_ue_resources/oai_fr1_setup.vsdx
new file mode 100755
index 0000000000000000000000000000000000000000..d424e04c7af285445d46de19cc83dec6028990d5
Binary files /dev/null and b/doc/testing_gnb_w_cots_ue_resources/oai_fr1_setup.vsdx differ
diff --git a/doc/testing_gnb_w_cots_ue_resources/oai_gnb.log b/doc/testing_gnb_w_cots_ue_resources/oai_gnb.log
new file mode 100755
index 0000000000000000000000000000000000000000..37b3c105165a1638f2faca61ad17cda578ce3a36
--- /dev/null
+++ b/doc/testing_gnb_w_cots_ue_resources/oai_gnb.log
@@ -0,0 +1,38680 @@
+[CONFIG] get parameters from libconfig ../../../targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.mozart.slave.conf , debug flags: 0x00000000
+[CONFIG] function config_libconfig_init returned 0
+[CONFIG] config module libconfig loaded
+[LIBCONFIG] config: 1/1 parameters successfully set, (1 to default value)
+Send signal 35 to display resource usage...
+[LIBCONFIG] log_config: 3/3 parameters successfully set, (1 to default value)
+[LIBCONFIG] log_config: 52/52 parameters successfully set, (46 to default value)
+[LIBCONFIG] log_config: 52/52 parameters successfully set, (52 to default value)
+[LIBCONFIG] log_config: 15/15 parameters successfully set, (15 to default value)
+[LIBCONFIG] log_config: 15/15 parameters successfully set, (15 to default value)
+log init done
+[HW]   # /dev/cpu_dma_latency set to 10 us
+[HW]   Can't set cpu frequency
+Reading in command-line options
+[GNB_APP]   Getting GNBSParams
+[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value)
+[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value)
+[LIBCONFIG] THREAD_STRUCT.[0]: 2/2 parameters successfully set, (0 to default value)
+[CONFIG] parallel_conf is set to 0
+[CONFIG] worker_conf is set to 1
+Configuration: nb_rrc_inst 1, nb_nr_L1_inst 1, nb_ru 1
+[LIBCONFIG] (root): 23/23 parameters successfully set, (19 to default value)
+[LIBCONFIG] (root): 5/5 parameters successfully set, (4 to default value)
+[LIBCONFIG] TTracer: 4/4 parameters successfully set, (4 to default value)
+configuring for RAU/RRU
+CPU Freq is 3.092986 
+[TMR]   Starting itti queue: TASK_UNKNOWN as task 0
+[TMR]   Starting itti queue: TASK_TIMER as task 1
+[TMR]   Starting itti queue: TASK_L2L1 as task 2
+[TMR]   Starting itti queue: TASK_BM as task 3
+[TMR]   Starting itti queue: TASK_PHY_ENB as task 4
+[TMR]   Starting itti queue: TASK_MAC_ENB as task 5
+[TMR]   Starting itti queue: TASK_RLC_ENB as task 6
+[TMR]   Starting itti queue: TASK_RRC_ENB_NB_IoT as task 7
+[TMR]   Starting itti queue: TASK_PDCP_ENB as task 8
+[TMR]   Starting itti queue: TASK_DATA_FORWARDING as task 9
+[TMR]   Starting itti queue: TASK_END_MARKER as task 10
+[TMR]   Starting itti queue: TASK_RRC_ENB as task 11
+[TMR]   Starting itti queue: TASK_RRC_GNB as task 12
+[TMR]   Starting itti queue: TASK_RAL_ENB as task 13
+[TMR]   Starting itti queue: TASK_S1AP as task 14
+[TMR]   Starting itti queue: TASK_X2AP as task 15
+[TMR]   Starting itti queue: TASK_M2AP_ENB as task 16
+[TMR]   Starting itti queue: TASK_M2AP_MCE as task 17
+[TMR]   Starting itti queue: TASK_M3AP as task 18
+[TMR]   Starting itti queue: TASK_M3AP_MME as task 19
+[TMR]   Starting itti queue: TASK_M3AP_MCE as task 20
+[TMR]   Starting itti queue: TASK_SCTP as task 21
+[TMR]   Starting itti queue: TASK_ENB_APP as task 22
+[TMR]   Starting itti queue: TASK_GNB_APP as task 23
+[TMR]   Starting itti queue: TASK_MCE_APP as task 24
+[TMR]   Starting itti queue: TASK_MME_APP as task 25
+[TMR]   Starting itti queue: TASK_FLEXRAN_AGENT as task 26
+[TMR]   Starting itti queue: TASK_PHY_UE as task 27
+[TMR]   Starting itti queue: TASK_MAC_UE as task 28
+[TMR]   Starting itti queue: TASK_RLC_UE as task 29
+[TMR]   Starting itti queue: TASK_PDCP_UE as task 30
+[TMR]   Starting itti queue: TASK_RRC_UE as task 31
+[TMR]   Starting itti queue: TASK_NAS_UE as task 32
+[TMR]   Starting itti queue: TASK_RAL_UE as task 33
+[TMR]   Starting itti queue: TASK_MSC as task 34
+[TMR]   Starting itti queue: TASK_GTPV1_U as task 35
+[TMR]   Starting itti queue: TASK_UDP as task 36
+[TMR]   Starting itti queue: TASK_CU_F1 as task 37
+[TMR]   Starting itti queue: TASK_DU_F1 as task 38
+[LIBCONFIG] opt: 3/3 parameters successfully set, (3 to default value)
+[OPT]   OPT disabled
+[NETLINK] Error opening socket -1 (93:Protocol not supported)
+[NETLINK] Opened socket with fd -1
+[NETLINK] Error fcntl (9:Bad file descriptor)
+[HW]   Version: Branch: NR_RRC_harq_hacks Abrev. Hash: 94fa9c5 Date: Fri Jun 19 18:16:53 2020 +0200
+Wait for the ITTI initialize message
+[TMR]   Created Posix thread TASK_L2L1
+[SCTP]   Starting SCTP layer
+[TMR]   Created Posix thread TASK_SCTP
+[LIBCONFIG] eNBs.[0]: 1/1 parameters successfully set, (1 to default value)
+[LIBCONFIG] gNBs.[0]: 1/1 parameters successfully set, (0 to default value)
+[TMR]   Created Posix thread TASK_X2AP
+[UDP]   Initializing UDP task interface
+[UDP]   Initializing UDP task interface: DONE
+[TMR]   Created Posix thread TASK_UDP
+[TMR]   Created Posix thread TASK_GTPV1_U
+[GTPV1U]   Initializing GTPU stack 0x17ce250
+[PHY]   gNB_app_task() Task ready initialize structures
+[TMR]   Created Posix thread TASK_GNB_APP
+[NR_RRC]   Creating NR RRC gNB Task
+[NR_PHY]   RC.gNB = 0x7f518c0008c0
+[LIBCONFIG] L1s.[0]: 24/24 parameters successfully set, (22 to default value)
+[NR_PHY]   RC.gNB[0] = 0x7f51a2f08010
+[NR_RRC]   Entering main loop of NR_RRC message task
+[TMR]   Created Posix thread TASK_RRC_GNB
+Initializing northbound interface for L1
+[PHY]   l1_north_init_gNB() RC.nb_nr_L1_inst:1
+[PHY]   Installing callbacks for IF_Module - UL_indication
+[MAC]   Allocating shared L1/L2 interface structure for instance 0 @ 0x7f518c001970
+[PHY]   l1_north_init_gNB() RC.gNB[0] installing callbacks
+[LIBCONFIG] MACRLCs.[0]: 20/20 parameters successfully set, (17 to default value)
+[MAC]   [MAIN] Init function start:nb_nr_macrlc_inst=1
+NFAPI MODE:MONOLITHIC
+START MAIN THREADS
+RC.nb_nr_L1_inst:1
+Initializing gNB threads single_thread_flag:1 wait_for_sync:0
+[PHY]   gNB L1 structure RC.gNB allocated @ 0x7f518c0008c0
+[PHY]   [lte-softmodem.c] gNB structure RC.gNB[0] allocated @ 0x7f51a2f08010
+[PHY]   Initializing gNB 0 single_thread_flag:1
+[PHY]   Initializing gNB 0
+[PHY]   Registering with MAC interface module (before 0x7f518c001970)
+[PHY]   Installing callbacks for IF_Module - UL_indication
+[PHY]   Registering with MAC interface module (after 0x7f518c001970)
+[PHY]   Setting indication lists
+[PHY]   [nr-softmodem.c] gNB structure allocated
+wait_gNBs()
+Waiting for gNB L1 instances to all get configured ... sleeping 50ms (nb_nr_sL1_inst 1)
+[PDCP]   PDCP layer has been initialized
+[PHY]   Installing callbacks for IF_Module - UL_indication
+[PHY]   gNB_app_task() RC.nb_nr_L1_inst:1
+[PHY]   l1_north_init_gNB() RC.nb_nr_L1_inst:1
+[PHY]   Installing callbacks for IF_Module - UL_indication
+[PHY]   l1_north_init_gNB() RC.gNB[0] installing callbacks
+[GNB_APP]   Allocating gNB_RRC_INST for 1 instances
+[PHY]   gNB_app_task() RC.nb_nr_inst:1 RC.nrrrc:0x7f518c002860
+[PHY]   gNB_app_task() Creating RRC instance RC.nrrrc[0]:0x7f518c002ad0 (1 of 1)
+[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value)
+[LIBCONFIG] gNBs.[0]: 14/14 parameters successfully set, (8 to default value)
+[LIBCONFIG] gNBs.[0].servingCellConfigCommon.[0]: 155/155 parameters successfully set, (83 to default value)
+[RRC]   Read in ServingCellConfigCommon (PhysCellId 0, ABSFREQSSB 641272, DLBand 78, ABSFREQPOINTA 640000, DLBW 106,RACH_TargetReceivedPower -100
+Checking element 15 : 4294967295
+removing pdsch_TimeDomainAllocationList element 15
+List size now 15
+Checking element 14 : 4294967295
+removing pdsch_TimeDomainAllocationList element 14
+List size now 14
+Checking element 13 : 4294967295
+removing pdsch_TimeDomainAllocationList element 13
+List size now 13
+Checking element 12 : 4294967295
+removing pdsch_TimeDomainAllocationList element 12
+List size now 12
+Checking element 11 : 4294967295
+removing pdsch_TimeDomainAllocationList element 11
+List size now 11
+Checking element 10 : 4294967295
+removing pdsch_TimeDomainAllocationList element 10
+List size now 10
+Checking element 9 : 4294967295
+removing pdsch_TimeDomainAllocationList element 9
+List size now 9
+Checking element 8 : 4294967295
+removing pdsch_TimeDomainAllocationList element 8
+List size now 8
+Checking element 7 : 4294967295
+removing pdsch_TimeDomainAllocationList element 7
+List size now 7
+Checking element 6 : 4294967295
+removing pdsch_TimeDomainAllocationList element 6
+List size now 6
+Checking element 5 : 4294967295
+removing pdsch_TimeDomainAllocationList element 5
+List size now 5
+Checking element 4 : 4294967295
+removing pdsch_TimeDomainAllocationList element 4
+List size now 4
+Checking element 3 : 0
+Checking element 2 : 0
+Checking element 1 : 0
+Checking element 0 : 0
+NRRRC 0: Southbound Transport local_mac
+[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value)
+SSB SCO 31
+pdsch_AntennaPorts 1
+[GNB_APP]   Sending configuration message to NR_RRC task
+[X2AP]   X2AP enabled 
+[X2AP]   GNB_ID: 0 
+[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value)
+[NR_RRC]   Received message NRRRC_CONFIGURATION_REQ
+[NR_RRC]   [gNB 0] Received NRRRC_CONFIGURATION_REQ : 0x7f518c00407c
+[NR_RRC]   [FRAME 00000][eNB][MOD 00][RNTI 0] Init...
+[LIBCONFIG] gNBs.[0]: 14/14 parameters successfully set, (8 to default value)
+[LIBCONFIG] gNBs.[0].plmn_list.[0]: 3/3 parameters successfully set, (0 to default value)
+[LIBCONFIG] gNBs.[0].target_enb_x2_ip_address.[0]: 3/3 parameters successfully set, (0 to default value)
+[LIBCONFIG] gNBs.[0]: 2/2 parameters successfully set, (0 to default value)
+[LIBCONFIG] gNBs.[0].SCTP: 2/2 parameters successfully set, (0 to default value)
+[NR_RRC]   [FRAME 00000][eNB][MOD 00][RNTI 0] Checking release 
+[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 7/7 parameters successfully set, (0 to default value)
+[GTPV1U]   Configuring GTPu
+[LIBCONFIG] (root): 2/2 parameters successfully set, (0 to default value)
+[NR_RRC]   Done init_NR_SI
+[LIBCONFIG] gNBs.[0].NETWORK_INTERFACES: 3/3 parameters successfully set, (0 to default value)
+[MAC]   Configuring common parameters from NR ServingCellConfig
+[PHY]   config_common() dl_BandwidthP:40
+[GTPV1U]   Configuring GTPu address : 192.168.18.198 -> c612a8c0
+[PHY]   Computing dl_frequency (pointA 640000 => 3600000000 (dlmin 3300000, nr_bandtable[27].N_OFFs_DL 620000))
+[PHY]   config_common() dl_BandwidthP:40
+[GNB_APP]   [gNB 0] gNB_app_register for instance 0
+[GTPV1U]   Tx UDP_INIT IP addr 192.168.18.198 (868)
+[PHY]   Computing dl_frequency (pointA 640000 => 3600000000 (dlmin 3300000, nr_bandtable[27].N_OFFs_DL 620000))
+[PHY]   Scanning band 1, dl_min 2110000, ul_min 1920000
+[PHY]   Scanning band 2, dl_min 1930000, ul_min 1850000
+[PHY]   Scanning band 3, dl_min 1805000, ul_min 1710000
+[PHY]   Scanning band 5, dl_min 869000, ul_min 824000
+[PHY]   Scanning band 7, dl_min 2620000, ul_min 2500000
+[UDP]   Initializing UDP for local address 192.168.18.198 with port 2152
+[PHY]   Scanning band 8, dl_min 925000, ul_min 880000
+[PHY]   Scanning band 12, dl_min 728000, ul_min 698000
+[PHY]   Scanning band 20, dl_min 791000, ul_min 832000
+[PHY]   Scanning band 25, dl_min 1930000, ul_min 1850000
+[PHY]   Scanning band 28, dl_min 758000, ul_min 703000
+[PHY]   Scanning band 34, dl_min 2010000, ul_min 2010000
+[PHY]   Scanning band 38, dl_min 2570000, ul_min 2570000
+[PHY]   Scanning band 39, dl_min 1880000, ul_min 1880000
+[PHY]   Scanning band 40, dl_min 2300000, ul_min 2300000
+[PHY]   Scanning band 41, dl_min 2496000, ul_min 2496000
+[PHY]   Scanning band 41, dl_min 2496000, ul_min 2496000
+[PHY]   Scanning band 50, dl_min 1432000, ul_min 1432000
+[PHY]   Scanning band 51, dl_min 1427000, ul_min 1427000
+[PHY]   Scanning band 66, dl_min 2110000, ul_min 1710000
+[PHY]   Scanning band 70, dl_min 1995000, ul_min 1695000
+[PHY]   Scanning band 71, dl_min 617000, ul_min 663000
+[PHY]   Scanning band 74, dl_min 1475000, ul_min 1427000
+[PHY]   Scanning band 75, dl_min 1432000, ul_min 0
+[PHY]   Scanning band 76, dl_min 1427000, ul_min 0
+[PHY]   Scanning band 77, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 77, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 78, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 78, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 79, dl_min 4400000, ul_min 4400000
+[PHY]   Scanning band 79, dl_min 4400000, ul_min 4400000
+[PHY]   Scanning band 80, dl_min 0, ul_min 1710000
+[PHY]   Scanning band 81, dl_min 0, ul_min 860000
+[PHY]   Scanning band 82, dl_min 0, ul_min 832000
+[PHY]   Scanning band 83, dl_min 0, ul_min 703000
+[PHY]   Scanning band 84, dl_min 0, ul_min 1920000
+[PHY]   Scanning band 86, dl_min 0, ul_min 1710000
+[PHY]   Scanning band 257, dl_min 26500000, ul_min 26500000
+[PHY]   Scanning band 257, dl_min 26500000, ul_min 26500000
+[PHY]   Scanning band 258, dl_min 24250000, ul_min 24250000
+[PHY]   Scanning band 258, dl_min 24250000, ul_min 24250000
+[PHY]   Scanning band 260, dl_min 37000000, ul_min 37000000
+[PHY]   Scanning band 260, dl_min 37000000, ul_min 37000000
+[PHY]   Scanning band 261, dl_min 27500000, ul_min 27500000
+[PHY]   Scanning band 261, dl_min 27500000, ul_min 27500000
+[PHY]   DL frequency 3600000000: band 78, frame_type 1, UL frequency 3600000000
+ found_sequences 16
+[MAC]   Set TX/RX antenna number to 1 (num ssb 1: 80000000,0)
+[MAC]   Setting TDD configuration period to 6
+[PHY]   TDD has been properly configurated
+[MAC]   rrc_mac_config_req_gNB() /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/openair2/LAYER2/NR_MAC_gNB/config.c:345 RC.nrmac[Mod_idP]->if_inst->NR_PHY_config_req:0x60f680
+[PHY]   Scanning band 1, dl_min 2110000, ul_min 1920000
+[PHY]   Scanning band 2, dl_min 1930000, ul_min 1850000
+[PHY]   Scanning band 3, dl_min 1805000, ul_min 1710000
+[PHY]   Scanning band 5, dl_min 869000, ul_min 824000
+[PHY]   Scanning band 7, dl_min 2620000, ul_min 2500000
+[PHY]   Scanning band 8, dl_min 925000, ul_min 880000
+[PHY]   Scanning band 12, dl_min 728000, ul_min 698000
+[PHY]   Scanning band 20, dl_min 791000, ul_min 832000
+[PHY]   Scanning band 25, dl_min 1930000, ul_min 1850000
+[PHY]   Scanning band 28, dl_min 758000, ul_min 703000
+[PHY]   Scanning band 34, dl_min 2010000, ul_min 2010000
+[PHY]   Scanning band 38, dl_min 2570000, ul_min 2570000
+[PHY]   Scanning band 39, dl_min 1880000, ul_min 1880000
+[PHY]   Scanning band 40, dl_min 2300000, ul_min 2300000
+[PHY]   Scanning band 41, dl_min 2496000, ul_min 2496000
+[PHY]   Scanning band 41, dl_min 2496000, ul_min 2496000
+[PHY]   Scanning band 50, dl_min 1432000, ul_min 1432000
+[PHY]   Scanning band 51, dl_min 1427000, ul_min 1427000
+[PHY]   Scanning band 66, dl_min 2110000, ul_min 1710000
+[PHY]   Scanning band 70, dl_min 1995000, ul_min 1695000
+[PHY]   Scanning band 71, dl_min 617000, ul_min 663000
+[PHY]   Scanning band 74, dl_min 1475000, ul_min 1427000
+[PHY]   Scanning band 75, dl_min 1432000, ul_min 0
+[PHY]   Scanning band 76, dl_min 1427000, ul_min 0
+[PHY]   Scanning band 77, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 77, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 78, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 78, dl_min 3300000, ul_min 3300000
+[PHY]   Scanning band 79, dl_min 4400000, ul_min 4400000
+[PHY]   Scanning band 79, dl_min 4400000, ul_min 4400000
+[PHY]   Scanning band 80, dl_min 0, ul_min 1710000
+[PHY]   Scanning band 81, dl_min 0, ul_min 860000
+[PHY]   Scanning band 82, dl_min 0, ul_min 832000
+[PHY]   Scanning band 83, dl_min 0, ul_min 703000
+[PHY]   Scanning band 84, dl_min 0, ul_min 1920000
+[PHY]   Scanning band 86, dl_min 0, ul_min 1710000
+[PHY]   Scanning band 257, dl_min 26500000, ul_min 26500000
+[PHY]   Scanning band 257, dl_min 26500000, ul_min 26500000
+[PHY]   Scanning band 258, dl_min 24250000, ul_min 24250000
+[PHY]   Scanning band 258, dl_min 24250000, ul_min 24250000
+[PHY]   Scanning band 260, dl_min 37000000, ul_min 37000000
+[PHY]   Scanning band 260, dl_min 37000000, ul_min 37000000
+[PHY]   Scanning band 261, dl_min 27500000, ul_min 27500000
+[PHY]   Scanning band 261, dl_min 27500000, ul_min 27500000
+[PHY]   DL frequency 3619080000: band 78, frame_type 1, UL frequency 3619080000
+[PHY]   Configuring MIB for instance 0, : (Nid_cell 0,DL freq 3619080000, UL freq 3619080000)
+[PHY]   Initializing frame parms for mu 1, N_RB 106, Ncp 0
+[X2AP]   Registered new eNB[0] and home eNB id 3584
+[X2AP]   eNB[0] eNB id 3584 acting as a listner (server)
+[SCTP]   Received SCTP_INIT_MSG_MULTI_REQ
+[UDP]   Inserting new descriptor for task 35, sd 85
+[UDP]   Initializing UDP for local address 192.168.18.198 with port 2152: DONE
+[PHY]   gNB 0 configured
+[NR_RRC]   [FRAME 00000][eNB][MOD 00][RNTI 0] gNB:OPENAIR NR RRC IN....
+[SCTP]   Creating new listen socket on port 36422 with
+[SCTP]   ipv4 addresses:
+[SCTP]   	- 192.168.18.198
+[X2AP]   eNB[0] eNB id 3584 acting as an initiator (client)
+[SCTP]   Converted ipv4 address 192.168.18.199 to network type
+[SCTP]   sctp_connectx SUCCESS, used 1 addresses assoc_id 136
+[SCTP]   Inserted new descriptor for sd 87 in list, nb elements 2, assoc_id 136
+[SCTP]   Found data for descriptor 87
+[SCTP]   Received notification for sd 87, type 32769
+[SCTP]   Client association changed: 0
+[SCTP]   ----------------------
+[SCTP]   Peer addresses:
+[SCTP]       - [192.168.18.199]
+[SCTP]   ----------------------
+[SCTP]   ----------------------
+[SCTP]   SCTP Status:
+[SCTP]   assoc id .....: 136
+[SCTP]   state ........: 4
+[SCTP]   instrms ......: 32
+[SCTP]   outstrms .....: 32
+[SCTP]   fragmentation : 1452
+[SCTP]   pending data .: 0
+[SCTP]   unack data ...: 0
+[SCTP]   rwnd .........: 106496
+[SCTP]   peer info     :
+[SCTP]       state ....: 2
+[SCTP]       cwnd .....: 4380
+[SCTP]       srtt .....: 0
+[SCTP]       rto ......: 3000
+[SCTP]       mtu ......: 1500
+[SCTP]   ----------------------
+[SCTP]   Comm up notified for sd 87, assigned assoc_id 136
+here comes the tree (instance 0):
+---------------------------------------------
+-----------------------
+eNB id 0 (null)
+state 1
+nextstream 0
+in_streams 0 out_streams 0
+cnx_id 1 assoc_id -1
+---------------------------------------------
+here comes the tree (instance 0):
+---------------------------------------------
+-----------------------
+eNB id 0 (null)
+state 1
+nextstream 0
+in_streams 0 out_streams 0
+cnx_id 1 assoc_id -1
+---------------------------------------------
+here comes the tree (instance 0):
+---------------------------------------------
+-----------------------
+eNB id 0 (null)
+state 1
+nextstream 0
+in_streams 0 out_streams 0
+cnx_id 1 assoc_id -1
+---------------------------------------------
+here comes the tree (instance 0):
+---------------------------------------------
+-----------------------
+eNB id 0 (null)
+state 1
+nextstream 0
+in_streams 32 out_streams 32
+cnx_id 1 assoc_id 136
+---------------------------------------------
+[X2AP]   3584 -> 00000e
+[X2AP]   TAC: 25744 -> 006490
+<X2AP-PDU>
+    <initiatingMessage>
+        <procedureCode>36</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <ENDCX2SetupRequest>
+                <protocolIEs>
+                    <ENDCX2SetupRequest-IEs>
+                        <id>244</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <InitiatingNodeType-EndcX2Setup>
+                                <init-en-gNB>
+                                    <En-gNB-ENDCX2SetupReqIEs>
+                                        <id>252</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <GlobalGNB-ID>
+                                                <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                <gNB-ID>
+                                                    <gNB-ID>
+                                                        00000000000000000000111000000000
+                                                    </gNB-ID>
+                                                </gNB-ID>
+                                            </GlobalGNB-ID>
+                                        </value>
+                                    </En-gNB-ENDCX2SetupReqIEs>
+                                    <En-gNB-ENDCX2SetupReqIEs>
+                                        <id>253</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <ServedNRcellsENDCX2ManagementList>
+                                                <SEQUENCE>
+                                                    <servedNRCellInfo>
+                                                        <nrpCI>0</nrpCI>
+                                                        <nrCellID>
+                                                            <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                            <nRcellIdentifier>
+                                                                000000000000000000000000111000000000
+                                                            </nRcellIdentifier>
+                                                        </nrCellID>
+                                                        <fiveGS-TAC>00 64 90</fiveGS-TAC>
+                                                        <broadcastPLMNs>
+                                                            <PLMN-Identity>22 F2 10</PLMN-Identity>
+                                                        </broadcastPLMNs>
+                                                        <nrModeInfo>
+                                                            <tdd>
+                                                                <nRFreqInfo>
+                                                                    <nRARFCN>0</nRARFCN>
+                                                                    <freqBandListNr>
+                                                                        <FreqBandNrItem>
+                                                                            <freqBandIndicatorNr>1</freqBandIndicatorNr>
+                                                                            <supportedSULBandList>
+                                                                                <SupportedSULFreqBandItem>
+                                                                                    <freqBandIndicatorNr>80</freqBandIndicatorNr>
+                                                                                </SupportedSULFreqBandItem>
+                                                                            </supportedSULBandList>
+                                                                        </FreqBandNrItem>
+                                                                    </freqBandListNr>
+                                                                </nRFreqInfo>
+                                                                <nR-TxBW>
+                                                                    <nRSCS><scs15/></nRSCS>
+                                                                    <nRNRB><nrb106/></nRNRB>
+                                                                </nR-TxBW>
+                                                            </tdd>
+                                                        </nrModeInfo>
+                                                        <measurementTimingConfiguration>00</measurementTimingConfiguration>
+                                                    </servedNRCellInfo>
+                                                </SEQUENCE>
+                                            </ServedNRcellsENDCX2ManagementList>
+                                        </value>
+                                    </En-gNB-ENDCX2SetupReqIEs>
+                                </init-en-gNB>
+                            </InitiatingNodeType-EndcX2Setup>
+                        </value>
+                    </ENDCX2SetupRequest-IEs>
+                </protocolIEs>
+            </ENDCX2SetupRequest>
+        </value>
+    </initiatingMessage>
+</X2AP-PDU>
+[SCTP]   Successfully sent 66 bytes on stream 0 for assoc_id 136
+[SCTP]   Found data for descriptor 87
+[SCTP]   Received notification for sd 87, type 32777
+[SCTP]   Found data for descriptor 87
+[SCTP]   [136][87] Msg of length 53 received from port 36422, on stream 0, PPID 27
+<X2AP-PDU>
+    <successfulOutcome>
+        <procedureCode>36</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <ENDCX2SetupResponse>
+                <protocolIEs>
+                    <ENDCX2SetupResponse-IEs>
+                        <id>246</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <RespondingNodeType-EndcX2Setup>
+                                <respond-eNB>
+                                    <ENB-ENDCX2SetupReqAckIEs>
+                                        <id>21</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <GlobalENB-ID>
+                                                <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                <eNB-ID>
+                                                    <macro-eNB-ID>
+                                                        00000000111000000001
+                                                    </macro-eNB-ID>
+                                                </eNB-ID>
+                                            </GlobalENB-ID>
+                                        </value>
+                                    </ENB-ENDCX2SetupReqAckIEs>
+                                    <ENB-ENDCX2SetupReqAckIEs>
+                                        <id>250</id>
+                                        <criticality><reject/></criticality>
+                                        <value>
+                                            <ServedEUTRAcellsENDCX2ManagementList>
+                                                <SEQUENCE>
+                                                    <servedEUTRACellInfo>
+                                                        <pCI>0</pCI>
+                                                        <cellId>
+                                                            <pLMN-Identity>22 F2 10</pLMN-Identity>
+                                                            <eUTRANcellIdentifier>
+                                                                0000000011100000000100000000
+                                                            </eUTRANcellIdentifier>
+                                                        </cellId>
+                                                        <tAC>00 01</tAC>
+                                                        <broadcastPLMNs>
+                                                            <PLMN-Identity>22 F2 10</PLMN-Identity>
+                                                        </broadcastPLMNs>
+                                                        <eUTRA-Mode-Info>
+                                                            <fDD>
+                                                                <uL-EARFCN>21350</uL-EARFCN>
+                                                                <dL-EARFCN>3350</dL-EARFCN>
+                                                                <uL-Transmission-Bandwidth><bw25/></uL-Transmission-Bandwidth>
+                                                                <dL-Transmission-Bandwidth><bw25/></dL-Transmission-Bandwidth>
+                                                            </fDD>
+                                                        </eUTRA-Mode-Info>
+                                                    </servedEUTRACellInfo>
+                                                </SEQUENCE>
+                                            </ServedEUTRAcellsENDCX2ManagementList>
+                                        </value>
+                                    </ENB-ENDCX2SetupReqAckIEs>
+                                </respond-eNB>
+                            </RespondingNodeType-EndcX2Setup>
+                        </value>
+                    </ENDCX2SetupResponse-IEs>
+                </protocolIEs>
+            </ENDCX2SetupResponse>
+        </value>
+    </successfulOutcome>
+</X2AP-PDU>
+[X2AP]   x2ap_eNB_decode_successfuloutcome_message!
+gNB L1 are configured
+About to Init RU threads RC.nb_RU:1
+Initializing RU threads
+configuring RU from file
+[LIBCONFIG] RUs.[0]: 27/27 parameters successfully set, (17 to default value)
+Set RU mask to 1
+Creating RC.ru[0]:0x3ae67d0
+Setting function for RU 0 to gNodeB_3GPP
+[PHY]   number of L1 instances 1, number of RU 1, number of CPU cores 10
+[PHY]   DJP - delete code above this /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/executables/nr-ru.c:2251
+[PHY]   Copying frame parms from gNB in RC to gNB 0 in ru 0 and frame_parms in ru
+configuring ru_id 0 (start_rf 0x5b7120)
+[PHY]   Starting ru_thread 0
+[PHY]   Initializing RU proc 0 (,synch_to_ext_device),
+[PHY]   Starting RU 0 (,synch_to_ext_device),
+[PHY]   Initializing frame parms for mu 1, N_RB 106, Ncp 0
+[PHY]   fp->scs=30000
+[PHY]   fp->ofdm_symbol_size=1536
+[PHY]   fp->nb_prefix_samples0=132
+[PHY]   fp->nb_prefix_samples=108
+[PHY]   fp->slots_per_subframe=2
+[PHY]   fp->samples_per_subframe_wCP=43008
+[PHY]   init_RU_proc() DJP - added creation of pthread_prach
+[PHY]   fp->samples_per_frame_wCP=430080
+[PHY]   fp->samples_per_subframe=46080
+[PHY]   fp->samples_per_frame=460800
+[PHY]   fp->dl_CarrierFreq=3619080000
+[PHY]   fp->ul_CarrierFreq=3619080000
+channel 0, Setting tx_gain offset 0.000000, rx_gain offset 114.000000, tx_freq 3619080000.000000, rx_freq 3619080000.000000
+[PHY]   Initializing RU signal buffers (if_south local RF) nb_tx 1
+[PHY]   [INIT] common.txdata[0] = 0x7f5198339040 (1843200 bytes)
+[PHY]   nb_tx 1
+[PHY]   rxdata_7_5kHz[0] 0x7f51980c1040 for RU 0
+[PHY]   init feptx thread 0
+[PHY]   [INIT] common.txdata_BF= 0x7f517c000aa0 (8 bytes)
+[PHY]   txdataF_BF[0] 0x7f51a2e9c040 for RU 0
+[PHY]   init feptx thread 1
+wait RUs
+[PHY]   Waiting for RUs to be configured ... RC.ru_mask:01
+[PHY]   rxdataF[0] 0x7f51a2e47040 for RU 0
+[PHY]   [INIT] nr_phy_init_RU() RC.nb_nr_L1_inst:1 
+[LIBCONFIG] device.recplay: 7/7 parameters successfully set, (7 to default value)
+[LIBCONFIG] device: 1/1 parameters successfully set, (1 to default value)
+[LIBCONFIG] loader: 2/2 parameters successfully set, (2 to default value)
+[LIBCONFIG] loader.oai_device: 2/2 parameters successfully set, (1 to default value)
+[LOADER] library liboai_device.so successfully loaded
+[HW]   UHD version 3.15.0.0-0-gaea0e2de (3.15.0)
+[HW]   Found USRP b200
+Found USRP b200
+[PHY]   ru_thread_prach() RACH waiting for RU to be configured
+[HW]   Time source set neither in usrp_args nor on command line, using default!
+[HW]   cal 0: freq 3500000000.000000, offset 44.000000, diff 119080000.000000
+[HW]   cal 1: freq 2660000000.000000, offset 49.800000, diff 959080000.000000
+[HW]   cal 2: freq 2300000000.000000, offset 51.000000, diff 1319080000.000000
+[HW]   cal 3: freq 1880000000.000000, offset 53.000000, diff 1739080000.000000
+[HW]   cal 4: freq 816000000.000000, offset 57.000000, diff 2803080000.000000
+[HW]   RX Gain 0 114.000000 (44.000000) => 70.000000 (max 76.000000)
+[HW]   USRP TX_GAIN:89.75 gain_range:89.75 tx_gain:0.00
+[HW]   Actual master clock: 46.080000MHz...
+[HW]   Actual clock source internal...
+[HW]   Actual time source internal...
+[PHY]   ru_thread_prach() RACH waiting for RU to be configured
+[HW]   RF board max packet size 1916, size for 100µs jitter 4608 
+[HW]   rx_max_num_samps 1916
+[HW]   RX Channel 0
+[HW]     Actual RX sample rate: 46.080000MSps...
+[HW]     Actual RX frequency: 3.619080GHz...
+[HW]     Actual RX gain: 70.000000...
+[HW]     Actual RX bandwidth: 40.000000M...
+[HW]     Actual RX antenna: RX2...
+[HW]   TX Channel 0
+[HW]     Actual TX sample rate: 46.080000MSps...
+[HW]     Actual TX frequency: 3.619080GHz...
+[HW]     Actual TX gain: 89.750000...
+[HW]     Actual TX bandwidth: 40.000000M...
+[HW]     Actual TX antenna: TX/RX...
+[HW]     Actual TX packet size: 1916
+[HW]   Device timestamp: 2.171687...
+[HW]   [RAU] has loaded USRP B200 device.
+setup_RU_buffers: frame_parms = 0x7f51a2ec7010
+[PHY]   RU 0 Setting N_TA_offset to 600 samples (factor 1.500000, UL Freq 3600000, N_RB 106)
+[PHY]   Signaling main thread that RU 0 is ready
+waiting for sync (ru_thread,-1/0xf53a58,0x18e6f00,0x17ccc40)
+RC.ru_mask:00
+[PHY]   RUs configured
+ALL RUs READY!
+RC.nb_RU:1
+ALL RUs ready - init gNBs
+Not NFAPI mode - call init_eNB_afterRU()
+[PHY]   init_eNB_afterRU() RC.nb_nr_inst:1
+[PHY]   RC.nb_nr_CC[inst:0]:0x7f51a2f08010
+[PHY]   [gNB 0] phy_init_nr_gNB() About to wait for gNB to be configured
+[LIBCONFIG] loader.dfts: 2/2 parameters successfully set, (1 to default value)
+[LOADER] library libdfts.so successfully loaded
+init_scrambling_luts: s 0 (1) ((1,1),(1,1),(1,1),(1,1))
+init_scrambling_luts: s 1 (-1) ((-1,1),(1,1),(1,1),(1,1))
+init_scrambling_luts: s 2 (1) ((1,-1),(1,1),(1,1),(1,1))
+init_scrambling_luts: s 3 (-1) ((-1,-1),(1,1),(1,1),(1,1))
+init_scrambling_luts: s 4 (1) ((1,1),(-1,1),(1,1),(1,1))
+init_scrambling_luts: s 5 (-1) ((-1,1),(-1,1),(1,1),(1,1))
+init_scrambling_luts: s 6 (1) ((1,-1),(-1,1),(1,1),(1,1))
+init_scrambling_luts: s 7 (-1) ((-1,-1),(-1,1),(1,1),(1,1))
+init_scrambling_luts: s 8 (1) ((1,1),(1,-1),(1,1),(1,1))
+init_scrambling_luts: s 9 (-1) ((-1,1),(1,-1),(1,1),(1,1))
+init_scrambling_luts: s a (1) ((1,-1),(1,-1),(1,1),(1,1))
+init_scrambling_luts: s b (-1) ((-1,-1),(1,-1),(1,1),(1,1))
+init_scrambling_luts: s c (1) ((1,1),(-1,-1),(1,1),(1,1))
+init_scrambling_luts: s d (-1) ((-1,1),(-1,-1),(1,1),(1,1))
+init_scrambling_luts: s e (1) ((1,-1),(-1,-1),(1,1),(1,1))
+init_scrambling_luts: s f (-1) ((-1,-1),(-1,-1),(1,1),(1,1))
+init_scrambling_luts: s 10 (1) ((1,1),(1,1),(-1,1),(1,1))
+init_scrambling_luts: s 11 (-1) ((-1,1),(1,1),(-1,1),(1,1))
+init_scrambling_luts: s 12 (1) ((1,-1),(1,1),(-1,1),(1,1))
+init_scrambling_luts: s 13 (-1) ((-1,-1),(1,1),(-1,1),(1,1))
+init_scrambling_luts: s 14 (1) ((1,1),(-1,1),(-1,1),(1,1))
+init_scrambling_luts: s 15 (-1) ((-1,1),(-1,1),(-1,1),(1,1))
+init_scrambling_luts: s 16 (1) ((1,-1),(-1,1),(-1,1),(1,1))
+init_scrambling_luts: s 17 (-1) ((-1,-1),(-1,1),(-1,1),(1,1))
+init_scrambling_luts: s 18 (1) ((1,1),(1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 19 (-1) ((-1,1),(1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 1a (1) ((1,-1),(1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 1b (-1) ((-1,-1),(1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 1c (1) ((1,1),(-1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 1d (-1) ((-1,1),(-1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 1e (1) ((1,-1),(-1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 1f (-1) ((-1,-1),(-1,-1),(-1,1),(1,1))
+init_scrambling_luts: s 20 (1) ((1,1),(1,1),(1,-1),(1,1))
+init_scrambling_luts: s 21 (-1) ((-1,1),(1,1),(1,-1),(1,1))
+init_scrambling_luts: s 22 (1) ((1,-1),(1,1),(1,-1),(1,1))
+init_scrambling_luts: s 23 (-1) ((-1,-1),(1,1),(1,-1),(1,1))
+init_scrambling_luts: s 24 (1) ((1,1),(-1,1),(1,-1),(1,1))
+init_scrambling_luts: s 25 (-1) ((-1,1),(-1,1),(1,-1),(1,1))
+init_scrambling_luts: s 26 (1) ((1,-1),(-1,1),(1,-1),(1,1))
+init_scrambling_luts: s 27 (-1) ((-1,-1),(-1,1),(1,-1),(1,1))
+init_scrambling_luts: s 28 (1) ((1,1),(1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 29 (-1) ((-1,1),(1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 2a (1) ((1,-1),(1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 2b (-1) ((-1,-1),(1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 2c (1) ((1,1),(-1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 2d (-1) ((-1,1),(-1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 2e (1) ((1,-1),(-1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 2f (-1) ((-1,-1),(-1,-1),(1,-1),(1,1))
+init_scrambling_luts: s 30 (1) ((1,1),(1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 31 (-1) ((-1,1),(1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 32 (1) ((1,-1),(1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 33 (-1) ((-1,-1),(1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 34 (1) ((1,1),(-1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 35 (-1) ((-1,1),(-1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 36 (1) ((1,-1),(-1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 37 (-1) ((-1,-1),(-1,1),(-1,-1),(1,1))
+init_scrambling_luts: s 38 (1) ((1,1),(1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 39 (-1) ((-1,1),(1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 3a (1) ((1,-1),(1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 3b (-1) ((-1,-1),(1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 3c (1) ((1,1),(-1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 3d (-1) ((-1,1),(-1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 3e (1) ((1,-1),(-1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 3f (-1) ((-1,-1),(-1,-1),(-1,-1),(1,1))
+init_scrambling_luts: s 40 (1) ((1,1),(1,1),(1,1),(-1,1))
+init_scrambling_luts: s 41 (-1) ((-1,1),(1,1),(1,1),(-1,1))
+init_scrambling_luts: s 42 (1) ((1,-1),(1,1),(1,1),(-1,1))
+init_scrambling_luts: s 43 (-1) ((-1,-1),(1,1),(1,1),(-1,1))
+init_scrambling_luts: s 44 (1) ((1,1),(-1,1),(1,1),(-1,1))
+init_scrambling_luts: s 45 (-1) ((-1,1),(-1,1),(1,1),(-1,1))
+init_scrambling_luts: s 46 (1) ((1,-1),(-1,1),(1,1),(-1,1))
+init_scrambling_luts: s 47 (-1) ((-1,-1),(-1,1),(1,1),(-1,1))
+init_scrambling_luts: s 48 (1) ((1,1),(1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 49 (-1) ((-1,1),(1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 4a (1) ((1,-1),(1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 4b (-1) ((-1,-1),(1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 4c (1) ((1,1),(-1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 4d (-1) ((-1,1),(-1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 4e (1) ((1,-1),(-1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 4f (-1) ((-1,-1),(-1,-1),(1,1),(-1,1))
+init_scrambling_luts: s 50 (1) ((1,1),(1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 51 (-1) ((-1,1),(1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 52 (1) ((1,-1),(1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 53 (-1) ((-1,-1),(1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 54 (1) ((1,1),(-1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 55 (-1) ((-1,1),(-1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 56 (1) ((1,-1),(-1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 57 (-1) ((-1,-1),(-1,1),(-1,1),(-1,1))
+init_scrambling_luts: s 58 (1) ((1,1),(1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 59 (-1) ((-1,1),(1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 5a (1) ((1,-1),(1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 5b (-1) ((-1,-1),(1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 5c (1) ((1,1),(-1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 5d (-1) ((-1,1),(-1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 5e (1) ((1,-1),(-1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 5f (-1) ((-1,-1),(-1,-1),(-1,1),(-1,1))
+init_scrambling_luts: s 60 (1) ((1,1),(1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 61 (-1) ((-1,1),(1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 62 (1) ((1,-1),(1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 63 (-1) ((-1,-1),(1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 64 (1) ((1,1),(-1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 65 (-1) ((-1,1),(-1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 66 (1) ((1,-1),(-1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 67 (-1) ((-1,-1),(-1,1),(1,-1),(-1,1))
+init_scrambling_luts: s 68 (1) ((1,1),(1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 69 (-1) ((-1,1),(1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 6a (1) ((1,-1),(1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 6b (-1) ((-1,-1),(1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 6c (1) ((1,1),(-1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 6d (-1) ((-1,1),(-1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 6e (1) ((1,-1),(-1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 6f (-1) ((-1,-1),(-1,-1),(1,-1),(-1,1))
+init_scrambling_luts: s 70 (1) ((1,1),(1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 71 (-1) ((-1,1),(1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 72 (1) ((1,-1),(1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 73 (-1) ((-1,-1),(1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 74 (1) ((1,1),(-1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 75 (-1) ((-1,1),(-1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 76 (1) ((1,-1),(-1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 77 (-1) ((-1,-1),(-1,1),(-1,-1),(-1,1))
+init_scrambling_luts: s 78 (1) ((1,1),(1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 79 (-1) ((-1,1),(1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 7a (1) ((1,-1),(1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 7b (-1) ((-1,-1),(1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 7c (1) ((1,1),(-1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 7d (-1) ((-1,1),(-1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 7e (1) ((1,-1),(-1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 7f (-1) ((-1,-1),(-1,-1),(-1,-1),(-1,1))
+init_scrambling_luts: s 80 (1) ((1,1),(1,1),(1,1),(1,-1))
+init_scrambling_luts: s 81 (-1) ((-1,1),(1,1),(1,1),(1,-1))
+init_scrambling_luts: s 82 (1) ((1,-1),(1,1),(1,1),(1,-1))
+init_scrambling_luts: s 83 (-1) ((-1,-1),(1,1),(1,1),(1,-1))
+init_scrambling_luts: s 84 (1) ((1,1),(-1,1),(1,1),(1,-1))
+init_scrambling_luts: s 85 (-1) ((-1,1),(-1,1),(1,1),(1,-1))
+init_scrambling_luts: s 86 (1) ((1,-1),(-1,1),(1,1),(1,-1))
+init_scrambling_luts: s 87 (-1) ((-1,-1),(-1,1),(1,1),(1,-1))
+init_scrambling_luts: s 88 (1) ((1,1),(1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 89 (-1) ((-1,1),(1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 8a (1) ((1,-1),(1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 8b (-1) ((-1,-1),(1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 8c (1) ((1,1),(-1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 8d (-1) ((-1,1),(-1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 8e (1) ((1,-1),(-1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 8f (-1) ((-1,-1),(-1,-1),(1,1),(1,-1))
+init_scrambling_luts: s 90 (1) ((1,1),(1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 91 (-1) ((-1,1),(1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 92 (1) ((1,-1),(1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 93 (-1) ((-1,-1),(1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 94 (1) ((1,1),(-1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 95 (-1) ((-1,1),(-1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 96 (1) ((1,-1),(-1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 97 (-1) ((-1,-1),(-1,1),(-1,1),(1,-1))
+init_scrambling_luts: s 98 (1) ((1,1),(1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s 99 (-1) ((-1,1),(1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s 9a (1) ((1,-1),(1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s 9b (-1) ((-1,-1),(1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s 9c (1) ((1,1),(-1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s 9d (-1) ((-1,1),(-1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s 9e (1) ((1,-1),(-1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s 9f (-1) ((-1,-1),(-1,-1),(-1,1),(1,-1))
+init_scrambling_luts: s a0 (1) ((1,1),(1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a1 (-1) ((-1,1),(1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a2 (1) ((1,-1),(1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a3 (-1) ((-1,-1),(1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a4 (1) ((1,1),(-1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a5 (-1) ((-1,1),(-1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a6 (1) ((1,-1),(-1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a7 (-1) ((-1,-1),(-1,1),(1,-1),(1,-1))
+init_scrambling_luts: s a8 (1) ((1,1),(1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s a9 (-1) ((-1,1),(1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s aa (1) ((1,-1),(1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s ab (-1) ((-1,-1),(1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s ac (1) ((1,1),(-1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s ad (-1) ((-1,1),(-1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s ae (1) ((1,-1),(-1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s af (-1) ((-1,-1),(-1,-1),(1,-1),(1,-1))
+init_scrambling_luts: s b0 (1) ((1,1),(1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b1 (-1) ((-1,1),(1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b2 (1) ((1,-1),(1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b3 (-1) ((-1,-1),(1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b4 (1) ((1,1),(-1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b5 (-1) ((-1,1),(-1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b6 (1) ((1,-1),(-1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b7 (-1) ((-1,-1),(-1,1),(-1,-1),(1,-1))
+init_scrambling_luts: s b8 (1) ((1,1),(1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s b9 (-1) ((-1,1),(1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s ba (1) ((1,-1),(1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s bb (-1) ((-1,-1),(1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s bc (1) ((1,1),(-1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s bd (-1) ((-1,1),(-1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s be (1) ((1,-1),(-1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s bf (-1) ((-1,-1),(-1,-1),(-1,-1),(1,-1))
+init_scrambling_luts: s c0 (1) ((1,1),(1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c1 (-1) ((-1,1),(1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c2 (1) ((1,-1),(1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c3 (-1) ((-1,-1),(1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c4 (1) ((1,1),(-1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c5 (-1) ((-1,1),(-1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c6 (1) ((1,-1),(-1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c7 (-1) ((-1,-1),(-1,1),(1,1),(-1,-1))
+init_scrambling_luts: s c8 (1) ((1,1),(1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s c9 (-1) ((-1,1),(1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s ca (1) ((1,-1),(1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s cb (-1) ((-1,-1),(1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s cc (1) ((1,1),(-1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s cd (-1) ((-1,1),(-1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s ce (1) ((1,-1),(-1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s cf (-1) ((-1,-1),(-1,-1),(1,1),(-1,-1))
+init_scrambling_luts: s d0 (1) ((1,1),(1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d1 (-1) ((-1,1),(1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d2 (1) ((1,-1),(1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d3 (-1) ((-1,-1),(1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d4 (1) ((1,1),(-1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d5 (-1) ((-1,1),(-1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d6 (1) ((1,-1),(-1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d7 (-1) ((-1,-1),(-1,1),(-1,1),(-1,-1))
+init_scrambling_luts: s d8 (1) ((1,1),(1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s d9 (-1) ((-1,1),(1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s da (1) ((1,-1),(1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s db (-1) ((-1,-1),(1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s dc (1) ((1,1),(-1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s dd (-1) ((-1,1),(-1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s de (1) ((1,-1),(-1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s df (-1) ((-1,-1),(-1,-1),(-1,1),(-1,-1))
+init_scrambling_luts: s e0 (1) ((1,1),(1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e1 (-1) ((-1,1),(1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e2 (1) ((1,-1),(1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e3 (-1) ((-1,-1),(1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e4 (1) ((1,1),(-1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e5 (-1) ((-1,1),(-1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e6 (1) ((1,-1),(-1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e7 (-1) ((-1,-1),(-1,1),(1,-1),(-1,-1))
+init_scrambling_luts: s e8 (1) ((1,1),(1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s e9 (-1) ((-1,1),(1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s ea (1) ((1,-1),(1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s eb (-1) ((-1,-1),(1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s ec (1) ((1,1),(-1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s ed (-1) ((-1,1),(-1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s ee (1) ((1,-1),(-1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s ef (-1) ((-1,-1),(-1,-1),(1,-1),(-1,-1))
+init_scrambling_luts: s f0 (1) ((1,1),(1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f1 (-1) ((-1,1),(1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f2 (1) ((1,-1),(1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f3 (-1) ((-1,-1),(1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f4 (1) ((1,1),(-1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f5 (-1) ((-1,1),(-1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f6 (1) ((1,-1),(-1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f7 (-1) ((-1,-1),(-1,1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f8 (1) ((1,1),(1,-1),(-1,-1),(-1,-1))
+init_scrambling_luts: s f9 (-1) ((-1,1),(1,-1),(-1,-1),(-1,-1))
+init_scrambling_luts: s fa (1) ((1,-1),(1,-1),(-1,-1),(-1,-1))
+init_scrambling_luts: s fb (-1) ((-1,-1),(1,-1),(-1,-1),(-1,-1))
+init_scrambling_luts: s fc (1) ((1,1),(-1,-1),(-1,-1),(-1,-1))
+init_scrambling_luts: s fd (-1) ((-1,1),(-1,-1),(-1,-1),(-1,-1))
+init_scrambling_luts: s fe (1) ((1,-1),(-1,-1),(-1,-1),(-1,-1))
+init_scrambling_luts: s ff (-1) ((-1,-1),(-1,-1),(-1,-1),(-1,-1))
+in 0, out 0
+in 1, out ffffffff
+in 2, out 4ba5a933
+in 3, out b45a56cc
+in 4, out 7d910e5a
+in 5, out 826ef1a5
+in 6, out 3634a769
+in 7, out c9cb5896
+[LIBCONFIG] loader.ldpc: 2/2 parameters successfully set, (1 to default value)
+[LOADER] library libldpc.so successfully loaded
+[PHY]   Initialise nr transport
+[PHY]   Allocating Transport Channel Buffers for PUCCH 0/2
+[PHY]   Allocating Transport Channel Buffers for PUCCH 1/2
+[PHY]   Allocating Transport Channel Buffers for DLSCH 0/2
+[PHY]   Allocating Transport Channel Buffers for DLSCH 1/2
+[PHY]   Allocating Transport Channel Buffer for ULSCH, UE 0
+[PHY]   Allocating Transport Channel Buffer for ULSCH, UE 1
+Before ULSCH init : 0x3f4b300
+ULSCH_id 0 : 0x3f4b300
+ULSCH_id 0 (before rx antenna alloc) : 0x3f4b300
+ULSCH_id 0 (before llr alloc) : 0x3f4b300
+ULSCH_id 0 (after llr alloc) : 0x3f4b300
+ULSCH_id 1 : 0x3f4b300
+ULSCH_id 1 (before rx antenna alloc) : 0x3f4b300
+ULSCH_id 1 (before llr alloc) : 0x3f4b300
+ULSCH_id 1 (after llr alloc) : 0x3f4b300
+After ULSCH init : 0x3f4b300
+[PHY]   Mapping RX ports from 1 RUs to gNB 0
+[PHY]   gNB->num_RU:1
+[PHY]   Attaching RU 0 antenna 0 to gNB antenna 0
+[PHY]   Initializing gNB processes instance:0 CC_id 0 
+[PHY]   gNB->single_thread_flag:1
+ALL RUs ready - ALL gNBs ready
+Sending sync to all threads
+About to call end_configmodule() from main() /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/executables/nr-softmodem.c:983
+[CONFIG] calling config module end function...
+got sync (ru_thread)
+[CONFIG] free 398 config value pointers
+Called end_configmodule() from main() /home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/executables/nr-softmodem.c:985
+TYPE <CTRL-C> TO TERMINATE
+Entering ITTI signals handler
+[HW]   Time in secs now: 112963128 
+[HW]   Time in secs last pps: 80717015 
+[PHY]   RU 0 rf device ready
+[PHY]   RU 0 no asynch_south interface
+initializing tx write thread
+end of tx write thread
+[PHY]   tx write thread ready
+[MAC]   Frame 8, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 8 : MIB->BCH  CC_id 0, Received 3 bytes
+[PHY]   ru_thread_prach() RACH waiting for RU to be configured
+[PHY]   ru_thread_prach() RU configured - RACH processing thread running
+[MAC]   Frame 16, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 16 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 24, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 24 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 32, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 32 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 40, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 40 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 48, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 48 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 56, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 56 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 64, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 64 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 72, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 72 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   Frame 80, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 88, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 96, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 104, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 112, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 120, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 128, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 136, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 144, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 152, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 160, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 168, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 176, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 184, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 192, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 200, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 208, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 216, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 224, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 232, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 240, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 248, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 256, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 264, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 272, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 280, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 288, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 296, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 304, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 312, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 320, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 328, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 336, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 344, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 352, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 360, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 368, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 376, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 384, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 392, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 400, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 408, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 416, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 424, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 432, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 440, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 448, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 456, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 464, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 472, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 480, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 488, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 496, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 504, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 512, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 520, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 528, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 536, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 544, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 552, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 560, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 568, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 576, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 584, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 592, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 600, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 608, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 616, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 624, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 632, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 640, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 648, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 656, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 664, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 672, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 680, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 688, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 696, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 704, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 712, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 720, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 728, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 736, slot 0: Adding BCH PDU in position 0 (length 3)
+[SCTP]   Found data for descriptor 87
+[SCTP]   [136][87] Msg of length 2161 received from port 36422, on stream 0, PPID 27
+<X2AP-PDU>
+    <initiatingMessage>
+        <procedureCode>27</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <SgNBAdditionRequest>
+                <protocolIEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>111</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <UE-X2AP-ID>0</UE-X2AP-ID>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>248</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <NRUESecurityCapabilities>
+                                <nRencryptionAlgorithms>
+                                    0000000000000000
+                                </nRencryptionAlgorithms>
+                                <nRintegrityProtectionAlgorithms>
+                                    0000000000000000
+                                </nRintegrityProtectionAlgorithms>
+                            </NRUESecurityCapabilities>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>203</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <SgNBSecurityKey>
+                                0000000000000000000000000000000000000000000000000000000000000000
+                                0000000000000000000000000000000000000000000000000000000000000000
+                                0000000000000000000000000000000000000000000000000000000000000000
+                                0000000000000000000000000000000000000000000000000000000000000000
+                            </SgNBSecurityKey>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>204</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <UEAggregateMaximumBitRate>
+                                <uEaggregateMaximumBitRateDownlink>100000000</uEaggregateMaximumBitRateDownlink>
+                                <uEaggregateMaximumBitRateUplink>100000000</uEaggregateMaximumBitRateUplink>
+                            </UEAggregateMaximumBitRate>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>205</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <E-RABs-ToBeAdded-SgNBAddReqList>
+                                <ProtocolIE-Single-Container>
+                                    <id>209</id>
+                                    <criticality><ignore/></criticality>
+                                    <value>
+                                        <E-RABs-ToBeAdded-SgNBAddReq-Item>
+                                            <e-RAB-ID>5</e-RAB-ID>
+                                            <drb-ID>1</drb-ID>
+                                            <en-DC-ResourceConfiguration>
+                                                <pDCPatSgNB><present/></pDCPatSgNB>
+                                                <mCGresources><not-present/></mCGresources>
+                                                <sCGresources><not-present/></sCGresources>
+                                            </en-DC-ResourceConfiguration>
+                                            <resource-configuration>
+                                                <sgNBPDCPpresent>
+                                                    <full-E-RAB-Level-QoS-Parameters>
+                                                        <qCI>1</qCI>
+                                                        <allocationAndRetentionPriority>
+                                                            <priorityLevel>15</priorityLevel>
+                                                            <pre-emptionCapability><shall-not-trigger-pre-emption/></pre-emptionCapability>
+                                                            <pre-emptionVulnerability><not-pre-emptable/></pre-emptionVulnerability>
+                                                        </allocationAndRetentionPriority>
+                                                    </full-E-RAB-Level-QoS-Parameters>
+                                                    <s1-UL-GTPtunnelEndpoint>
+                                                        <transportLayerAddress>
+                                                            11000000101010000001001001100011
+                                                        </transportLayerAddress>
+                                                        <gTP-TEID>00 00 00 02</gTP-TEID>
+                                                    </s1-UL-GTPtunnelEndpoint>
+                                                </sgNBPDCPpresent>
+                                            </resource-configuration>
+                                        </E-RABs-ToBeAdded-SgNBAddReq-Item>
+                                    </value>
+                                </ProtocolIE-Single-Container>
+                            </E-RABs-ToBeAdded-SgNBAddReqList>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                    <SgNBAdditionRequest-IEs>
+                        <id>206</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <MeNBtoSgNBContainer>
+                                3A 03 08 78 8D DB 80 51 81 80 01 04 0C 20 71 63 
+                                08 11 24 4C C1 93 67 0F A1 4A 99 3A 85 AF CC 58 
+                                FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 
+                                7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF 
+                                FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF 
+                                D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF 
+                                E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 
+                                FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B 
+                                FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF 
+                                FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE 
+                                C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 
+                                2B FF D8 FF FF FF 95 FF DF F3 FF AF A2 0C 00 8C 
+                                85 3C 10 65 3A 54 97 1F C0 68 FE 00 00 00 00 02 
+                                04 BD 80 00 00 08 09 DF 00 00 00 02 EE C0 0C 00 
+                                A0 04 00 04 00 A0 06 00 48 20 0C 10 06 08 03 04 
+                                01 82 10 C1 08 60 84 30 42 18 20 0C 10 06 08 43 
+                                04 21 82 00 C1 00 60 80 30 40 18 20 0C 10 06 18 
+                                02 10 C3 00 42 18 60 08 43 0C 01 08 61 80 21 0C 
+                                30 04 21 86 00 84 30 C0 10 86 10 02 18 40 08 61 
+                                00 21 84 00 86 10 02 18 40 08 61 00 21 84 00 86 
+                                10 02 18 20 0C 10 06 18 02 10 C3 00 42 18 60 08 
+                                43 0C 01 08 61 00 21 84 00 86 10 02 18 41 08 61 
+                                04 21 84 10 86 10 42 18 41 08 61 04 21 84 10 86 
+                                10 42 18 41 08 60 84 30 42 18 21 0C 10 86 00 61 
+                                00 21 84 00 86 10 02 18 40 08 61 00 21 84 00 86 
+                                08 43 04 21 82 00 C1 00 60 04 B4 7D 54 6C 1E 00 
+                                00 2E 81 8C 00 08 20 60 00 02 08 18 20 00 80 06 
+                                10 00 20 81 86 00 08 00 62 00 02 00 18 E0 00 80 
+                                06 58 00 20 01 98 00 08 00 68 00 02 00 1A 20 00 
+                                80 06 90 00 20 01 A6 00 08 00 6C 00 02 00 1B 20 
+                                00 80 06 D8 00 20 00 B8 10 00 5F 08 00 70 80 02 
+                                00 1C A0 00 82 07 30 00 20 01 CE 00 08 20 74 00 
+                                02 08 0D A1 00 0F F0 00 40 07 4C 00 10 11 82 08 
+                                2A 61 03 18 00 10 41 C7 00 04 04 60 82 0A 38 40 
+                                C6 00 04 10 71 80 01 05 08 20 82 8C 10 70 80 01 
+                                04 1C 60 00 41 40 08 20 A3 04 1C 00 00 41 07 4C 
+                                00 10 10 02 08 2A 61 03 00 00 10 41 C2 00 04 14 
+                                00 82 0A 10 41 C0 00 04 10 76 C0 01 01 08 20 82 
+                                B6 10 30 80 01 04 1D 30 00 40 42 08 20 A9 84 0C 
+                                20 00 41 07 1C 00 10 10 82 08 28 E1 03 08 00 10 
+                                43 D3 00 04 04 60 82 84 12 50 02 08 6A 61 03 18 
+                                00 10 50 82 4A 00 41 0D 4C 20 23 04 1C 20 00 49 
+                                40 08 21 A9 84 04 60 82 84 12 70 00 01 04 3D 30 
+                                00 40 46 08 28 41 05 00 20 86 A6 10 31 80 01 05 
+                                08 20 A0 04 10 D4 C2 02 30 41 C2 00 04 14 00 82 
+                                1A 98 40 46 08 28 41 07 00 00 10 42 D3 00 04 04 
+                                60 82 84 12 42 53 08 18 C0 00 82 84 12 42 53 08 
+                                08 C1 07 08 00 12 42 D3 00 04 04 60 82 84 10 42 
+                                53 08 18 C0 00 82 84 10 42 53 08 08 C1 07 08 00 
+                                10 42 D3 00 04 04 60 82 80 10 42 53 08 18 C0 00 
+                                82 80 10 42 53 08 08 C1 07 00 00 10 41 D3 00 04 
+                                04 60 92 0A 98 40 C6 00 04 90 F1 C0 01 01 18 20 
+                                A1 04 14 00 82 1A 38 40 C6 00 04 14 20 82 80 10 
+                                43 47 08 08 C1 07 08 00 10 50 02 08 68 E1 01 18 
+                                20 A1 04 1C 00 00 41 0B 1C 00 10 11 82 0A 10 41 
+                                09 1C 20 63 00 02 0A 10 41 09 1C 20 23 04 1C 20 
+                                00 41 0B 18 00 12 50 82 0A 00 41 09 18 24 E1 00 
+                                02 0A 00 41 09 18 24 A1 04 1C 00 00 41 0B 18 00 
+                                10 50 82 4A 00 41 09 18 20 E1 00 02 4A 00 41 09 
+                                18 20 A1 04 9C 00 00 41 0B 18 00 10 50 82 0A 00 
+                                41 09 18 20 E1 00 02 0A 00 41 09 18 20 A1 04 1C 
+                                00 00 41 07 18 04 12 50 82 08 28 C1 27 08 00 10 
+                                41 C6 00 04 14 20 92 0A 30 41 C2 01 04 90 31 80 
+                                41 24 2D 30 00 40 42 09 28 01 04 25 30 81 84 00 
+                                09 28 01 04 25 30 80 84 12 70 00 01 04 2D 30 00 
+                                40 42 08 28 01 04 25 30 81 84 00 08 28 01 04 25 
+                                30 80 84 10 70 00 01 04 1C 20 10 49 40 08 20 A1 
+                                04 9C 00 00 41 07 4C 00 10 10 82 48 2A 61 03 08 
+                                00 12 40 C2 01 04 9B B6 3F FF FF E5 7F FB 1F FF 
+                                FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 
+                                63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 
+                                95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 1F 
+                                FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC AF 
+                                FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF 
+                                FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 
+                                1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF FC 
+                                AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 FF 
+                                FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 7F 
+                                FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF FF 
+                                FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 
+                                FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 
+                                7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF 
+                                FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF 
+                                D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF 
+                                E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 
+                                FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B 
+                                FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF 
+                                FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE 
+                                C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 
+                                2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F 
+                                FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F 
+                                FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF 
+                                FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 
+                                3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 
+                                5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF 
+                                FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF 
+                                F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF 
+                                F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 
+                                FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA 
+                                FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF 
+                                FF F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF 
+                                B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF 
+                                CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F 
+                                FF FF F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 
+                                FF B1 FF FF FF 2B FF B6 76 00 00 7E C4 0D 9D 80 
+                                00 04 7C EC 00 00 BA 00 00 00 8B C5 E2 F1 78 78 
+                                78 78 72 1E 1E 1E 1E 1E 1E 3F 8F C2 1E 1E 1E 1E 
+                                1E 1E 1E 1E 1E 1E 2F 17 8B 90 F0 F0 F0 F1 78 BC 
+                                5E 1E 1E 1E 1E 1E 1E 1E 1E 1E 1E 1C 8B 80 0F 74 
+                                00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
+                                00 00 00 00 00 00 00 00 04 04 10 04 01 00 40 10 
+                                04 01 00 40 10 04 01 00 40 10 04 01 00 40 10 04 
+                                03 00 0C 00 30 00 C0 03 00 0C 00 30 00 C0 02 00 
+                                20 02 00 20 02 00 20 02 00 20 02 00 10 04 03 00 
+                                0C 00 30 00 C0 02 00 20 02 00 20 02 00 20 02 00 
+                                20 02 00 20 02 00 20 01 00 40 10 04 00 02 00 20 
+                                02 00 20 02 00 20 01 00 40 10 04 00 3E 08 02 40 
+                                07 CC AF 34 08 02 96 3F FF FF FF FF FF FC D2 97 
+                                78 A0 1F 00 08 40 13 0C 00 00 00 00 00 0A A1 34 
+                                91 02 02 00 05 E4 84 12 E2 80 02 6B C0 C0 04 00 
+                                01 04 10 40 00 28 C8 00 00 08 80 00 05 58 E1 00 
+                                00 00 01 4F 7E 03 02 00 00 01 40 48 07 06 0E 22 
+                                0C 00 02 13 60 10 73 E4 20 F0 00 82 40 31 10 00 
+                                A0 58 9B A0 21 94 34 08 81 07 41 86 04 C0 42 54 
+                                41 01 00 80 06 08 1C 1C 22 03 C8 0F 00 20 1A 02 
+                                6E 26 F0 00 09 00 00 00 00 72 A6 80 00 80 00 02 
+                                0C 30 00 1A 55 30 62 00 11 C0 48 16 0C 01 C4 D0 
+                                00 00 00 40 04 03 40 4D 01 04 40 41 4E 9C 00 02 
+                                00 01 00 80 80 10 02 00
+                            </MeNBtoSgNBContainer>
+                        </value>
+                    </SgNBAdditionRequest-IEs>
+                </protocolIEs>
+            </SgNBAdditionRequest>
+        </value>
+    </initiatingMessage>
+</X2AP-PDU>
+[X2AP]   X2AP_ProcedureCode_id_sgNBAdditionPreparation message!
+[X2AP]   X2AP Association id: 136 
+[RRC]   x2u tunnel: index 0 target sgw ip 192.168.18.99 length 32 gtp teid 0
+[NR_RRC]   Received message X2AP_ENDC_SGNB_ADDITION_REQ
+[NR_RRC]   Received ENDC sgNB addition request from X2AP 
+<UL-DCCH-Message>
+    <message>
+        <c1>
+            <ueCapabilityInformation>
+                <rrc-TransactionIdentifier>1</rrc-TransactionIdentifier>
+                <criticalExtensions>
+                    <c1>
+                        <ueCapabilityInformation-r8>
+                            <ue-CapabilityRAT-ContainerList>
+                                <UE-CapabilityRAT-Container>
+                                    <rat-Type><eutra/></rat-Type>
+                                    <ueCapabilityRAT-Container>
+                                        DD B8 05 18 18 00 10 40 C2 07 16 30 81 12 44 CC 
+                                        19 36 70 FA 14 A9 93 A8 5A FC C5 8F FF FF F9 5F 
+                                        FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF 
+                                        FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 
+                                        3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 
+                                        5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF 
+                                        FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF 
+                                        F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF 
+                                        F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 
+                                        FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA 
+                                        FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF 
+                                        FF F9 5F FD FF 3F FA FA 20 C0 08 C8 53 C1 06 53 
+                                        A5 49 71 FC 06 8F E0 00 00 00 00 20 4B D8 00 00 
+                                        00 80 9D F0 00 00 00 2E EC 00 C0 0A 00 40 00 40 
+                                        0A 00 60 04 82 00 C1 00 60 80 30 40 18 21 0C 10 
+                                        86 08 43 04 21 82 00 C1 00 60 84 30 42 18 20 0C 
+                                        10 06 08 03 04 01 82 00 C1 00 61 80 21 0C 30 04 
+                                        21 86 00 84 30 C0 10 86 18 02 10 C3 00 42 18 60 
+                                        08 43 0C 01 08 61 00 21 84 00 86 10 02 18 40 08 
+                                        61 00 21 84 00 86 10 02 18 40 08 61 00 21 82 00 
+                                        C1 00 61 80 21 0C 30 04 21 86 00 84 30 C0 10 86 
+                                        10 02 18 40 08 61 00 21 84 10 86 10 42 18 41 08 
+                                        61 04 21 84 10 86 10 42 18 41 08 61 04 21 84 10 
+                                        86 08 43 04 21 82 10 C1 08 60 06 10 02 18 40 08 
+                                        61 00 21 84 00 86 10 02 18 40 08 60 84 30 42 18 
+                                        20 0C 10 06 00 4B 47 D5 46 C1 E0 00 02 E8 18 C0 
+                                        00 82 06 00 00 20 81 82 00 08 00 61 00 02 08 18 
+                                        60 00 80 06 20 00 20 01 8E 00 08 00 65 80 02 00 
+                                        19 80 00 80 06 80 00 20 01 A2 00 08 00 69 00 02 
+                                        00 1A 60 00 80 06 C0 00 20 01 B2 00 08 00 6D 80 
+                                        02 00 0B 81 00 05 F0 80 07 08 00 20 01 CA 00 08 
+                                        20 73 00 02 00 1C E0 00 82 07 40 00 20 80 DA 10 
+                                        00 FF 00 04 00 74 C0 01 01 18 20 82 A6 10 31 80 
+                                        01 04 1C 70 00 40 46 08 20 A3 84 0C 60 00 41 07 
+                                        18 00 10 50 82 08 28 C1 07 08 00 10 41 C6 00 04 
+                                        14 00 82 0A 30 41 C0 00 04 10 74 C0 01 01 00 20 
+                                        82 A6 10 30 00 01 04 1C 20 00 41 40 08 20 A1 04 
+                                        1C 00 00 41 07 6C 00 10 10 82 08 2B 61 03 08 00 
+                                        10 41 D3 00 04 04 20 82 0A 98 40 C2 00 04 10 71 
+                                        C0 01 01 08 20 82 8E 10 30 80 01 04 3D 30 00 40 
+                                        46 08 28 41 25 00 20 86 A6 10 31 80 01 05 08 24 
+                                        A0 04 10 D4 C2 02 30 41 C2 00 04 94 00 82 1A 98 
+                                        40 46 08 28 41 27 00 00 10 43 D3 00 04 04 60 82 
+                                        84 10 50 02 08 6A 61 03 18 00 10 50 82 0A 00 41 
+                                        0D 4C 20 23 04 1C 20 00 41 40 08 21 A9 84 04 60 
+                                        82 84 10 70 00 01 04 2D 30 00 40 46 08 28 41 24 
+                                        25 30 81 8C 00 08 28 41 24 25 30 80 8C 10 70 80 
+                                        01 24 2D 30 00 40 46 08 28 41 04 25 30 81 8C 00 
+                                        08 28 41 04 25 30 80 8C 10 70 80 01 04 2D 30 00 
+                                        40 46 08 28 01 04 25 30 81 8C 00 08 28 01 04 25 
+                                        30 80 8C 10 70 00 01 04 1D 30 00 40 46 09 20 A9 
+                                        84 0C 60 00 49 0F 1C 00 10 11 82 0A 10 41 40 08 
+                                        21 A3 84 0C 60 00 41 42 08 28 01 04 34 70 80 8C 
+                                        10 70 80 01 05 00 20 86 8E 10 11 82 0A 10 41 C0 
+                                        00 04 10 B1 C0 01 01 18 20 A1 04 10 91 C2 06 30 
+                                        00 20 A1 04 10 91 C2 02 30 41 C2 00 04 10 B1 80 
+                                        01 25 08 20 A0 04 10 91 82 4E 10 00 20 A0 04 10 
+                                        91 82 4A 10 41 C0 00 04 10 B1 80 01 05 08 24 A0 
+                                        04 10 91 82 0E 10 00 24 A0 04 10 91 82 0A 10 49 
+                                        C0 00 04 10 B1 80 01 05 08 20 A0 04 10 91 82 0E 
+                                        10 00 20 A0 04 10 91 82 0A 10 41 C0 00 04 10 71 
+                                        80 41 25 08 20 82 8C 12 70 80 01 04 1C 60 00 41 
+                                        42 09 20 A3 04 1C 20 10 49 03 18 04 12 42 D3 00 
+                                        04 04 20 92 80 10 42 53 08 18 40 00 92 80 10 42 
+                                        53 08 08 41 27 00 00 10 42 D3 00 04 04 20 82 80 
+                                        10 42 53 08 18 40 00 82 80 10 42 53 08 08 41 07 
+                                        00 00 10 41 C2 01 04 94 00 82 0A 10 49 C0 00 04 
+                                        10 74 C0 01 01 08 24 82 A6 10 30 80 01 24 0C 20 
+                                        10 49 BB 63 FF FF FE 57 FF B1 FF FF FF 2B FF D8 
+                                        FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF E5 
+                                        7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 FF 
+                                        FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B FF 
+                                        D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF FF 
+                                        E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE C7 
+                                        FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 2B 
+                                        FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F FF 
+                                        FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F FE 
+                                        C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF FF 
+                                        2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 3F 
+                                        FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 5F 
+                                        FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF FF 
+                                        FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF F6 
+                                        3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF F9 
+                                        5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 FF 
+                                        FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA FF 
+                                        F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF FF 
+                                        F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF B1 
+                                        FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF CA 
+                                        FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F FF 
+                                        FF F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 FF 
+                                        B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF FF 
+                                        CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 8F 
+                                        FF FF F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 57 
+                                        FF B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F FF 
+                                        FF CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF FD 
+                                        8F FF FF F9 5F FE C7 FF FF FC AF FF 63 FF FF FE 
+                                        57 FF B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 7F 
+                                        FF FF CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 BF 
+                                        FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 63 FF FF 
+                                        FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 95 FF EC 
+                                        7F FF FF CA FF F6 3F FF FF E5 7F FB 1F FF FF F2 
+                                        BF FD 8F FF FF F9 5F FE C7 FF FF FC AF FF 63 FF 
+                                        FF FE 57 FF B1 FF FF FF 2B FF D8 FF FF FF 95 FF 
+                                        EC 7F FF FF CA FF F6 3F FF FF E5 7F FB 1F FF FF 
+                                        F2 BF FB 67 60 00 07 EC 40 D9 D8 00 00 47 CE C0 
+                                        00 0B A0 00 00 08 BC 5E 2F 17 87 87 87 87 21 E1 
+                                        E1 E1 E1 E1 E3 F8 FC 21 E1 E1 E1 E1 E1 E1 E1 E1 
+                                        E1 E2 F1 78 B9 0F 0F 0F 0F 17 8B C5 E1 E1 E1 E1 
+                                        E1 E1 E1 E1 E1 E1 E1 C8 B8 00 F7 40 00 00 00 00 
+                                        00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
+                                        00 00 00 00 40 41 00 40 10 04 01 00 40 10 04 01 
+                                        00 40 10 04 01 00 40 10 04 01 00 40 30 00 C0 03 
+                                        00 0C 00 30 00 C0 03 00 0C 00 20 02 00 20 02 00 
+                                        20 02 00 20 02 00 20 01 00 40 30 00 C0 03 00 0C 
+                                        00 20 02 00 20 02 00 20 02 00 20 02 00 20 02 00 
+                                        20 02 00 10 04 01 00 40 00 20 02 00 20 02 00 20 
+                                        02 00 10 04 01 00 40 03 E0 80 24 00 7C CA F3 40 
+                                        80 29 63 FF FF FF FF FF FF CD 29 77 8A 01 F0 00 
+                                        84 01 30 C0 00 00 00 00 00 AA 13 49 10 20 20 00 
+                                        5E 48 41 2E 28 00 26 BC 0C 00 40 00 10 41 04 00 
+                                        02 8C 80 00 00 88 00 00
+                                    </ueCapabilityRAT-Container>
+                                </UE-CapabilityRAT-Container>
+                                <UE-CapabilityRAT-Container>
+                                    <rat-Type><nr/></rat-Type>
+                                    <ueCapabilityRAT-Container>
+                                        E1 00 00 00 01 4F 7E 03 02 00 00 01 40 48 07 06 
+                                        0E 22 0C 00 02 13 60 10 73 E4 20 F0 00 82 40 31 
+                                        10 00 A0 58 9B A0 21 94 34 08 81 07 41 86 04 C0 
+                                        42 54 41 01 00 80 06 08 1C 1C 22 03 C8 0F 00 20 
+                                        1A 02 6E 26 F0 00 09 00 00 00 00 72 A6 80 00 80 
+                                        00 02 0C 30 00 1A 55 30
+                                    </ueCapabilityRAT-Container>
+                                </UE-CapabilityRAT-Container>
+                                <UE-CapabilityRAT-Container>
+                                    <rat-Type><eutra-nr/></rat-Type>
+                                    <ueCapabilityRAT-Container>
+                                        01 1C 04 81 60 C0 1C 4D 00 00 00 04 00 40 34 04 
+                                        D0 10 44 04 14 E9 C0 00 20 00 10 08 08 01 00 20
+                                    </ueCapabilityRAT-Container>
+                                </UE-CapabilityRAT-Container>
+                            </ue-CapabilityRAT-ContainerList>
+                        </ueCapabilityInformation-r8>
+                    </c1>
+                </criticalExtensions>
+            </ueCapabilityInformation>
+        </c1>
+    </message>
+</UL-DCCH-Message>
+[NR_RRC]   Returning new UE context at 0x7f5188003980
+<CellGroupConfig>
+    <cellGroupId>1</cellGroupId>
+    <rlc-BearerToAddModList>
+        <RLC-BearerConfig>
+            <logicalChannelIdentity>4</logicalChannelIdentity>
+            <servedRadioBearer>
+                <drb-Identity>1</drb-Identity>
+            </servedRadioBearer>
+            <reestablishRLC><true/></reestablishRLC>
+            <rlc-Config>
+                <am>
+                    <ul-AM-RLC>
+                        <sn-FieldLength><size18/></sn-FieldLength>
+                        <t-PollRetransmit><ms45/></t-PollRetransmit>
+                        <pollPDU><p64/></pollPDU>
+                        <pollByte><kB500/></pollByte>
+                        <maxRetxThreshold><t32/></maxRetxThreshold>
+                    </ul-AM-RLC>
+                    <dl-AM-RLC>
+                        <sn-FieldLength><size18/></sn-FieldLength>
+                        <t-Reassembly><ms15/></t-Reassembly>
+                        <t-StatusProhibit><ms15/></t-StatusProhibit>
+                    </dl-AM-RLC>
+                </am>
+            </rlc-Config>
+            <mac-LogicalChannelConfig>
+                <ul-SpecificParameters>
+                    <priority>1</priority>
+                    <prioritisedBitRate><infinity/></prioritisedBitRate>
+                    <bucketSizeDuration><ms50/></bucketSizeDuration>
+                    <logicalChannelGroup>1</logicalChannelGroup>
+                    <logicalChannelSR-Mask><false/></logicalChannelSR-Mask>
+                    <logicalChannelSR-DelayTimerApplied><false/></logicalChannelSR-DelayTimerApplied>
+                </ul-SpecificParameters>
+            </mac-LogicalChannelConfig>
+        </RLC-BearerConfig>
+    </rlc-BearerToAddModList>
+    <mac-CellGroupConfig>
+        <bsr-Config>
+            <periodicBSR-Timer><sf80/></periodicBSR-Timer>
+            <retxBSR-Timer><sf320/></retxBSR-Timer>
+        </bsr-Config>
+        <tag-Config>
+            <tag-ToAddModList>
+                <TAG>
+                    <tag-Id>0</tag-Id>
+                    <timeAlignmentTimer><infinity/></timeAlignmentTimer>
+                </TAG>
+            </tag-ToAddModList>
+        </tag-Config>
+        <phr-Config>
+            <setup>
+                <phr-PeriodicTimer><sf20/></phr-PeriodicTimer>
+                <phr-ProhibitTimer><sf0/></phr-ProhibitTimer>
+                <phr-Tx-PowerFactorChange><dB3/></phr-Tx-PowerFactorChange>
+                <multiplePHR><false/></multiplePHR>
+                <dummy><false/></dummy>
+                <phr-Type2OtherCell><false/></phr-Type2OtherCell>
+                <phr-ModeOtherCG><real/></phr-ModeOtherCG>
+            </setup>
+        </phr-Config>
+        <skipUplinkTxDynamic><false/></skipUplinkTxDynamic>
+    </mac-CellGroupConfig>
+    <physicalCellGroupConfig>
+        <p-NR-FR1>20</p-NR-FR1>
+        <pdsch-HARQ-ACK-Codebook><dynamic/></pdsch-HARQ-ACK-Codebook>
+    </physicalCellGroupConfig>
+    <spCellConfig>
+        <servCellIndex>1</servCellIndex>
+        <reconfigurationWithSync>
+            <spCellConfigCommon>
+                <physCellId>0</physCellId>
+                <downlinkConfigCommon>
+                    <frequencyInfoDL>
+                        <absoluteFrequencySSB>641272</absoluteFrequencySSB>
+                        <frequencyBandList>
+                            <FreqBandIndicatorNR>78</FreqBandIndicatorNR>
+                        </frequencyBandList>
+                        <absoluteFrequencyPointA>640000</absoluteFrequencyPointA>
+                        <scs-SpecificCarrierList>
+                            <SCS-SpecificCarrier>
+                                <offsetToCarrier>0</offsetToCarrier>
+                                <subcarrierSpacing><kHz30/></subcarrierSpacing>
+                                <carrierBandwidth>106</carrierBandwidth>
+                            </SCS-SpecificCarrier>
+                        </scs-SpecificCarrierList>
+                    </frequencyInfoDL>
+                    <initialDownlinkBWP>
+                        <genericParameters>
+                            <locationAndBandwidth>6366</locationAndBandwidth>
+                            <subcarrierSpacing><kHz30/></subcarrierSpacing>
+                        </genericParameters>
+                        <pdcch-ConfigCommon>
+                            <setup>
+                                <controlResourceSetZero>0</controlResourceSetZero>
+                                <searchSpaceZero>0</searchSpaceZero>
+                            </setup>
+                        </pdcch-ConfigCommon>
+                        <pdsch-ConfigCommon>
+                            <setup>
+                                <pdsch-TimeDomainAllocationList>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>40</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>53</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>54</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>57</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                </pdsch-TimeDomainAllocationList>
+                            </setup>
+                        </pdsch-ConfigCommon>
+                    </initialDownlinkBWP>
+                </downlinkConfigCommon>
+                <uplinkConfigCommon>
+                    <frequencyInfoUL>
+                        <frequencyBandList>
+                            <FreqBandIndicatorNR>78</FreqBandIndicatorNR>
+                        </frequencyBandList>
+                        <scs-SpecificCarrierList>
+                            <SCS-SpecificCarrier>
+                                <offsetToCarrier>0</offsetToCarrier>
+                                <subcarrierSpacing><kHz30/></subcarrierSpacing>
+                                <carrierBandwidth>106</carrierBandwidth>
+                            </SCS-SpecificCarrier>
+                        </scs-SpecificCarrierList>
+                        <p-Max>20</p-Max>
+                    </frequencyInfoUL>
+                    <initialUplinkBWP>
+                        <genericParameters>
+                            <locationAndBandwidth>6366</locationAndBandwidth>
+                            <subcarrierSpacing><kHz30/></subcarrierSpacing>
+                        </genericParameters>
+                        <rach-ConfigCommon>
+                            <setup>
+                                <rach-ConfigGeneric>
+                                    <prach-ConfigurationIndex>98</prach-ConfigurationIndex>
+                                    <msg1-FDM><one/></msg1-FDM>
+                                    <msg1-FrequencyStart>0</msg1-FrequencyStart>
+                                    <zeroCorrelationZoneConfig>13</zeroCorrelationZoneConfig>
+                                    <preambleReceivedTargetPower>-100</preambleReceivedTargetPower>
+                                    <preambleTransMax><n10/></preambleTransMax>
+                                    <powerRampingStep><dB2/></powerRampingStep>
+                                    <ra-ResponseWindow><sl20/></ra-ResponseWindow>
+                                </rach-ConfigGeneric>
+                                <ssb-perRACH-OccasionAndCB-PreamblesPerSSB>
+                                    <one><n60/></one>
+                                </ssb-perRACH-OccasionAndCB-PreamblesPerSSB>
+                                <ra-ContentionResolutionTimer><sf64/></ra-ContentionResolutionTimer>
+                                <rsrp-ThresholdSSB>19</rsrp-ThresholdSSB>
+                                <prach-RootSequenceIndex>
+                                    <l139>1</l139>
+                                </prach-RootSequenceIndex>
+                                <msg1-SubcarrierSpacing><kHz30/></msg1-SubcarrierSpacing>
+                                <restrictedSetConfig><unrestrictedSet/></restrictedSetConfig>
+                            </setup>
+                        </rach-ConfigCommon>
+                        <pusch-ConfigCommon>
+                            <setup>
+                                <groupHoppingEnabledTransformPrecoding><enabled/></groupHoppingEnabledTransformPrecoding>
+                                <pusch-TimeDomainAllocationList>
+                                    <PUSCH-TimeDomainResourceAllocation>
+                                        <k2>2</k2>
+                                        <mappingType><typeB/></mappingType>
+                                        <startSymbolAndLength>55</startSymbolAndLength>
+                                    </PUSCH-TimeDomainResourceAllocation>
+                                    <PUSCH-TimeDomainResourceAllocation>
+                                        <k2>2</k2>
+                                        <mappingType><typeB/></mappingType>
+                                        <startSymbolAndLength>69</startSymbolAndLength>
+                                    </PUSCH-TimeDomainResourceAllocation>
+                                    <PUSCH-TimeDomainResourceAllocation>
+                                        <k2>7</k2>
+                                        <mappingType><typeB/></mappingType>
+                                        <startSymbolAndLength>52</startSymbolAndLength>
+                                    </PUSCH-TimeDomainResourceAllocation>
+                                </pusch-TimeDomainAllocationList>
+                                <msg3-DeltaPreamble>1</msg3-DeltaPreamble>
+                                <p0-NominalWithGrant>-90</p0-NominalWithGrant>
+                            </setup>
+                        </pusch-ConfigCommon>
+                        <pucch-ConfigCommon>
+                            <setup>
+                                <pucch-ResourceCommon>0</pucch-ResourceCommon>
+                                <pucch-GroupHopping><neither/></pucch-GroupHopping>
+                                <hoppingId>40</hoppingId>
+                                <p0-nominal>-90</p0-nominal>
+                            </setup>
+                        </pucch-ConfigCommon>
+                    </initialUplinkBWP>
+                    <dummy><ms500/></dummy>
+                </uplinkConfigCommon>
+                <ssb-PositionsInBurst>
+                    <mediumBitmap>
+                        10000000
+                    </mediumBitmap>
+                </ssb-PositionsInBurst>
+                <ssb-periodicityServingCell><ms20/></ssb-periodicityServingCell>
+                <dmrs-TypeA-Position><pos2/></dmrs-TypeA-Position>
+                <ssbSubcarrierSpacing><kHz30/></ssbSubcarrierSpacing>
+                <tdd-UL-DL-ConfigurationCommon>
+                    <referenceSubcarrierSpacing><kHz30/></referenceSubcarrierSpacing>
+                    <pattern1>
+                        <dl-UL-TransmissionPeriodicity><ms5/></dl-UL-TransmissionPeriodicity>
+                        <nrofDownlinkSlots>7</nrofDownlinkSlots>
+                        <nrofDownlinkSymbols>6</nrofDownlinkSymbols>
+                        <nrofUplinkSlots>2</nrofUplinkSlots>
+                        <nrofUplinkSymbols>4</nrofUplinkSymbols>
+                    </pattern1>
+                </tdd-UL-DL-ConfigurationCommon>
+                <ss-PBCH-BlockPower>-25</ss-PBCH-BlockPower>
+            </spCellConfigCommon>
+            <newUE-Identity>9195</newUE-Identity>
+            <t304><ms2000/></t304>
+            <rach-ConfigDedicated>
+                <uplink>
+                    <cfra>
+                        <occasions>
+                            <rach-ConfigGeneric>
+                                <prach-ConfigurationIndex>98</prach-ConfigurationIndex>
+                                <msg1-FDM><one/></msg1-FDM>
+                                <msg1-FrequencyStart>0</msg1-FrequencyStart>
+                                <zeroCorrelationZoneConfig>13</zeroCorrelationZoneConfig>
+                                <preambleReceivedTargetPower>-100</preambleReceivedTargetPower>
+                                <preambleTransMax><n10/></preambleTransMax>
+                                <powerRampingStep><dB2/></powerRampingStep>
+                                <ra-ResponseWindow><sl20/></ra-ResponseWindow>
+                            </rach-ConfigGeneric>
+                        </occasions>
+                        <resources>
+                            <ssb>
+                                <ssb-ResourceList>
+                                    <CFRA-SSB-Resource>
+                                        <ssb>0</ssb>
+                                        <ra-PreambleIndex>63</ra-PreambleIndex>
+                                    </CFRA-SSB-Resource>
+                                </ssb-ResourceList>
+                                <ra-ssb-OccasionMaskIndex>0</ra-ssb-OccasionMaskIndex>
+                            </ssb>
+                        </resources>
+                    </cfra>
+                </uplink>
+            </rach-ConfigDedicated>
+        </reconfigurationWithSync>
+        <rlf-TimersAndConstants>
+            <setup>
+                <t310><ms2000/></t310>
+                <n310><n10/></n310>
+                <n311><n1/></n311>
+                <ext1>
+                    <t311-v1530><ms30000/></t311-v1530>
+                </ext1>
+            </setup>
+        </rlf-TimersAndConstants>
+        <spCellConfigDedicated>
+            <initialDownlinkBWP>
+                <pdsch-Config>
+                    <setup>
+                        <dmrs-DownlinkForPDSCH-MappingTypeA>
+                            <setup>
+                                <dmrs-AdditionalPosition><pos0/></dmrs-AdditionalPosition>
+                            </setup>
+                        </dmrs-DownlinkForPDSCH-MappingTypeA>
+                        <resourceAllocation><resourceAllocationType1/></resourceAllocation>
+                        <rbg-Size><config1/></rbg-Size>
+                        <maxNrofCodeWordsScheduledByDCI><n1/></maxNrofCodeWordsScheduledByDCI>
+                        <prb-BundlingType>
+                            <staticBundling>
+                                <bundleSize><wideband/></bundleSize>
+                            </staticBundling>
+                        </prb-BundlingType>
+                    </setup>
+                </pdsch-Config>
+            </initialDownlinkBWP>
+            <downlinkBWP-ToAddModList>
+                <BWP-Downlink>
+                    <bwp-Id>1</bwp-Id>
+                    <bwp-Common>
+                        <genericParameters>
+                            <locationAndBandwidth>28875</locationAndBandwidth>
+                            <subcarrierSpacing><kHz30/></subcarrierSpacing>
+                        </genericParameters>
+                        <pdcch-ConfigCommon>
+                            <setup>
+                                <commonControlResourceSet>
+                                    <controlResourceSetId>1</controlResourceSetId>
+                                    <frequencyDomainResources>
+                                        111111111111111100000000000000000000000000000
+                                    </frequencyDomainResources>
+                                    <duration>1</duration>
+                                    <cce-REG-MappingType>
+                                        <nonInterleaved></nonInterleaved>
+                                    </cce-REG-MappingType>
+                                    <precoderGranularity><sameAsREG-bundle/></precoderGranularity>
+                                    <tci-StatesPDCCH-ToAddList>
+                                        <TCI-StateId>0</TCI-StateId>
+                                        <TCI-StateId>1</TCI-StateId>
+                                        <TCI-StateId>2</TCI-StateId>
+                                        <TCI-StateId>3</TCI-StateId>
+                                        <TCI-StateId>4</TCI-StateId>
+                                        <TCI-StateId>5</TCI-StateId>
+                                        <TCI-StateId>6</TCI-StateId>
+                                        <TCI-StateId>7</TCI-StateId>
+                                    </tci-StatesPDCCH-ToAddList>
+                                </commonControlResourceSet>
+                                <commonSearchSpaceList>
+                                    <SearchSpace>
+                                        <searchSpaceId>1</searchSpaceId>
+                                        <controlResourceSetId>1</controlResourceSetId>
+                                        <monitoringSlotPeriodicityAndOffset>
+                                            <sl1></sl1>
+                                        </monitoringSlotPeriodicityAndOffset>
+                                        <monitoringSymbolsWithinSlot>
+                                            11000000000000
+                                        </monitoringSymbolsWithinSlot>
+                                        <nrofCandidates>
+                                            <aggregationLevel1><n0/></aggregationLevel1>
+                                            <aggregationLevel2><n0/></aggregationLevel2>
+                                            <aggregationLevel4><n1/></aggregationLevel4>
+                                            <aggregationLevel8><n0/></aggregationLevel8>
+                                            <aggregationLevel16><n0/></aggregationLevel16>
+                                        </nrofCandidates>
+                                        <searchSpaceType>
+                                            <common>
+                                                <dci-Format0-0-AndFormat1-0>
+                                                </dci-Format0-0-AndFormat1-0>
+                                            </common>
+                                        </searchSpaceType>
+                                    </SearchSpace>
+                                </commonSearchSpaceList>
+                                <ra-SearchSpace>1</ra-SearchSpace>
+                            </setup>
+                        </pdcch-ConfigCommon>
+                        <pdsch-ConfigCommon>
+                            <setup>
+                                <pdsch-TimeDomainAllocationList>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>40</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>53</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>54</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                    <PDSCH-TimeDomainResourceAllocation>
+                                        <k0>0</k0>
+                                        <mappingType><typeA/></mappingType>
+                                        <startSymbolAndLength>57</startSymbolAndLength>
+                                    </PDSCH-TimeDomainResourceAllocation>
+                                </pdsch-TimeDomainAllocationList>
+                            </setup>
+                        </pdsch-ConfigCommon>
+                    </bwp-Common>
+                    <bwp-Dedicated>
+                        <pdcch-Config>
+                            <setup>
+                                <controlResourceSetToAddModList>
+                                    <ControlResourceSet>
+                                        <controlResourceSetId>1</controlResourceSetId>
+                                        <frequencyDomainResources>
+                                            111111111111111100000000000000000000000000000
+                                        </frequencyDomainResources>
+                                        <duration>1</duration>
+                                        <cce-REG-MappingType>
+                                            <nonInterleaved></nonInterleaved>
+                                        </cce-REG-MappingType>
+                                        <precoderGranularity><sameAsREG-bundle/></precoderGranularity>
+                                        <tci-StatesPDCCH-ToAddList>
+                                            <TCI-StateId>0</TCI-StateId>
+                                            <TCI-StateId>1</TCI-StateId>
+                                            <TCI-StateId>2</TCI-StateId>
+                                            <TCI-StateId>3</TCI-StateId>
+                                            <TCI-StateId>4</TCI-StateId>
+                                            <TCI-StateId>5</TCI-StateId>
+                                            <TCI-StateId>6</TCI-StateId>
+                                            <TCI-StateId>7</TCI-StateId>
+                                        </tci-StatesPDCCH-ToAddList>
+                                    </ControlResourceSet>
+                                </controlResourceSetToAddModList>
+                                <searchSpacesToAddModList>
+                                    <SearchSpace>
+                                        <searchSpaceId>2</searchSpaceId>
+                                        <controlResourceSetId>1</controlResourceSetId>
+                                        <monitoringSlotPeriodicityAndOffset>
+                                            <sl1></sl1>
+                                        </monitoringSlotPeriodicityAndOffset>
+                                        <monitoringSymbolsWithinSlot>
+                                            11000000000000
+                                        </monitoringSymbolsWithinSlot>
+                                        <nrofCandidates>
+                                            <aggregationLevel1><n0/></aggregationLevel1>
+                                            <aggregationLevel2><n0/></aggregationLevel2>
+                                            <aggregationLevel4><n4/></aggregationLevel4>
+                                            <aggregationLevel8><n0/></aggregationLevel8>
+                                            <aggregationLevel16><n0/></aggregationLevel16>
+                                        </nrofCandidates>
+                                        <searchSpaceType>
+                                            <ue-Specific>
+                                                <dci-Formats><formats0-1-And-1-1/></dci-Formats>
+                                            </ue-Specific>
+                                        </searchSpaceType>
+                                    </SearchSpace>
+                                </searchSpacesToAddModList>
+                            </setup>
+                        </pdcch-Config>
+                        <pdsch-Config>
+                            <setup>
+                                <dmrs-DownlinkForPDSCH-MappingTypeA>
+                                    <setup>
+                                        <dmrs-AdditionalPosition><pos0/></dmrs-AdditionalPosition>
+                                    </setup>
+                                </dmrs-DownlinkForPDSCH-MappingTypeA>
+                                <resourceAllocation><resourceAllocationType1/></resourceAllocation>
+                                <rbg-Size><config1/></rbg-Size>
+                                <maxNrofCodeWordsScheduledByDCI><n1/></maxNrofCodeWordsScheduledByDCI>
+                                <prb-BundlingType>
+                                    <staticBundling>
+                                        <bundleSize><wideband/></bundleSize>
+                                    </staticBundling>
+                                </prb-BundlingType>
+                            </setup>
+                        </pdsch-Config>
+                    </bwp-Dedicated>
+                </BWP-Downlink>
+            </downlinkBWP-ToAddModList>
+            <firstActiveDownlinkBWP-Id>1</firstActiveDownlinkBWP-Id>
+            <defaultDownlinkBWP-Id>1</defaultDownlinkBWP-Id>
+            <uplinkConfig>
+                <initialUplinkBWP>
+                    <pusch-Config>
+                        <setup>
+                            <txConfig><codebook/></txConfig>
+                            <dmrs-UplinkForPUSCH-MappingTypeB>
+                                <setup>
+                                    <transformPrecodingDisabled>
+                                    </transformPrecodingDisabled>
+                                </setup>
+                            </dmrs-UplinkForPUSCH-MappingTypeB>
+                            <pusch-PowerControl>
+                                <msg3-Alpha><alpha1/></msg3-Alpha>
+                                <p0-AlphaSets>
+                                    <P0-PUSCH-AlphaSet>
+                                        <p0-PUSCH-AlphaSetId>0</p0-PUSCH-AlphaSetId>
+                                        <p0>0</p0>
+                                        <alpha><alpha1/></alpha>
+                                    </P0-PUSCH-AlphaSet>
+                                </p0-AlphaSets>
+                                <pathlossReferenceRSToAddModList>
+                                    <PUSCH-PathlossReferenceRS>
+                                        <pusch-PathlossReferenceRS-Id>0</pusch-PathlossReferenceRS-Id>
+                                        <referenceSignal>
+                                            <csi-RS-Index>0</csi-RS-Index>
+                                        </referenceSignal>
+                                    </PUSCH-PathlossReferenceRS>
+                                </pathlossReferenceRSToAddModList>
+                            </pusch-PowerControl>
+                            <resourceAllocation><resourceAllocationType1/></resourceAllocation>
+                            <transformPrecoder><disabled/></transformPrecoder>
+                            <codebookSubset><nonCoherent/></codebookSubset>
+                            <maxRank>1</maxRank>
+                        </setup>
+                    </pusch-Config>
+                    <srs-Config>
+                        <setup>
+                            <srs-ResourceSetToAddModList>
+                                <SRS-ResourceSet>
+                                    <srs-ResourceSetId>0</srs-ResourceSetId>
+                                    <srs-ResourceIdList>
+                                        <SRS-ResourceId>0</SRS-ResourceId>
+                                    </srs-ResourceIdList>
+                                    <resourceType>
+                                        <aperiodic>
+                                            <aperiodicSRS-ResourceTrigger>1</aperiodicSRS-ResourceTrigger>
+                                            <slotOffset>2</slotOffset>
+                                        </aperiodic>
+                                    </resourceType>
+                                    <usage><codebook/></usage>
+                                    <alpha><alpha1/></alpha>
+                                    <p0>-80</p0>
+                                </SRS-ResourceSet>
+                            </srs-ResourceSetToAddModList>
+                            <srs-ResourceToAddModList>
+                                <SRS-Resource>
+                                    <srs-ResourceId>0</srs-ResourceId>
+                                    <nrofSRS-Ports><port1/></nrofSRS-Ports>
+                                    <transmissionComb>
+                                        <n2>
+                                            <combOffset-n2>0</combOffset-n2>
+                                            <cyclicShift-n2>0</cyclicShift-n2>
+                                        </n2>
+                                    </transmissionComb>
+                                    <resourceMapping>
+                                        <startPosition>2</startPosition>
+                                        <nrofSymbols><n1/></nrofSymbols>
+                                        <repetitionFactor><n1/></repetitionFactor>
+                                    </resourceMapping>
+                                    <freqDomainPosition>0</freqDomainPosition>
+                                    <freqDomainShift>0</freqDomainShift>
+                                    <freqHopping>
+                                        <c-SRS>61</c-SRS>
+                                        <b-SRS>0</b-SRS>
+                                        <b-hop>0</b-hop>
+                                    </freqHopping>
+                                    <groupOrSequenceHopping><neither/></groupOrSequenceHopping>
+                                    <resourceType>
+                                        <aperiodic>
+                                        </aperiodic>
+                                    </resourceType>
+                                    <sequenceId>40</sequenceId>
+                                    <spatialRelationInfo>
+                                        <referenceSignal>
+                                            <csi-RS-Index>0</csi-RS-Index>
+                                        </referenceSignal>
+                                    </spatialRelationInfo>
+                                </SRS-Resource>
+                            </srs-ResourceToAddModList>
+                        </setup>
+                    </srs-Config>
+                </initialUplinkBWP>
+                <uplinkBWP-ToAddModList>
+                    <BWP-Uplink>
+                        <bwp-Id>1</bwp-Id>
+                        <bwp-Common>
+                            <genericParameters>
+                                <locationAndBandwidth>28875</locationAndBandwidth>
+                                <subcarrierSpacing><kHz30/></subcarrierSpacing>
+                            </genericParameters>
+                            <rach-ConfigCommon>
+                                <setup>
+                                    <rach-ConfigGeneric>
+                                        <prach-ConfigurationIndex>98</prach-ConfigurationIndex>
+                                        <msg1-FDM><one/></msg1-FDM>
+                                        <msg1-FrequencyStart>0</msg1-FrequencyStart>
+                                        <zeroCorrelationZoneConfig>13</zeroCorrelationZoneConfig>
+                                        <preambleReceivedTargetPower>-100</preambleReceivedTargetPower>
+                                        <preambleTransMax><n10/></preambleTransMax>
+                                        <powerRampingStep><dB2/></powerRampingStep>
+                                        <ra-ResponseWindow><sl20/></ra-ResponseWindow>
+                                    </rach-ConfigGeneric>
+                                    <ssb-perRACH-OccasionAndCB-PreamblesPerSSB>
+                                        <one><n60/></one>
+                                    </ssb-perRACH-OccasionAndCB-PreamblesPerSSB>
+                                    <ra-ContentionResolutionTimer><sf64/></ra-ContentionResolutionTimer>
+                                    <rsrp-ThresholdSSB>19</rsrp-ThresholdSSB>
+                                    <prach-RootSequenceIndex>
+                                        <l139>1</l139>
+                                    </prach-RootSequenceIndex>
+                                    <msg1-SubcarrierSpacing><kHz30/></msg1-SubcarrierSpacing>
+                                    <restrictedSetConfig><unrestrictedSet/></restrictedSetConfig>
+                                </setup>
+                            </rach-ConfigCommon>
+                            <pusch-ConfigCommon>
+                                <setup>
+                                    <groupHoppingEnabledTransformPrecoding><enabled/></groupHoppingEnabledTransformPrecoding>
+                                    <pusch-TimeDomainAllocationList>
+                                        <PUSCH-TimeDomainResourceAllocation>
+                                            <k2>2</k2>
+                                            <mappingType><typeB/></mappingType>
+                                            <startSymbolAndLength>55</startSymbolAndLength>
+                                        </PUSCH-TimeDomainResourceAllocation>
+                                        <PUSCH-TimeDomainResourceAllocation>
+                                            <k2>2</k2>
+                                            <mappingType><typeB/></mappingType>
+                                            <startSymbolAndLength>69</startSymbolAndLength>
+                                        </PUSCH-TimeDomainResourceAllocation>
+                                        <PUSCH-TimeDomainResourceAllocation>
+                                            <k2>7</k2>
+                                            <mappingType><typeB/></mappingType>
+                                            <startSymbolAndLength>52</startSymbolAndLength>
+                                        </PUSCH-TimeDomainResourceAllocation>
+                                    </pusch-TimeDomainAllocationList>
+                                    <msg3-DeltaPreamble>1</msg3-DeltaPreamble>
+                                    <p0-NominalWithGrant>-90</p0-NominalWithGrant>
+                                </setup>
+                            </pusch-ConfigCommon>
+                            <pucch-ConfigCommon>
+                                <setup>
+                                    <pucch-ResourceCommon>0</pucch-ResourceCommon>
+                                    <pucch-GroupHopping><neither/></pucch-GroupHopping>
+                                    <hoppingId>40</hoppingId>
+                                    <p0-nominal>-90</p0-nominal>
+                                </setup>
+                            </pucch-ConfigCommon>
+                        </bwp-Common>
+                        <bwp-Dedicated>
+                            <pucch-Config>
+                                <setup>
+                                    <resourceSetToAddModList>
+                                        <PUCCH-ResourceSet>
+                                            <pucch-ResourceSetId>0</pucch-ResourceSetId>
+                                            <resourceList>
+                                                <PUCCH-ResourceId>1</PUCCH-ResourceId>
+                                                <PUCCH-ResourceId>2</PUCCH-ResourceId>
+                                            </resourceList>
+                                        </PUCCH-ResourceSet>
+                                        <PUCCH-ResourceSet>
+                                            <pucch-ResourceSetId>1</pucch-ResourceSetId>
+                                            <resourceList>
+                                                <PUCCH-ResourceId>3</PUCCH-ResourceId>
+                                                <PUCCH-ResourceId>4</PUCCH-ResourceId>
+                                            </resourceList>
+                                        </PUCCH-ResourceSet>
+                                    </resourceSetToAddModList>
+                                    <resourceToAddModList>
+                                        <PUCCH-Resource>
+                                            <pucch-ResourceId>1</pucch-ResourceId>
+                                            <startingPRB>48</startingPRB>
+                                            <format>
+                                                <format0>
+                                                    <initialCyclicShift>0</initialCyclicShift>
+                                                    <nrofSymbols>1</nrofSymbols>
+                                                    <startingSymbolIndex>13</startingSymbolIndex>
+                                                </format0>
+                                            </format>
+                                        </PUCCH-Resource>
+                                        <PUCCH-Resource>
+                                            <pucch-ResourceId>2</pucch-ResourceId>
+                                            <startingPRB>48</startingPRB>
+                                            <format>
+                                                <format0>
+                                                    <initialCyclicShift>0</initialCyclicShift>
+                                                    <nrofSymbols>1</nrofSymbols>
+                                                    <startingSymbolIndex>12</startingSymbolIndex>
+                                                </format0>
+                                            </format>
+                                        </PUCCH-Resource>
+                                        <PUCCH-Resource>
+                                            <pucch-ResourceId>3</pucch-ResourceId>
+                                            <startingPRB>40</startingPRB>
+                                            <format>
+                                                <format2>
+                                                    <nrofPRBs>16</nrofPRBs>
+                                                    <nrofSymbols>1</nrofSymbols>
+                                                    <startingSymbolIndex>13</startingSymbolIndex>
+                                                </format2>
+                                            </format>
+                                        </PUCCH-Resource>
+                                        <PUCCH-Resource>
+                                            <pucch-ResourceId>4</pucch-ResourceId>
+                                            <startingPRB>40</startingPRB>
+                                            <format>
+                                                <format2>
+                                                    <nrofPRBs>16</nrofPRBs>
+                                                    <nrofSymbols>1</nrofSymbols>
+                                                    <startingSymbolIndex>12</startingSymbolIndex>
+                                                </format2>
+                                            </format>
+                                        </PUCCH-Resource>
+                                    </resourceToAddModList>
+                                    <format2>
+                                        <setup>
+                                            <maxCodeRate><zeroDot15/></maxCodeRate>
+                                        </setup>
+                                    </format2>
+                                    <dl-DataToUL-ACK>
+                                        <INTEGER>2</INTEGER>
+                                        <INTEGER>3</INTEGER>
+                                        <INTEGER>4</INTEGER>
+                                        <INTEGER>5</INTEGER>
+                                        <INTEGER>6</INTEGER>
+                                        <INTEGER>7</INTEGER>
+                                        <INTEGER>0</INTEGER>
+                                        <INTEGER>0</INTEGER>
+                                    </dl-DataToUL-ACK>
+                                    <spatialRelationInfoToAddModList>
+                                        <PUCCH-SpatialRelationInfo>
+                                            <pucch-SpatialRelationInfoId>1</pucch-SpatialRelationInfoId>
+                                            <referenceSignal>
+                                                <csi-RS-Index>0</csi-RS-Index>
+                                            </referenceSignal>
+                                            <pucch-PathlossReferenceRS-Id>0</pucch-PathlossReferenceRS-Id>
+                                            <p0-PUCCH-Id>1</p0-PUCCH-Id>
+                                            <closedLoopIndex><i0/></closedLoopIndex>
+                                        </PUCCH-SpatialRelationInfo>
+                                    </spatialRelationInfoToAddModList>
+                                    <pucch-PowerControl>
+                                        <deltaF-PUCCH-f0>0</deltaF-PUCCH-f0>
+                                        <deltaF-PUCCH-f1>0</deltaF-PUCCH-f1>
+                                        <deltaF-PUCCH-f2>0</deltaF-PUCCH-f2>
+                                        <deltaF-PUCCH-f3>0</deltaF-PUCCH-f3>
+                                        <deltaF-PUCCH-f4>0</deltaF-PUCCH-f4>
+                                        <p0-Set>
+                                            <P0-PUCCH>
+                                                <p0-PUCCH-Id>1</p0-PUCCH-Id>
+                                                <p0-PUCCH-Value>0</p0-PUCCH-Value>
+                                            </P0-PUCCH>
+                                        </p0-Set>
+                                        <pathlossReferenceRSs>
+                                            <PUCCH-PathlossReferenceRS>
+                                                <pucch-PathlossReferenceRS-Id>0</pucch-PathlossReferenceRS-Id>
+                                                <referenceSignal>
+                                                    <csi-RS-Index>0</csi-RS-Index>
+                                                </referenceSignal>
+                                            </PUCCH-PathlossReferenceRS>
+                                        </pathlossReferenceRSs>
+                                    </pucch-PowerControl>
+                                </setup>
+                            </pucch-Config>
+                            <pusch-Config>
+                                <setup>
+                                    <txConfig><codebook/></txConfig>
+                                    <dmrs-UplinkForPUSCH-MappingTypeB>
+                                        <setup>
+                                            <transformPrecodingDisabled>
+                                            </transformPrecodingDisabled>
+                                        </setup>
+                                    </dmrs-UplinkForPUSCH-MappingTypeB>
+                                    <pusch-PowerControl>
+                                        <msg3-Alpha><alpha1/></msg3-Alpha>
+                                        <p0-AlphaSets>
+                                            <P0-PUSCH-AlphaSet>
+                                                <p0-PUSCH-AlphaSetId>0</p0-PUSCH-AlphaSetId>
+                                                <p0>0</p0>
+                                                <alpha><alpha1/></alpha>
+                                            </P0-PUSCH-AlphaSet>
+                                        </p0-AlphaSets>
+                                        <pathlossReferenceRSToAddModList>
+                                            <PUSCH-PathlossReferenceRS>
+                                                <pusch-PathlossReferenceRS-Id>0</pusch-PathlossReferenceRS-Id>
+                                                <referenceSignal>
+                                                    <csi-RS-Index>0</csi-RS-Index>
+                                                </referenceSignal>
+                                            </PUSCH-PathlossReferenceRS>
+                                        </pathlossReferenceRSToAddModList>
+                                    </pusch-PowerControl>
+                                    <resourceAllocation><resourceAllocationType1/></resourceAllocation>
+                                    <transformPrecoder><disabled/></transformPrecoder>
+                                    <codebookSubset><nonCoherent/></codebookSubset>
+                                    <maxRank>1</maxRank>
+                                </setup>
+                            </pusch-Config>
+                            <srs-Config>
+                                <setup>
+                                    <srs-ResourceSetToAddModList>
+                                        <SRS-ResourceSet>
+                                            <srs-ResourceSetId>0</srs-ResourceSetId>
+                                            <srs-ResourceIdList>
+                                                <SRS-ResourceId>0</SRS-ResourceId>
+                                            </srs-ResourceIdList>
+                                            <resourceType>
+                                                <aperiodic>
+                                                    <aperiodicSRS-ResourceTrigger>1</aperiodicSRS-ResourceTrigger>
+                                                    <slotOffset>2</slotOffset>
+                                                </aperiodic>
+                                            </resourceType>
+                                            <usage><codebook/></usage>
+                                            <alpha><alpha1/></alpha>
+                                            <p0>-80</p0>
+                                        </SRS-ResourceSet>
+                                    </srs-ResourceSetToAddModList>
+                                    <srs-ResourceToAddModList>
+                                        <SRS-Resource>
+                                            <srs-ResourceId>0</srs-ResourceId>
+                                            <nrofSRS-Ports><port1/></nrofSRS-Ports>
+                                            <transmissionComb>
+                                                <n2>
+                                                    <combOffset-n2>0</combOffset-n2>
+                                                    <cyclicShift-n2>0</cyclicShift-n2>
+                                                </n2>
+                                            </transmissionComb>
+                                            <resourceMapping>
+                                                <startPosition>2</startPosition>
+                                                <nrofSymbols><n1/></nrofSymbols>
+                                                <repetitionFactor><n1/></repetitionFactor>
+                                            </resourceMapping>
+                                            <freqDomainPosition>0</freqDomainPosition>
+                                            <freqDomainShift>0</freqDomainShift>
+                                            <freqHopping>
+                                                <c-SRS>61</c-SRS>
+                                                <b-SRS>0</b-SRS>
+                                                <b-hop>0</b-hop>
+                                            </freqHopping>
+                                            <groupOrSequenceHopping><neither/></groupOrSequenceHopping>
+                                            <resourceType>
+                                                <aperiodic>
+                                                </aperiodic>
+                                            </resourceType>
+                                            <sequenceId>40</sequenceId>
+                                            <spatialRelationInfo>
+                                                <referenceSignal>
+                                                    <csi-RS-Index>0</csi-RS-Index>
+                                                </referenceSignal>
+                                            </spatialRelationInfo>
+                                        </SRS-Resource>
+                                    </srs-ResourceToAddModList>
+                                </setup>
+                            </srs-Config>
+                        </bwp-Dedicated>
+                    </BWP-Uplink>
+                </uplinkBWP-ToAddModList>
+                <firstActiveUplinkBWP-Id>1</firstActiveUplinkBWP-Id>
+            </uplinkConfig>
+            <pdsch-ServingCellConfig>
+                <setup>
+                    <ext1>
+                        <maxMIMO-Layers>2</maxMIMO-Layers>
+                    </ext1>
+                </setup>
+            </pdsch-ServingCellConfig>
+            <tag-Id>0</tag-Id>
+        </spCellConfigDedicated>
+    </spCellConfig>
+</CellGroupConfig>
+<RadioBearerConfig>
+    <drb-ToAddModList>
+        <DRB-ToAddMod>
+            <cnAssociation>
+                <eps-BearerIdentity>5</eps-BearerIdentity>
+            </cnAssociation>
+            <drb-Identity>1</drb-Identity>
+            <pdcp-Config>
+                <drb>
+                    <discardTimer><ms30/></discardTimer>
+                    <pdcp-SN-SizeUL><len18bits/></pdcp-SN-SizeUL>
+                    <pdcp-SN-SizeDL><len18bits/></pdcp-SN-SizeDL>
+                    <headerCompression>
+                        <notUsed></notUsed>
+                    </headerCompression>
+                </drb>
+                <t-Reordering><ms0/></t-Reordering>
+            </pdcp-Config>
+        </DRB-ToAddMod>
+    </drb-ToAddModList>
+    <securityConfig>
+        <securityAlgorithmConfig>
+            <cipheringAlgorithm><nea0/></cipheringAlgorithm>
+        </securityAlgorithmConfig>
+        <keyToUse><master/></keyToUse>
+    </securityConfig>
+</RadioBearerConfig>
+[RRC]   Dumping NR_RRCReconfiguration message (309 bytes)
+0881325c40f1c032086fc61a083cc8390a83c4201065742dcc600349c8f802693880000004d2c31bc6a000a700a201ac0368073a404d0000269c9c31bc65462001acccd7dc9c0497942b7858b1ed1385c00a1c0300842c0760122323ebc48c40035999a0007e1b600203805b2012400404808c659c32cca281ffff000000010e0008206102860e6e088600001010034e0144035806d00e5950081ffff000000010e0008206102860e1b84218000100b20020240464ac2a581c2082c1c1821c200e25038000040bde802000400001e8002820032e70cb32a31000d6666bee4e024bca15bc2c58f689c2e0050e0d54835010208841840601180068086001803142f681050bd920f23456700008000fe8421080100804b038410583830438401c4a0700000817bd004000800003d00050400e00203100
+[RRC]   Dumping scg_RB_Config message (8 bytes)
+1409281782c00c00
+[RRC]   S1-U tunnel: index 0 target sgw ip 192.168.18.99 length 32 gtp teid 2
+[GTPV1U]   Configured GTPu address : c612a8c0
+[GTPV1U]   Copied to create_tunnel_resp tunnel: index 0 target gNB ip 192.168.18.198 length 4 gtp teid 2462855170
+[RRC]   [FRAME 00000][eNB][MOD 00][RNTI 23eb] rrc_eNB_process_GTPV1U_CREATE_TUNNEL_RESP tunnel (2462855170, 2462855170) bearer UE context index 0, msg index 0, id 5, gtp addr len 4 
+[RRC]   S1-U create_tunnel_resp tunnel: index 0 target gNB ip 192.168.18.198 length 4 gtp teid 2462855170
+[RRC]   X2AP sGNB Addition Request: index 0 target gNB ip 192.168.18.198 length 32 gtp teid 2462855170
+[MAC]   [gNB 0] Adding UE with rnti 23eb (next avail 0, num_UEs 0)
+[MAC]   gNB 0] Add NR UE_id 0 : rnti 23eb
+[PHY]   Added new UE_id 0/23eb with initial secondaryCellGroup
+<X2AP-PDU>
+    <successfulOutcome>
+        <procedureCode>27</procedureCode>
+        <criticality><reject/></criticality>
+        <value>
+            <SgNBAdditionRequestAcknowledge>
+                <protocolIEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>111</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <UE-X2AP-ID>0</UE-X2AP-ID>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>207</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <SgNB-UE-X2AP-ID>0</SgNB-UE-X2AP-ID>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>210</id>
+                        <criticality><ignore/></criticality>
+                        <value>
+                            <E-RABs-Admitted-ToBeAdded-SgNBAddReqAckList>
+                                <ProtocolIE-Single-Container>
+                                    <id>213</id>
+                                    <criticality><ignore/></criticality>
+                                    <value>
+                                        <E-RABs-Admitted-ToBeAdded-SgNBAddReqAck-Item>
+                                            <e-RAB-ID>5</e-RAB-ID>
+                                            <en-DC-ResourceConfiguration>
+                                                <pDCPatSgNB><present/></pDCPatSgNB>
+                                                <mCGresources><not-present/></mCGresources>
+                                                <sCGresources><not-present/></sCGresources>
+                                            </en-DC-ResourceConfiguration>
+                                            <resource-configuration>
+                                                <sgNBPDCPpresent>
+                                                    <s1-DL-GTPtunnelEndpoint>
+                                                        <transportLayerAddress>
+                                                            11000000101010000001001011000110
+                                                        </transportLayerAddress>
+                                                        <gTP-TEID>92 CC 30 02</gTP-TEID>
+                                                    </s1-DL-GTPtunnelEndpoint>
+                                                </sgNBPDCPpresent>
+                                            </resource-configuration>
+                                        </E-RABs-Admitted-ToBeAdded-SgNBAddReqAck-Item>
+                                    </value>
+                                </ProtocolIE-Single-Container>
+                            </E-RABs-Admitted-ToBeAdded-SgNBAddReqAckList>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                    <SgNBAdditionRequestAcknowledge-IEs>
+                        <id>211</id>
+                        <criticality><reject/></criticality>
+                        <value>
+                            <SgNBtoMeNBContainer>
+                                18 04 09 A8 44 09 92 E2 07 8E 01 90 43 7E 30 D0 
+                                41 E6 41 C8 54 1E 21 00 83 2B A1 6E 63 00 1A 4E 
+                                47 C0 13 49 C4 00 00 00 26 96 18 DE 35 00 05 38 
+                                05 10 0D 60 1B 40 39 D2 02 68 00 01 34 E4 E1 8D 
+                                E3 2A 31 00 0D 66 66 BE E4 E0 24 BC A1 5B C2 C5 
+                                8F 68 9C 2E 00 50 E0 18 04 21 60 3B 00 91 19 1F 
+                                5E 24 62 00 1A CC CD 00 03 F0 DB 00 10 1C 02 D9 
+                                00 92 00 20 24 04 63 2C E1 96 65 14 0F FF F8 00 
+                                00 00 08 70 00 41 03 08 14 30 73 70 44 30 00 00 
+                                80 80 1A 70 0A 20 1A C0 36 80 72 CA 80 40 FF FF 
+                                80 00 00 00 87 00 04 10 30 81 43 07 0D C2 10 C0 
+                                00 08 05 90 01 01 20 23 25 61 52 C0 E1 04 16 0E 
+                                0C 10 E1 00 71 28 1C 00 00 20 5E F4 01 00 02 00 
+                                00 0F 40 01 41 00 19 73 86 59 95 18 80 06 B3 33 
+                                5F 72 70 12 5E 50 AD E1 62 C7 B4 4E 17 00 28 70 
+                                6A A4 1A 80 81 04 42 0C 20 30 08 C0 03 40 43 00 
+                                0C 01 8A 17 B4 08 28 5E C9 07 91 A2 B3 80 00 40 
+                                00 7F 42 10 84 00 80 40 25 81 C2 08 2C 1C 18 21 
+                                C2 00 E2 50 38 00 00 40 BD E8 02 00 04 00 00 1E 
+                                80 02 82 00 70 01 01 88 00 40 A0 49 40 BC 16 00 
+                                60 00
+                            </SgNBtoMeNBContainer>
+                        </value>
+                    </SgNBAdditionRequestAcknowledge-IEs>
+                </protocolIEs>
+            </SgNBAdditionRequestAcknowledge>
+        </value>
+    </successfulOutcome>
+</X2AP-PDU>
+[X2AP]   Received elements for X2AP_ENDC_SGNB_ADDITION_REQ_ACK 
+[SCTP]   Successfully sent 371 bytes on stream 0 for assoc_id 136
+[MAC]   Frame 744, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   Frame 752, slot 0: Adding BCH PDU in position 0 (length 3)
+[PHY]   [gNB 0][RAPROC] Frame 751, slot 19 Initiating RA procedure with preamble 63, energy 35.7 dB, delay 6
+[MAC]   [gNB 0][RAPROC] CC_id 0 Frame 751, Slot 19  Initiating RA procedure for preamble index 63
+[MAC]   [gNB 0][RAPROC] CC_id 0 Frame 751 Activating Msg2 generation in frame 752, slot 7 using RA rnti 10b
+[MAC]   [gNB 0] [RAPROC] CC_id 0 Frame 752, slotP 7: Generating RAR DCI, state 1
+[MAC]   [RAPROC] DCI type 1 payload: freq_alloc 120 (0,6,24), time_alloc 3, vrb to prb 0, mcs 0 tb_scaling 0 
+[MAC]   Frame 752: Subframe 7 : Adding common DL DCI for RA_RNTI 10b
+[MAC]   Frame 752, Subframe 7: Setting Msg3 reception for Frame 752 Subframe 17
+[PHY]   ULSCH received ok 
+[MAC]   [gNB 0][RAPROC] PUSCH with TC_RNTI c497 received correctly and UE_id 0 is now 5G connected
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 753 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 753 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 754 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 754 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 754 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 755 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 755 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 755 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 756 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 756 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 756 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[SCTP]   Found data for descriptor 87
+[SCTP]   Received notification for sd 87, type 32777
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 757 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 757 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 757 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 758 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 758 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 758 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 759 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 759 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 759 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 760, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 760 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 760 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 760 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 761 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 761 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 761 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 762 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 762 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 762 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 763 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 763 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 763 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 764 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 764 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 764 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 765 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 765 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 765 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 766 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 766 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 766 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 767 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 767 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 767 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 768, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 768 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 768 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 768 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 769 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 769 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 769 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 770 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 770 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 770 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 771 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 771 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 771 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 772 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 772 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 772 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 773 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 773 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 773 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 774 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 774 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 774 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 775 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 775 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 775 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 776, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 776 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 776 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 776 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 777 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 777 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 777 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 778 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 778 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 778 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 779 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 779 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 779 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 780 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 780 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 780 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 781 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 781 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 781 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 782 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 782 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 782 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 783 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 783 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 783 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 784, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 784 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 784 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 784 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 785 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 785 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 785 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 786 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 786 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 786 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 787 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 787 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 787 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 788 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 788 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 788 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 789 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 789 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 789 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 790 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 790 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 790 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 791 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 791 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 791 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 792, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 792 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 792 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 792 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 793 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 793 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 793 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 794 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 794 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 794 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 795 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 795 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 795 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 796 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 796 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 796 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 797 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 797 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 797 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 798 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 798 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 798 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 799 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 799 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 799 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 800, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 800 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 800 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 800 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 801 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 801 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 801 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 802 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 802 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 802 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 803 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 803 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 803 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 804 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 804 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 804 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 805 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 805 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 805 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 806 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 806 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 806 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 807 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 807 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 807 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 808, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 808 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 808 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 808 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 809 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 809 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 809 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 810 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 810 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 810 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 811 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 811 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 811 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 812 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 812 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 812 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 813 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 813 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 813 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 814 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 814 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 814 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 815 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 815 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 815 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 816, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 816 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 816 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 816 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 817 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 817 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 817 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 818 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 818 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 818 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 819 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 819 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 819 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 820 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 820 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 820 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 821 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 821 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 821 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 822 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 822 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 822 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 823 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 823 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 823 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 824, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 824 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 824 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 824 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 825 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 825 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 825 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 826 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 826 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 826 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 827 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 827 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 827 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 828 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 828 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 828 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 829 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 829 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 829 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 830 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 830 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 830 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 831 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 831 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 831 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 832, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 832 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 832 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 832 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 833 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 833 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 833 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 834 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 834 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 834 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 835 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 835 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 835 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 836 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 836 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 836 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 837 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 837 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 837 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 838 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 838 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 838 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 839 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 839 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 839 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 840, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 840 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 840 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 840 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 841 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 841 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 841 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 842 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 842 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 842 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 843 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 843 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 843 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 844 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 844 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 844 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 845 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 845 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 845 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 846 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 846 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 846 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 847 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 847 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 847 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 848, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 848 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 848 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 848 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 849 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 849 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 849 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 850 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 850 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 850 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 851 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 851 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 851 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 852 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 852 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 852 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 853 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 853 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 853 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 854 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 854 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 854 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 855 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 855 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 855 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 856, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 856 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 856 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 856 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 857 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 857 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 857 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 858 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 858 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 858 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 859 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 859 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 859 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 860 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 860 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 860 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 861 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 861 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 861 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 862 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 862 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 862 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 863 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 863 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 863 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 864, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 864 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 864 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 864 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 865 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 865 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 865 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 866 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 866 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 866 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 867 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 867 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 867 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 868 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 868 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 868 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 869 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 869 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 869 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 870 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 870 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 870 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 871 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 871 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 871 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 872, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 872 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 872 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 872 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 873 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 873 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 873 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 874 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 874 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 874 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 875 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 875 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 875 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 876 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 876 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 876 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 877 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 877 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 877 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 878 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 878 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 878 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 879 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 879 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 879 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 880, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 880 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 880 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 880 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 881 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 881 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 881 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 882 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 882 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 882 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 883 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 883 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 883 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 884 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 884 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 884 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 885 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 885 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 885 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 886 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 886 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 886 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 887 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 887 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 887 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 888, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 888 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 888 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 888 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 889 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 889 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 889 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 890 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 890 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 890 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 891 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 891 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 891 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 892 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 892 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 892 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 893 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 893 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 893 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 894 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 894 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 894 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 895 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 895 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 895 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 896, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 896 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 896 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 896 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 897 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 897 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 897 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 898 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 898 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 898 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 899 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 899 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 899 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 900 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 900 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 900 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 901 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 901 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 901 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 902 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 902 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 902 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 903 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 903 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 903 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 904, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 904 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 904 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 904 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 905 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 905 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 905 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 906 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 906 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 906 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 907 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 907 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 907 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 908 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 908 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 908 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 909 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 909 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 909 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 910 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 910 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 910 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 911 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 911 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 911 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 912, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 912 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 912 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 912 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 913 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 913 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 913 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 914 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 914 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 914 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 915 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 915 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 915 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 916 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 916 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 916 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 917 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 917 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 917 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 918 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 918 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 918 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 919 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 919 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 919 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 920, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 920 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 920 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 920 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 921 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 921 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 921 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 922 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 922 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 922 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 923 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 923 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 923 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 924 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 924 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 924 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 925 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 925 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 925 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 926 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 926 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 926 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 927 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 927 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 927 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 928, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 928 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 928 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 928 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 929 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 929 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 929 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 930 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 930 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 930 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 931 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 931 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 931 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 932 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 932 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 932 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 933 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 933 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 933 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 934 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 934 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 934 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 935 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 935 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 935 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 936, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 936 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 936 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 936 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 937 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 937 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 937 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 938 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 938 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 938 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 939 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 939 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 939 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 940 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 940 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 940 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 941 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 941 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 941 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 942 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 942 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 942 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 943 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 943 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 943 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 944, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 944 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 944 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 944 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 945 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 945 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 945 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 946 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 946 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 946 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 947 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 947 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 947 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 948 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 948 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 948 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 949 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 949 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 949 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 950 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 950 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 950 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 951 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 951 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 951 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 952, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 952 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 952 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 952 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 953 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 953 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 953 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 954 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 954 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 954 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 955 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 955 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 955 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 956 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 956 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 956 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 957 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 957 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 957 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 958 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 958 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 958 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 959 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 959 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 959 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 960, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 960 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 960 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 960 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 961 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 961 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 961 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 962 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 962 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 962 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 963 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 963 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 963 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 964 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 964 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 964 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 965 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 965 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 965 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 966 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 966 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 966 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 967 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 967 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 967 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 968, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 968 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 968 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 968 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 969 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 969 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 969 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 970 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 970 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 970 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 971 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 971 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 971 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 972 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 972 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 972 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 973 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 973 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 973 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 974 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 974 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 974 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 975 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 975 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 975 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 976, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 976 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 976 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 976 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 977 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 977 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 977 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 978 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 978 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 978 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 979 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 979 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 979 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 980 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 980 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 980 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 981 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 981 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 981 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 982 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 982 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 982 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 983 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 983 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 983 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 984, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 984 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 984 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 984 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 985 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 985 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 985 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 986 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 986 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 986 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 987 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 987 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 987 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 988 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 988 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 988 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 989 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 989 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 989 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 990 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 990 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 990 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 991 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 991 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 991 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 992, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 992 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 992 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 992 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 993 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 993 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 993 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 994 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 994 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 994 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 995 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 995 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 995 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 996 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 996 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 996 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 997 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 997 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 997 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 998 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 998 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 998 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 999 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 999 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 999 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 1000, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1000 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1000 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1000 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1001 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1001 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1001 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1002 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1002 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1002 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1003 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1003 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1003 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1004 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1004 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1004 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1005 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1005 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1005 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1006 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1006 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1006 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1007 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1007 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1007 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 1008, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1008 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1008 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1008 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1009 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1009 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1009 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1010 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1010 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1010 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1011 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1011 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1011 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1012 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1012 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1012 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1013 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1013 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1013 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1014 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1014 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1014 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1015 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1015 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1015 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 1016, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1016 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1016 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1016 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1017 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1017 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1017 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1018 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1018 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1018 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1019 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1019 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1019 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1020 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1020 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1020 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1021 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1021 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1021 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1022 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1022 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1022 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1023 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1023 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1023 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 0, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 0 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 0 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 0 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 0 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 2 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 2 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 2 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 3 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 3 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 3 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 4 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 4 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 4 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 5 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 5 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 5 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 6 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 6 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 6 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 7 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 7 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 7 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 8, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 8 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 8 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 8 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 8 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 9 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 9 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 9 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 10 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 10 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 10 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 11 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 11 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 11 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 12 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 12 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 12 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 13 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 13 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 13 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 14 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 14 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 14 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 15 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 15 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 15 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 16, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 16 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 16 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 16 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 16 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 17 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 17 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 17 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 18 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 18 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 18 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 19 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 19 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 19 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 20 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 20 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 20 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 21 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 21 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 21 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 22 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 22 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 22 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 23 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 23 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 23 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 24, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 24 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 24 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 24 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 24 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 25 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 25 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 25 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 26 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 26 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 26 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 27 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 27 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 27 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 28 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 28 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 28 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 29 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 29 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 29 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 30 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 30 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 30 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 31 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 31 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 31 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 32, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 32 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 32 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 32 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 32 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 33 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 33 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 33 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 34 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 34 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 34 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 35 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 35 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 35 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 36 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 36 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 36 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 37 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 37 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 37 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 38 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 38 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 38 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 39 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 39 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 39 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 40, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 40 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 40 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 40 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 40 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 41 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 41 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 41 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 42 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 42 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 42 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 43 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 43 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 43 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 44 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 44 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 44 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 45 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 45 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 45 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 46 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 46 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 46 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 47 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 47 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 47 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 48, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 48 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 48 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 48 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 48 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 49 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 49 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 49 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 50 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 50 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 50 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 51 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 51 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 51 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 52 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 52 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 52 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 53 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 53 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 53 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 54 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 54 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 54 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 55 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 55 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 55 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 56, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 56 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 56 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 56 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 56 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 57 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 57 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 57 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 58 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 58 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 58 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 59 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 59 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 59 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 60 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 60 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 60 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 61 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 61 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 61 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 62 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 62 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 62 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 63 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 63 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 63 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 64, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 64 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 64 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 64 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 64 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 65 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 65 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 65 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 66 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 66 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 66 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 67 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 67 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 67 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 68 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 68 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 68 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 69 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 69 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 69 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 70 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 70 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 70 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 71 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 71 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 71 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 72, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 72 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 72 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 72 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 72 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 73 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 73 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 73 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 74 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 74 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 74 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 75 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 75 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 75 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 76 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 76 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 76 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 77 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 77 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 77 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 78 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 78 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 78 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 79 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 79 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 79 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 80, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 80 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 80 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 80 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 81 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 81 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 81 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 82 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 82 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 82 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 83 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 83 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 83 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 84 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 84 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 84 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 85 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 85 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 85 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 86 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 86 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 86 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 87 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 87 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 87 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 88, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 88 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 88 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 88 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 89 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 89 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 89 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 90 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 90 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 90 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 91 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 91 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 91 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 92 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 92 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 92 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 93 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 93 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 93 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 94 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 94 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 94 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 95 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 95 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 95 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 96, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 96 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 96 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 96 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 97 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 97 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 97 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 98 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 98 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 98 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 99 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 99 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 99 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 100 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 100 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 100 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 101 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 101 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 101 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 102 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 102 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 102 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 103 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 103 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 103 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 104, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 104 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 104 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 104 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 105 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 105 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 105 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 106 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 106 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 106 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 107 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 107 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 107 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 108 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 108 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 108 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 109 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 109 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 109 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 110 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 110 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 110 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 111 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 111 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 111 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 112, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 112 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 112 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 112 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 113 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 113 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 113 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 114 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 114 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 114 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 115 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 115 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 115 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 116 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 116 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 116 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 117 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 117 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 117 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 118 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 118 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 118 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 119 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 119 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 119 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 120, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 120 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 120 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 120 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 121 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 121 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 121 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 122 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 122 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 122 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 123 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 123 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 123 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 124 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 124 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 124 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 125 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 125 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 125 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 126 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 126 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 126 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 127 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 127 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 127 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 128, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 128 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 128 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 128 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 129 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 129 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 129 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 130 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 130 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 130 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 131 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 131 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 131 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 132 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 132 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 132 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 133 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 133 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 133 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 134 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 134 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 134 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 135 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 135 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 135 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 136, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 136 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 136 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 136 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 137 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 137 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 137 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 138 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 138 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 138 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 139 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 139 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 139 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 140 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 140 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 140 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 141 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 141 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 141 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 142 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 142 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 142 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 143 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 143 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 143 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 144, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 144 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 144 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 144 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 145 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 145 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 145 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 146 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 146 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 146 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 147 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 147 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 147 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 148 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 148 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 148 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 149 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 149 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 149 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 150 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 150 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 150 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 151 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 151 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 151 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 152, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 152 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 152 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 152 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 153 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 153 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 153 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 154 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 154 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 154 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 155 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 155 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 155 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 156 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 156 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 156 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 157 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 157 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 157 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 158 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 158 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 158 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 159 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 159 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 159 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 160, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 160 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 160 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 160 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 161 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 161 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 161 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 162 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 162 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 162 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 163 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 163 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 163 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 164 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 164 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 164 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 165 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 165 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 165 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 166 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 166 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 166 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 167 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 167 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 167 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 168, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 168 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 168 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 168 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 169 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 169 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 169 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 170 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 170 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 170 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 171 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 171 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 171 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 172 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 172 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 172 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 173 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 173 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 173 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 174 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 174 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 174 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 175 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 175 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 175 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 176, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 176 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 176 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 176 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 177 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 177 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 177 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 178 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 178 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 178 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 179 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 179 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 179 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 180 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 180 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 180 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 181 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 181 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 181 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 182 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 182 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 182 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 183 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 183 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 183 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 184, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 184 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 184 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 184 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 185 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 185 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 185 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 186 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 186 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 186 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 187 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 187 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 187 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 188 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 188 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 188 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 189 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 189 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 189 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 190 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 190 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 190 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 191 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 191 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 191 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 192, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 192 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 192 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 192 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 193 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 193 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 193 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 194 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 194 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 194 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 195 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 195 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 195 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 196 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 196 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 196 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 197 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 197 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 197 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 198 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 198 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 198 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 199 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 199 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 199 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 200, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 200 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 200 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 200 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 201 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 201 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 201 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 202 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 202 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 202 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 203 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 203 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 203 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 204 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 204 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 204 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 205 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 205 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 205 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 206 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 206 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 206 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 207 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 207 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 207 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 208, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 208 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 208 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 208 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 208 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 208 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 208 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 208 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 208 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 208 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 209 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 209 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 209 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 209 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 209 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 209 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 209 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 209 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 209 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 210 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 210 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 210 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 210 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 210 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 210 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 210 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 210 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 210 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 211 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 211 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 211 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 211 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 211 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 211 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 211 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 211 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 211 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 212 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 212 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 212 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 212 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 212 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 212 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 212 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 212 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 212 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 213 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 213 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 213 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 213 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 213 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 213 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 213 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 213 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 213 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 214 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 214 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 214 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 214 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 214 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 214 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 214 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 214 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 214 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 215 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 215 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 215 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 215 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 215 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 215 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 215 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 215 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 215 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 216, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 216 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 216 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 216 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 216 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 216 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 216 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 216 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 216 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 216 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 217 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 217 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 217 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 217 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 217 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 217 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 217 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 217 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 217 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 218 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 218 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 218 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 218 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 218 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 218 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 218 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 218 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 218 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 219 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 219 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 219 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 219 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 219 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 219 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 219 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 219 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 219 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 220 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 220 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 220 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 220 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 220 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 220 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 220 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 220 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 220 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 221 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 221 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 221 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 221 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 221 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 221 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 221 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 221 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 221 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 222 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 222 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 222 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 222 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 222 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 222 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 222 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 222 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 222 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 223 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 223 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 223 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 223 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 223 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 223 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 223 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 223 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 223 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 224, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 224 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 224 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 224 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 224 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 224 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 224 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 224 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 224 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 224 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 225 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 225 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 225 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 225 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 225 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 225 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 225 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 225 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 225 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 226 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 226 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 226 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 226 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 226 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 226 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 226 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 226 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 226 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 227 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 227 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 227 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 227 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 227 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 227 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 227 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 227 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 227 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 228 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 228 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 228 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 228 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 228 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 228 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 228 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 228 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 228 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 229 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 229 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 229 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 229 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 229 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 229 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 229 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 229 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 229 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 230 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 230 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 230 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 230 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 230 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 230 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 230 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 230 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 230 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 231 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 231 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 231 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 231 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 231 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 231 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 231 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 231 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 231 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 232, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 232 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 232 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 232 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 232 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 232 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 232 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 232 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 232 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 232 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 233 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 233 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 233 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 233 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 233 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 233 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 233 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 233 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 233 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 234 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 234 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 234 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 234 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 234 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 234 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 234 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 234 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 234 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 235 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 235 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 235 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 235 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 235 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 235 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 235 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 235 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 235 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 236 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 236 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 236 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 236 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 236 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 236 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 236 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 236 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 236 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 237 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 237 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 237 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 237 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 237 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 237 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 237 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 237 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 237 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 238 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 238 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 238 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 238 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 238 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 238 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 238 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 238 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 238 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 239 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 239 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 239 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 239 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 239 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 239 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 239 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 239 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 239 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 240, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 240 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 240 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 240 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 240 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 240 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 240 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 240 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 240 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 240 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 241 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 241 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 241 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 241 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 241 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 241 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 241 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 241 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 241 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 242 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 242 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 242 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 242 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 242 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 242 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 242 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 242 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 242 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 243 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 243 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 243 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 243 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 243 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 243 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 243 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 243 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 243 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 244 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 244 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 244 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 244 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 244 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 244 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 244 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 244 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 244 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 245 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 245 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 245 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 245 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 245 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 245 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 245 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 245 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 245 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 246 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 246 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 246 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 246 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 246 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 246 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 246 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 246 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 246 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 247 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 247 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 247 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 247 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 247 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 247 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 247 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 247 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 247 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 248, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 248 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 248 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 248 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 248 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 248 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 248 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 248 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 248 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 248 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 249 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 249 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 249 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 249 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 249 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 249 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 249 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 249 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 249 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 250 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 250 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 250 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 250 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 250 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 250 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 250 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 250 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 250 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 251 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 251 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 251 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 251 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 251 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 251 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 251 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 251 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 251 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 252 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 252 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 252 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 252 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 252 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 252 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 252 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 252 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 252 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 253 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 253 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 253 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 253 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 253 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 253 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 253 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 253 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 253 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 254 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 254 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 254 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 254 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 254 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 254 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 254 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 254 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 254 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 255 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 255 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 255 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 255 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 255 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 255 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 255 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 255 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 255 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 256, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 256 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 256 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 256 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 256 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 256 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 256 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 256 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 256 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 256 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 257 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 257 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 257 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 257 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 257 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 257 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 257 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 257 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 257 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 258 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 258 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 258 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 258 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 258 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 258 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 258 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 258 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 258 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 259 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 259 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 259 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 259 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 259 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 259 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 259 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 259 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 259 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 260 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 260 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 260 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 260 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 260 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 260 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 260 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 260 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 260 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 261 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 261 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 261 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 261 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 261 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 261 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 261 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 261 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 261 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 262 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 262 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 262 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 262 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 262 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 262 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 262 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 262 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 262 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 263 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 263 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 263 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 263 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 263 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 263 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 263 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 263 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 263 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 264, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 264 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 264 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 264 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 264 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 264 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 264 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 264 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 264 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 264 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 265 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 265 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 265 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 265 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 265 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 265 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 265 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 265 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 265 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 266 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 266 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 266 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 266 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 266 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 266 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 266 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 266 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 266 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 267 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 267 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 267 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 267 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 267 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 267 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 267 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 267 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 267 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 268 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 268 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 268 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 268 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 268 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 268 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 268 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 268 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 268 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 269 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 269 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 269 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 269 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 269 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 269 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 269 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 269 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 269 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 270 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 270 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 270 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 270 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 270 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 270 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 270 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 270 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 270 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 271 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 271 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 271 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 271 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 271 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 271 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 271 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 271 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 271 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 272, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 272 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 272 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 272 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 272 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 272 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 272 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 272 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 272 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 272 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 273 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 273 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 273 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 273 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 273 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 273 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 273 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 273 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 273 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 274 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 274 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 274 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 274 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 274 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 274 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 274 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 274 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 274 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 275 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 275 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 275 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 275 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 275 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 275 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 275 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 275 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 275 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 276 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 276 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 276 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 276 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 276 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 276 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 276 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 276 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 276 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 277 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 277 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 277 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 277 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 277 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 277 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 277 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 277 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 277 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 278 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 278 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 278 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 278 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 278 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 278 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 278 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 278 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 278 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 279 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 279 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 279 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 279 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 279 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 279 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 279 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 279 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 279 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 280, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 280 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 280 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 280 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 280 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 280 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 280 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 280 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 280 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 280 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 281 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 281 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 281 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 281 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 281 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 281 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 281 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 281 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 281 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 282 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 282 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 282 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 282 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 282 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 282 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 282 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 282 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 282 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 283 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 283 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 283 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 283 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 283 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 283 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 283 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 283 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 283 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 284 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 284 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 284 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 284 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 284 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 284 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 284 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 284 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 284 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 285 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 285 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 285 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 285 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 285 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 285 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 285 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 285 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 285 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 286 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 286 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 286 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 286 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 286 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 286 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 286 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 286 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 286 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 287 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 287 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 287 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 287 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 287 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 287 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 287 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 287 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 287 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 288, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 288 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 288 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 288 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 288 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 288 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 288 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 288 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 288 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 288 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 289 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 289 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 289 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 289 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 289 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 289 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 289 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 289 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 289 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 290 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 290 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 290 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 290 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 290 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 290 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 290 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 290 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 290 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 291 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 291 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 291 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 291 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 291 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 291 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 291 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 291 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 291 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 292 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 292 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 292 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 292 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 292 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 292 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 292 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 292 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 292 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 293 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 293 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 293 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 293 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 293 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 293 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 293 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 293 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 293 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 294 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 294 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 294 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 294 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 294 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 294 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 294 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 294 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 294 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 295 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 295 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 295 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 295 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 295 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 295 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 295 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 295 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 295 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 296, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 296 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 296 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 296 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 296 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 296 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 296 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 296 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 296 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 296 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 297 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 297 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 297 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 297 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 297 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 297 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 297 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 297 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 297 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 298 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 298 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 298 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 298 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 298 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 298 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 298 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 298 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 298 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 299 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 299 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 299 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 299 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 299 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 299 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 299 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 299 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 299 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 300 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 300 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 300 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 300 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 300 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 300 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 300 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 300 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 300 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 301 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 301 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 301 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 301 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 301 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 301 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 301 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 301 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 301 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 302 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 302 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 302 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 302 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 302 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 302 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 302 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 302 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 302 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 303 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 303 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 303 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 303 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 303 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 303 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 303 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 303 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 303 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 304, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 304 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 304 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 304 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 304 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 304 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 304 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 304 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 304 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 304 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 305 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 305 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 305 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 305 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 305 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 305 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 305 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 305 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 305 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 306 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 306 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 306 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 306 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 306 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 306 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 306 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 306 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 306 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 307 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 307 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 307 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 307 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 307 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 307 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 307 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 307 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 307 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 308 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 308 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 308 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 308 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 308 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 308 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 308 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 308 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 308 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 309 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 309 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 309 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 309 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 309 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 309 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 309 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 309 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 309 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 310 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 310 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 310 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 310 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 310 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 310 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 310 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 310 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 310 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 311 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 311 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 311 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 311 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 311 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 311 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 311 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 311 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 311 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 312, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 312 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 312 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 312 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 312 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 312 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 312 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 312 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 312 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 312 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 313 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 313 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 313 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 313 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 313 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 313 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 313 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 313 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 313 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 314 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 314 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 314 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 314 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 314 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 314 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 314 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 314 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 314 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 315 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 315 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 315 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 315 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 315 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 315 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 315 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 315 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 315 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 316 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 316 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 316 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 316 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 316 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 316 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 316 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 316 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 316 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 317 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 317 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 317 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 317 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 317 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 317 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 317 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 317 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 317 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 318 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 318 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 318 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 318 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 318 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 318 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 318 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 318 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 318 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 319 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 319 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 319 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 319 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 319 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 319 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 319 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 319 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 319 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 320, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 320 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 320 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 320 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 320 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 320 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 320 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 320 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 320 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 320 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 321 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 321 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 321 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 321 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 321 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 321 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 321 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 321 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 321 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 322 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 322 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 322 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 322 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 322 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 322 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 322 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 322 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 322 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 323 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 323 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 323 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 323 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 323 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 323 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 323 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 323 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 323 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 324 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 324 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 324 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 324 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 324 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 324 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 324 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 324 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 324 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 325 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 325 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 325 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 325 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 325 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 325 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 325 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 325 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 325 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 326 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 326 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 326 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 326 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 326 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 326 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 326 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 326 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 326 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 327 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 327 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 327 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 327 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 327 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 327 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 327 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 327 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 327 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 328, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 328 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 328 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 328 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 328 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 328 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 328 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 328 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 328 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 328 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 329 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 329 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 329 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 329 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 329 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 329 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 329 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 329 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 329 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 330 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 330 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 330 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 330 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 330 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 330 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 330 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 330 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 330 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 331 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 331 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 331 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 331 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 331 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 331 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 331 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 331 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 331 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 332 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 332 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 332 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 332 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 332 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 332 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 332 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 332 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 332 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 333 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 333 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 333 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 333 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 333 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 333 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 333 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 333 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 333 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 334 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 334 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 334 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 334 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 334 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 334 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 334 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 334 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 334 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 335 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 335 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 335 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 335 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 335 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 335 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 335 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 335 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 335 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 336, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 336 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 336 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 336 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 336 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 336 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 336 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 336 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 336 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 336 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 337 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 337 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 337 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 337 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 337 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 337 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 337 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 337 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 337 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 338 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 338 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 338 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 338 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 338 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 338 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 338 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 338 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 338 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 339 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 339 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 339 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 339 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 339 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 339 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 339 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 339 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 339 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 340 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 340 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 340 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 340 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 340 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 340 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 340 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 340 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 340 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 341 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 341 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 341 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 341 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 341 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 341 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 341 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 341 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 341 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 342 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 342 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 342 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 342 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 342 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 342 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 342 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 342 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 342 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 343 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 343 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 343 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 343 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 343 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 343 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 343 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 343 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 343 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 344, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 344 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 344 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 344 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 344 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 344 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 344 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 344 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 344 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 344 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 345 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 345 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 345 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 345 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 345 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 345 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 345 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 345 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 345 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 346 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 346 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 346 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 346 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 346 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 346 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 346 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 346 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 346 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 347 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 347 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 347 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 347 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 347 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 347 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 347 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 347 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 347 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 348 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 348 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 348 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 348 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 348 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 348 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 348 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 348 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 348 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 349 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 349 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 349 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 349 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 349 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 349 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 349 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 349 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 349 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 350 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 350 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 350 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 350 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 350 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 350 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 350 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 350 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 350 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 351 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 351 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 351 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 351 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 351 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 351 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 351 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 351 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 351 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 352, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 352 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 352 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 352 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 352 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 352 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 352 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 352 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 352 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 352 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 353 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 353 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 353 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 353 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 353 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 353 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 353 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 353 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 353 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 354 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 354 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 354 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 354 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 354 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 354 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 354 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 354 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 354 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 355 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 355 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 355 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 355 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 355 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 355 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 355 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 355 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 355 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 356 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 356 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 356 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 356 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 356 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 356 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 356 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 356 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 356 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 357 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 357 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 357 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 357 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 357 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 357 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 357 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 357 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 357 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 358 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 358 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 358 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 358 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 358 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 358 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 358 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 358 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 358 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 359 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 359 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 359 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 359 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 359 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 359 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 359 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 359 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 359 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 360, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 360 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 360 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 360 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 360 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 360 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 360 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 360 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 360 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 360 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 361 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 361 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 361 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 361 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 361 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 361 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 361 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 361 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 361 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 362 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 362 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 362 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 362 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 362 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 362 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 362 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 362 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 362 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 363 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 363 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 363 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 363 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 363 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 363 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 363 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 363 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 363 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 364 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 364 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 364 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 364 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 364 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 364 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 364 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 364 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 364 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 365 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 365 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 365 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 365 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 365 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 365 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 365 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 365 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 365 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 366 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 366 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 366 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 366 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 366 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 366 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 366 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 366 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 366 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 367 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 367 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 367 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 367 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 367 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 367 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 367 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 367 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 367 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 368, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 368 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 368 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 368 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 368 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 368 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 368 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 368 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 368 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 368 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 369 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 369 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 369 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 369 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 369 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 369 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 369 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 369 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 369 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 370 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 370 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 370 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 370 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 370 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 370 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 370 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 370 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 370 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 371 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 371 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 371 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 371 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 371 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 371 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 371 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 371 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 371 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 372 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 372 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 372 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 372 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 372 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 372 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 372 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 372 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 372 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 373 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 373 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 373 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 373 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 373 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 373 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 373 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 373 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 373 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 374 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 374 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 374 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 374 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 374 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 374 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 374 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 374 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 374 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 375 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 375 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 375 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 375 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 375 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 375 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 375 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 375 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 375 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 376, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 376 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 376 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 376 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 376 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 376 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 376 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 376 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 376 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 376 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 377 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 377 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 377 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 377 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 377 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 377 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 377 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 377 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 377 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 378 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 378 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 378 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 378 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 378 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 378 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 378 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 378 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 378 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 379 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 379 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 379 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 379 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 379 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 379 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 379 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 379 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 379 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 380 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 380 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 380 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 380 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 380 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 380 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 380 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 380 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 380 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 381 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 381 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 381 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 381 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 381 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 381 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 381 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 381 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 381 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 382 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 382 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 382 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 382 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 382 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 382 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 382 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 382 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 382 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 383 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 383 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 383 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 383 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 383 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 383 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 383 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 383 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 383 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 384, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 384 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 384 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 384 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 384 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 384 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 384 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 384 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 384 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 384 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 385 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 385 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 385 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 385 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 385 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 385 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 385 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 385 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 385 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 386 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 386 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 386 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 386 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 386 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 386 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 386 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 386 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 386 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 387 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 387 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 387 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 387 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 387 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 387 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 387 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 387 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 387 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 388 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 388 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 388 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 388 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 388 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 388 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 388 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 388 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 388 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 389 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 389 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 389 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 389 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 389 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 389 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 389 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 389 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 389 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 390 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 390 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 390 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 390 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 390 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 390 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 390 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 390 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 390 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 391 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 391 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 391 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 391 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 391 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 391 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 391 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 391 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 391 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 392, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 392 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 392 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 392 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 392 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 392 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 392 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 392 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 392 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 392 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 393 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 393 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 393 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 393 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 393 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 393 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 393 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 393 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 393 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 394 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 394 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 394 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 394 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 394 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 394 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 394 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 394 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 394 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 395 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 395 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 395 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 395 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 395 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 395 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 395 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 395 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 395 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 396 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 396 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 396 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 396 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 396 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 396 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 396 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 396 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 396 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 397 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 397 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 397 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 397 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 397 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 397 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 397 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 397 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 397 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 398 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 398 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 398 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 398 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 398 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 398 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 398 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 398 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 398 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 399 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 399 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 399 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 399 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 399 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 399 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 399 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 399 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 399 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 400, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 400 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 400 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 400 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 400 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 400 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 400 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 400 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 400 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 400 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 401 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 401 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 401 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 401 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 401 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 401 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 401 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 401 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 401 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 402 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 402 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 402 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 402 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 402 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 402 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 402 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 402 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 402 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 403 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 403 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 403 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 403 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 403 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 403 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 403 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 403 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 403 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 404 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 404 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 404 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 404 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 404 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 404 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 404 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 404 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 404 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 405 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 405 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 405 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 405 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 405 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 405 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 405 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 405 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 405 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 406 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 406 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 406 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 406 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 406 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 406 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 406 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 406 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 406 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 407 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 407 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 407 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 407 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 407 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 407 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 407 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 407 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 407 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 408, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 408 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 408 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 408 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 408 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 408 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 408 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 408 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 408 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 408 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 409 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 409 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 409 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 409 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 409 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 409 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 409 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 409 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 409 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 410 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 410 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 410 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 410 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 410 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 410 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 410 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 410 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 410 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 411 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 411 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 411 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 411 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 411 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 411 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 411 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 411 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 411 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 412 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 412 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 412 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 412 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 412 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 412 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 412 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 412 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 412 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 413 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 413 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 413 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 413 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 413 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 413 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 413 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 413 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 413 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 414 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 414 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 414 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 414 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 414 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 414 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 414 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 414 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 414 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 415 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 415 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 415 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 415 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 415 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 415 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 415 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 415 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 415 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 416, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 416 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 416 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 416 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 416 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 416 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 416 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 416 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 416 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 416 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 417 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 417 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 417 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 417 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 417 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 417 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 417 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 417 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 417 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 418 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 418 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 418 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 418 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 418 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 418 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 418 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 418 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 418 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 419 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 419 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 419 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 419 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 419 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 419 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 419 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 419 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 419 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 420 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 420 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 420 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 420 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 420 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 420 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 420 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 420 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 420 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 421 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 421 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 421 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 421 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 421 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 421 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 421 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 421 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 421 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 422 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 422 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 422 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 422 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 422 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 422 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 422 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 422 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 422 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 423 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 423 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 423 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 423 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 423 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 423 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 423 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 423 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 423 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 424, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 424 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 424 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 424 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 424 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 424 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 424 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 424 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 424 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 424 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 425 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 425 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 425 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 425 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 425 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 425 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 425 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 425 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 425 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 426 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 426 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 426 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 426 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 426 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 426 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 426 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 426 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 426 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 427 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 427 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 427 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 427 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 427 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 427 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 427 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 427 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 427 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 428 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 428 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 428 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 428 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 428 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 428 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 428 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 428 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 428 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 429 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 429 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 429 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 429 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 429 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 429 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 429 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 429 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 429 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 430 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 430 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 430 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 430 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 430 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 430 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 430 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 430 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 430 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 431 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 431 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 431 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 431 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 431 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 431 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 431 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 431 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 431 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 432, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 432 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 432 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 432 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 432 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 432 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 432 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 432 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 432 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 432 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 433 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 433 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 433 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 433 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 433 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 433 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 433 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 433 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 433 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 434 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 434 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 434 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 434 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 434 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 434 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 434 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 434 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 434 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 435 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 435 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 435 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 435 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 435 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 435 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 435 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 435 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 435 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 436 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 436 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 436 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 436 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 436 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 436 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 436 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 436 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 436 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 437 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 437 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 437 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 437 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 437 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 437 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 437 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 437 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 437 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 438 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 438 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 438 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 438 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 438 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 438 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 438 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 438 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 438 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 439 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 439 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 439 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 439 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 439 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 439 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 439 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 439 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 439 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 440, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 440 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 440 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 440 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 440 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 440 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 440 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 440 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 440 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 440 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 441 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 441 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 441 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 441 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 441 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 441 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 441 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 441 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 441 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 442 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 442 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 442 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 442 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 442 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 442 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 442 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 442 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 442 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 443 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 443 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 443 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 443 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 443 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 443 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 443 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 443 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 443 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 444 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 444 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 444 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 444 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 444 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 444 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 444 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 444 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 444 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 445 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 445 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 445 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 445 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 445 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 445 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 445 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 445 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 445 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 446 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 446 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 446 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 446 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 446 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 446 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 446 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 446 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 446 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 447 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 447 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 447 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 447 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 447 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 447 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 447 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 447 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 447 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 448, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 448 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 448 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 448 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 448 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 448 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 448 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 448 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 448 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 448 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 449 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 449 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 449 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 449 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 449 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 449 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 449 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 449 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 449 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 450 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 450 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 450 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 450 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 450 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 450 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 450 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 450 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 450 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 451 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 451 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 451 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 451 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 451 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 451 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 451 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 451 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 451 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 452 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 452 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 452 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 452 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 452 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 452 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 452 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 452 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 452 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 453 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 453 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 453 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 453 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 453 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 453 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 453 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 453 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 453 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 454 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 454 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 454 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 454 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 454 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 454 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 454 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 454 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 454 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 455 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 455 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 455 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 455 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 455 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 455 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 455 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 455 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 455 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 456, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 456 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 456 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 456 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 456 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 456 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 456 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 456 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 456 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 456 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 457 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 457 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 457 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 457 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 457 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 457 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 457 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 457 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 457 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 458 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 458 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 458 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 458 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 458 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 458 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 458 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 458 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 458 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 459 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 459 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 459 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 459 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 459 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 459 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 459 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 459 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 459 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 460 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 460 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 460 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 460 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 460 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 460 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 460 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 460 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 460 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 461 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 461 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 461 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 461 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 461 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 461 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 461 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 461 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 461 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 462 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 462 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 462 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 462 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 462 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 462 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 462 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 462 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 462 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 463 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 463 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 463 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 463 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 463 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 463 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 463 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 463 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 463 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 464, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 464 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 464 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 464 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 464 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 464 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 464 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 464 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 464 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 464 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 465 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 465 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 465 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 465 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 465 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 465 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 465 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 465 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 465 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 466 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 466 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 466 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 466 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 466 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 466 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 466 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 466 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 466 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 467 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 467 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 467 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 467 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 467 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 467 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 467 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 467 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 467 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 468 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 468 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 468 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 468 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 468 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 468 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 468 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 468 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 468 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 469 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 469 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 469 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 469 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 469 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 469 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 469 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 469 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 469 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 470 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 470 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 470 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 470 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 470 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 470 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 470 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 470 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 470 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 471 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 471 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 471 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 471 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 471 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 471 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 471 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 471 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 471 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 472, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 472 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 472 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 472 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 472 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 472 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 472 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 472 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 472 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 472 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 473 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 473 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 473 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 473 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 473 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 473 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 473 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 473 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 473 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 474 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 474 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 474 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 474 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 474 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 474 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 474 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 474 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 474 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 475 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 475 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 475 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 475 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 475 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 475 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 475 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 475 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 475 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 476 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 476 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 476 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 476 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 476 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 476 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 476 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 476 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 476 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 477 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 477 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 477 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 477 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 477 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 477 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 477 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 477 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 477 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 478 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 478 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 478 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 478 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 478 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 478 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 478 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 478 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 478 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 479 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 479 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 479 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 479 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 479 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 479 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 479 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 479 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 479 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 480, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 480 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 480 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 480 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 480 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 480 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 480 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 480 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 480 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 480 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 481 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 481 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 481 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 481 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 481 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 481 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 481 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 481 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 481 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 482 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 482 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 482 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 482 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 482 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 482 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 482 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 482 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 482 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 483 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 483 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 483 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 483 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 483 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 483 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 483 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 483 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 483 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 484 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 484 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 484 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 484 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 484 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 484 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 484 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 484 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 484 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 485 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 485 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 485 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 485 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 485 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 485 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 485 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 485 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 485 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 486 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 486 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 486 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 486 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 486 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 486 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 486 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 486 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 486 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 487 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 487 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 487 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 487 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 487 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 487 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 487 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 487 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 487 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 488, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 488 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 488 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 488 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 488 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 488 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 488 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 488 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 488 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 488 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 489 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 489 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 489 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 489 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 489 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 489 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 489 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 489 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 489 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 490 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 490 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 490 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 490 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 490 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 490 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 490 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 490 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 490 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 491 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 491 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 491 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 491 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 491 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 491 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 491 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 491 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 491 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 492 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 492 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 492 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 492 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 492 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 492 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 492 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 492 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 492 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 493 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 493 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 493 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 493 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 493 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 493 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 493 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 493 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 493 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 494 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 494 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 494 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 494 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 494 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 494 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 494 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 494 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 494 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 495 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 495 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 495 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 495 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 495 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 495 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 495 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 495 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 495 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 496, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 496 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 496 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 496 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 496 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 496 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 496 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 496 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 496 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 496 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 497 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 497 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 497 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 497 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 497 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 497 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 497 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 497 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 497 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 498 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 498 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 498 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 498 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 498 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 498 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 498 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 498 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 498 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 499 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 499 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 499 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 499 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 499 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 499 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 499 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 499 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 499 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 500 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 500 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 500 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 500 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 500 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 500 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 500 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 500 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 500 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 501 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 501 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 501 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 501 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 501 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 501 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 501 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 501 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 501 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 502 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 502 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 502 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 502 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 502 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 502 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 502 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 502 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 502 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 503 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 503 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 503 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 503 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 503 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 503 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 503 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 503 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 503 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 504, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 504 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 504 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 504 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 504 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 504 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 504 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 504 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 504 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 504 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 505 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 505 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 505 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 505 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 505 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 505 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 505 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 505 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 505 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 506 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 506 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 506 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 506 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 506 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 506 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 506 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 506 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 506 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 507 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 507 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 507 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 507 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 507 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 507 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 507 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 507 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 507 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 508 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 508 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 508 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 508 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 508 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 508 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 508 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 508 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 508 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 509 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 509 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 509 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 509 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 509 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 509 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 509 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 509 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 509 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 510 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 510 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 510 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 510 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 510 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 510 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 510 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 510 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 510 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 511 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 511 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 511 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 511 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 511 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 511 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 511 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 511 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 511 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 512, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 512 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 512 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 512 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 512 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 512 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 512 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 512 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 512 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 512 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 513 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 513 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 513 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 513 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 513 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 513 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 513 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 513 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 513 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 514 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 514 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 514 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 514 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 514 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 514 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 514 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 514 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 514 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 515 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 515 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 515 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 515 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 515 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 515 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 515 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 515 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 515 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 516 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 516 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 516 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 516 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 516 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 516 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 516 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 516 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 516 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 517 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 517 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 517 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 517 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 517 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 517 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 517 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 517 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 517 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 518 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 518 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 518 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 518 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 518 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 518 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 518 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 518 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 518 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 519 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 519 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 519 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 519 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 519 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 519 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 519 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 519 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 519 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 520, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 520 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 520 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 520 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 520 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 520 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 520 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 520 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 520 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 520 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 521 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 521 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 521 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 521 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 521 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 521 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 521 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 521 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 521 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 522 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 522 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 522 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 522 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 522 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 522 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 522 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 522 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 522 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 523 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 523 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 523 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 523 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 523 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 523 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 523 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 523 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 523 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 524 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 524 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 524 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 524 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 524 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 524 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 524 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 524 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 524 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 525 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 525 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 525 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 525 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 525 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 525 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 525 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 525 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 525 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 526 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 526 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 526 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 526 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 526 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 526 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 526 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 526 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 526 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 527 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 527 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 527 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 527 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 527 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 527 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 527 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 527 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 527 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 528, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 528 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 528 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 528 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 528 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 528 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 528 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 528 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 528 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 528 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 529 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 529 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 529 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 529 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 529 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 529 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 529 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 529 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 529 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 530 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 530 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 530 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 530 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 530 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 530 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 530 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 530 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 530 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 531 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 531 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 531 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 531 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 531 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 531 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 531 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 531 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 531 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 532 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 532 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 532 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 532 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 532 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 532 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 532 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 532 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 532 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 533 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 533 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 533 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 533 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 533 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 533 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 533 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 533 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 533 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 534 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 534 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 534 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 534 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 534 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 534 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 534 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 534 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 534 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 535 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 535 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 535 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 535 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 535 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 535 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 535 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 535 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 535 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 536, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 536 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 536 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 536 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 536 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 536 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 536 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 536 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 536 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 536 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 537 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 537 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 537 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 537 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 537 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 537 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 537 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 537 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 537 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 538 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 538 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 538 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 538 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 538 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 538 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 538 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 538 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 538 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 539 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 539 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 539 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 539 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 539 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 539 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 539 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 539 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 539 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 540 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 540 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 540 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 540 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 540 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 540 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 540 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 540 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 540 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 541 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 541 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 541 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 541 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 541 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 541 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 541 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 541 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 541 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 542 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 542 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 542 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 542 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 542 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 542 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 542 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 542 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 542 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 543 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 543 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 543 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 543 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 543 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 543 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 543 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 543 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 543 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 544, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 544 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 544 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 544 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 544 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 544 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 544 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 544 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 544 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 544 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 545 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 545 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 545 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 545 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 545 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 545 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 545 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 545 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 545 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 546 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 546 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 546 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 546 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 546 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 546 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 546 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 546 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 546 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 547 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 547 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 547 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 547 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 547 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 547 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 547 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 547 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 547 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 548 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 548 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 548 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 548 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 548 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 548 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 548 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 548 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 548 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 549 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 549 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 549 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 549 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 549 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 549 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 549 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 549 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 549 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 550 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 550 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 550 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 550 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 550 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 550 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 550 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 550 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 550 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 551 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 551 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 551 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 551 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 551 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 551 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 551 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 551 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 551 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 552, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 552 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 552 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 552 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 552 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 552 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 552 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 552 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 552 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 552 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 553 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 553 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 553 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 553 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 553 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 553 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 553 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 553 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 553 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 554 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 554 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 554 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 554 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 554 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 554 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 554 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 554 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 554 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 555 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 555 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 555 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 555 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 555 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 555 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 555 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 555 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 555 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 556 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 556 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 556 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 556 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 556 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 556 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 556 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 556 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 556 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 557 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 557 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 557 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 557 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 557 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 557 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 557 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 557 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 557 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 558 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 558 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 558 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 558 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 558 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 558 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 558 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 558 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 558 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 559 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 559 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 559 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 559 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 559 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 559 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 559 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 559 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 559 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 560, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 560 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 560 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 560 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 560 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 560 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 560 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 560 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 560 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 560 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 561 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 561 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 561 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 561 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 561 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 561 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 561 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 561 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 561 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 562 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 562 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 562 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 562 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 562 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 562 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 562 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 562 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 562 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 563 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 563 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 563 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 563 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 563 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 563 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 563 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 563 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 563 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 564 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 564 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 564 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 564 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 564 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 564 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 564 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 564 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 564 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 565 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 565 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 565 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 565 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 565 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 565 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 565 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 565 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 565 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 566 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 566 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 566 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 566 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 566 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 566 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 566 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 566 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 566 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 567 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 567 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 567 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 567 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 567 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 567 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 567 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 567 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 567 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 568, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 568 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 568 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 568 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 568 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 568 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 568 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 568 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 568 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 568 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 569 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 569 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 569 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 569 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 569 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 569 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 569 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 569 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 569 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 570 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 570 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 570 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 570 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 570 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 570 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 570 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 570 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 570 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 571 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 571 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 571 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 571 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 571 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 571 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 571 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 571 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 571 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 572 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 572 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 572 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 572 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 572 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 572 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 572 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 572 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 572 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 573 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 573 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 573 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 573 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 573 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 573 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 573 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 573 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 573 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 574 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 574 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 574 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 574 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 574 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 574 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 574 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 574 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 574 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 575 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 575 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 575 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 575 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 575 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 575 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 575 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 575 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 575 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 576, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 576 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 576 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 576 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 576 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 576 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 576 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 576 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 576 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 576 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 577 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 577 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 577 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 577 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 577 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 577 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 577 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 577 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 577 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 578 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 578 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 578 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 578 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 578 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 578 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 578 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 578 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 578 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 579 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 579 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 579 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 579 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 579 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 579 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 579 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 579 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 579 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 580 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 580 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 580 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 580 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 580 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 580 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 580 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 580 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 580 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 581 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 581 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 581 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 581 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 581 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 581 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 581 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 581 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 581 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 582 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 582 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 582 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 582 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 582 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 582 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 582 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 582 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 582 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 583 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 583 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 583 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 583 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 583 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 583 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 583 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 583 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 583 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 584, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 584 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 584 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 584 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 584 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 584 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 584 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 584 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 584 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 584 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 585 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 585 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 585 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 585 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 585 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 585 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 585 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 585 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 585 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 586 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 586 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 586 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 586 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 586 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 586 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 586 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 586 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 586 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 587 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 587 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 587 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 587 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 587 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 587 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 587 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 587 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 587 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 588 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 588 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 588 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 588 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 588 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 588 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 588 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 588 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 588 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 589 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 589 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 589 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 589 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 589 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 589 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 589 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 589 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 589 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 590 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 590 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 590 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 590 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 590 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 590 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 590 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 590 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 590 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 591 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 591 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 591 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 591 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 591 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 591 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 591 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 591 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 591 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 592, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 592 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 592 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 592 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 592 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 592 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 592 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 592 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 592 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 592 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 593 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 593 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 593 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 593 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 593 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 593 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 593 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 593 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 593 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 594 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 594 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 594 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 594 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 594 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 594 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 594 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 594 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 594 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 595 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 595 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 595 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 595 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 595 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 595 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 595 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 595 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 595 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 596 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 596 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 596 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 596 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 596 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 596 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 596 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 596 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 596 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 597 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 597 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 597 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 597 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 597 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 597 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 597 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 597 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 597 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 598 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 598 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 598 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 598 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 598 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 598 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 598 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 598 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 598 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 599 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 599 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 599 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 599 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 599 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 599 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 599 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 599 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 599 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 600, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 600 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 600 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 600 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 600 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 600 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 600 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 600 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 600 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 600 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 601 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 601 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 601 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 601 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 601 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 601 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 601 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 601 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 601 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 602 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 602 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 602 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 602 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 602 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 602 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 602 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 602 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 602 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 603 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 603 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 603 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 603 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 603 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 603 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 603 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 603 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 603 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 604 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 604 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 604 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 604 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 604 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 604 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 604 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 604 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 604 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 605 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 605 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 605 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 605 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 605 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 605 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 605 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 605 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 605 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 606 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 606 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 606 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 606 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 606 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 606 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 606 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 606 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 606 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 607 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 607 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 607 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 607 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 607 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 607 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 607 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 607 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 607 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 608, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 608 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 608 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 608 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 608 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 608 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 608 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 608 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 608 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 608 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 609 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 609 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 609 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 609 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 609 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 609 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 609 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 609 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 609 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 610 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 610 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 610 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 610 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 610 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 610 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 610 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 610 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 610 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 611 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 611 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 611 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 611 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 611 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 611 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 611 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 611 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 611 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 612 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 612 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 612 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 612 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 612 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 612 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 612 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 612 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 612 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 613 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 613 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 613 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 613 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 613 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 613 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 613 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 613 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 613 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 614 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 614 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 614 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 614 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 614 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 614 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 614 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 614 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 614 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 615 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 615 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 615 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 615 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 615 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 615 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 615 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 615 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 615 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 616, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 616 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 616 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 616 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 616 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 616 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 616 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 616 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 616 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 616 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 617 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 617 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 617 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 617 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 617 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 617 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 617 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 617 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 617 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 618 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 618 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 618 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 618 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 618 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 618 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 618 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 618 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 618 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 619 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 619 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 619 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 619 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 619 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 619 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 619 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 619 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 619 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 620 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 620 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 620 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 620 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 620 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 620 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 620 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 620 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 620 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 621 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 621 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 621 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 621 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 621 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 621 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 621 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 621 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 621 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 622 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 622 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 622 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 622 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 622 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 622 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 622 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 622 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 622 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 623 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 623 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 623 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 623 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 623 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 623 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 623 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 623 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 623 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 624, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 624 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 624 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 624 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 624 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 624 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 624 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 624 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 624 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 624 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 625 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 625 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 625 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 625 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 625 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 625 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 625 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 625 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 625 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 626 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 626 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 626 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 626 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 626 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 626 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 626 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 626 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 626 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 627 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 627 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 627 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 627 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 627 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 627 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 627 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 627 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 627 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 628 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 628 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 628 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 628 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 628 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 628 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 628 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 628 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 628 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 629 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 629 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 629 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 629 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 629 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 629 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 629 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 629 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 629 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 630 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 630 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 630 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 630 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 630 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 630 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 630 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 630 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 630 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 631 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 631 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 631 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 631 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 631 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 631 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 631 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 631 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 631 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 632, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 632 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 632 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 632 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 632 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 632 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 632 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 632 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 632 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 632 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 633 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 633 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 633 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 633 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 633 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 633 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 633 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 633 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 633 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 634 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 634 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 634 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 634 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 634 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 634 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 634 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 634 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 634 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 635 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 635 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 635 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 635 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 635 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 635 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 635 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 635 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 635 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 636 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 636 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 636 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 636 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 636 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 636 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 636 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 636 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 636 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 637 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 637 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 637 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 637 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 637 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 637 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 637 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 637 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 637 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 638 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 638 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 638 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 638 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 638 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 638 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 638 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 638 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 638 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 639 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 639 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 639 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 639 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 639 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 639 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 639 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 639 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 639 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 640, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 640 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 640 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 640 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 640 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 640 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 640 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 640 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 640 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 640 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 641 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 641 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 641 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 641 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 641 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 641 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 641 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 641 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 641 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 642 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 642 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 642 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 642 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 642 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 642 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 642 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 642 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 642 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 643 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 643 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 643 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 643 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 643 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 643 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 643 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 643 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 643 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 644 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 644 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 644 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 644 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 644 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 644 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 644 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 644 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 644 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 645 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 645 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 645 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 645 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 645 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 645 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 645 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 645 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 645 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 646 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 646 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 646 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 646 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 646 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 646 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 646 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 646 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 646 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 647 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 647 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 647 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 647 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 647 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 647 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 647 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 647 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 647 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 648, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 648 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 648 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 648 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 648 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 648 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 648 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 648 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 648 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 648 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 649 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 649 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 649 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 649 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 649 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 649 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 649 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 649 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 649 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 650 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 650 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 650 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 650 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 650 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 650 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 650 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 650 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 650 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 651 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 651 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 651 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 651 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 651 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 651 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 651 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 651 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 651 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 652 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 652 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 652 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 652 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 652 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 652 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 652 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 652 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 652 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 653 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 653 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 653 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 653 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 653 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 653 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 653 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 653 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 653 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 654 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 654 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 654 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 654 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 654 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 654 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 654 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 654 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 654 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 655 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 655 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 655 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 655 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 655 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 655 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 655 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 655 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 655 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 656, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 656 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 656 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 656 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 656 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 656 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 656 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 656 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 656 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 656 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 657 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 657 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 657 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 657 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 657 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 657 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 657 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 657 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 657 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 658 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 658 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 658 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 658 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 658 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 658 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 658 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 658 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 658 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 659 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 659 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 659 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 659 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 659 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 659 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 659 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 659 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 659 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 660 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 660 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 660 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 660 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 660 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 660 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 660 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 660 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 660 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 661 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 661 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 661 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 661 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 661 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 661 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 661 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 661 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 661 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 662 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 662 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 662 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 662 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 662 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 662 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 662 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 662 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 662 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 663 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 663 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 663 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 663 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 663 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 663 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 663 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 663 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 663 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 664, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 664 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 664 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 664 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 664 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 664 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 664 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 664 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 664 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 664 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 665 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 665 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 665 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 665 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 665 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 665 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 665 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 665 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 665 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 666 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 666 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 666 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 666 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 666 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 666 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 666 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 666 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 666 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 667 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 667 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 667 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 667 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 667 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 667 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 667 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 667 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 667 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 668 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 668 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 668 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 668 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 668 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 668 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 668 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 668 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 668 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 669 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 669 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 669 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 669 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 669 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 669 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 669 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 669 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 669 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 670 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 670 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 670 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 670 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 670 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 670 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 670 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 670 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 670 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 671 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 671 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 671 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 671 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 671 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 671 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 671 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 671 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 671 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 672, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 672 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 672 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 672 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 672 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 672 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 672 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 672 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 672 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 672 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 673 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 673 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 673 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 673 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 673 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 673 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 673 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 673 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 673 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 674 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 674 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 674 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 674 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 674 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 674 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 674 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 674 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 674 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 675 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 675 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 675 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 675 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 675 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 675 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 675 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 675 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 675 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 676 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 676 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 676 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 676 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 676 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 676 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 676 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 676 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 676 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 677 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 677 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 677 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 677 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 677 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 677 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 677 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 677 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 677 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 678 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 678 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 678 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 678 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 678 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 678 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 678 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 678 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 678 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 679 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 679 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 679 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 679 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 679 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 679 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 679 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 679 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 679 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 680, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 680 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 680 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 680 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 680 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 680 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 680 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 680 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 680 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 680 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 681 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 681 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 681 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 681 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 681 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 681 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 681 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 681 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 681 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 682 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 682 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 682 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 682 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 682 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 682 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 682 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 682 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 682 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 683 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 683 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 683 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 683 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 683 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 683 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 683 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 683 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 683 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 684 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 684 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 684 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 684 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 684 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 684 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 684 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 684 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 684 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 685 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 685 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 685 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 685 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 685 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 685 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 685 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 685 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 685 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 686 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 686 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 686 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 686 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 686 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 686 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 686 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 686 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 686 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 687 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 687 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 687 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 687 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 687 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 687 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 687 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 687 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 687 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 688, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 688 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 688 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 688 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 688 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 688 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 688 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 688 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 688 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 688 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 689 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 689 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 689 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 689 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 689 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 689 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 689 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 689 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 689 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 690 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 690 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 690 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 690 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 690 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 690 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 690 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 690 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 690 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 691 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 691 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 691 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 691 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 691 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 691 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 691 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 691 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 691 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 692 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 692 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 692 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 692 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 692 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 692 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 692 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 692 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 692 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 693 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 693 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 693 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 693 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 693 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 693 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 693 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 693 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 693 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 694 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 694 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 694 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 694 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 694 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 694 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 694 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 694 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 694 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 695 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 695 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 695 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 695 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 695 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 695 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 695 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 695 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 695 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 696, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 696 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 696 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 696 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 696 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 696 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 696 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 696 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 696 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 696 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 697 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 697 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 697 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 697 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 697 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 697 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 697 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 697 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 697 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 698 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 698 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 698 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 698 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 698 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 698 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 698 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 698 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 698 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 699 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 699 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 699 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 699 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 699 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 699 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 699 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 699 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 699 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 700 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 700 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 700 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 700 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 700 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 700 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 700 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 700 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 700 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 701 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 701 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 701 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 701 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 701 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 701 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 701 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 701 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 701 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 702 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 702 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 702 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 702 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 702 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 702 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 702 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 702 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 702 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 703 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 703 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 703 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 703 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 703 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 703 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 703 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 703 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 703 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 704, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 704 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 704 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 704 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 704 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 704 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 704 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 704 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 704 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 704 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 705 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 705 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 705 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 705 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 705 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 705 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 705 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 705 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 705 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 706 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 706 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 706 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 706 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 706 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 706 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 706 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 706 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 706 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 707 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 707 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 707 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 707 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 707 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 707 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 707 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 707 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 707 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 708 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 708 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 708 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 708 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 708 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 708 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 708 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 708 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 708 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 709 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 709 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 709 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 709 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 709 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 709 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 709 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 709 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 709 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 710 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 710 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 710 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 710 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 710 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 710 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 710 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 710 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 710 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 711 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 711 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 711 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 711 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 711 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 711 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 711 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 711 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 711 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 712, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 712 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 712 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 712 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 712 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 712 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 712 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 712 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 712 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 712 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 713 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 713 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 713 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 713 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 713 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 713 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 713 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 713 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 713 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 714 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 714 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 714 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 714 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 714 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 714 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 714 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 714 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 714 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 715 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 715 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 715 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 715 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 715 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 715 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 715 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 715 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 715 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 716 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 716 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 716 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 716 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 716 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 716 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 716 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 716 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 716 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 717 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 717 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 717 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 717 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 717 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 717 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 717 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 717 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 717 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 718 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 718 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 718 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 718 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 718 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 718 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 718 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 718 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 718 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 719 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 719 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 719 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 719 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 719 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 719 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 719 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 719 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 719 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 720, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 720 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 720 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 720 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 720 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 720 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 720 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 720 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 720 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 720 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 721 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 721 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 721 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 721 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 721 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 721 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 721 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 721 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 721 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 722 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 722 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 722 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 722 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 722 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 722 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 722 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 722 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 722 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 723 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 723 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 723 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 723 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 723 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 723 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 723 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 723 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 723 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 724 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 724 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 724 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 724 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 724 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 724 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 724 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 724 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 724 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 725 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 725 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 725 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 725 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 725 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 725 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 725 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 725 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 725 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 726 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 726 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 726 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 726 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 726 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 726 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 726 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 726 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 726 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 727 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 727 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 727 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 727 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 727 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 727 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 727 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 727 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 727 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 728, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 728 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 728 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 728 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 728 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 728 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 728 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 728 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 728 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 728 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 729 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 729 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 729 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 729 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 729 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 729 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 729 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 729 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 729 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 730 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 730 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 730 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 730 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 730 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 730 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 730 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 730 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 730 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 731 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 731 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 731 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 731 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 731 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 731 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 731 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 731 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 731 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 732 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 732 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 732 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 732 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 732 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 732 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 732 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 732 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 732 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 733 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 733 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 733 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 733 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 733 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 733 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 733 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 733 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 733 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 734 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 734 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 734 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 734 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 734 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 734 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 734 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 734 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 734 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 735 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 735 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 735 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 735 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 735 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 735 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 735 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 735 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 735 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 736, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 736 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 736 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 736 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 736 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 736 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 736 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 736 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 736 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 736 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 737 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 737 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 737 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 737 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 737 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 737 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 737 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 737 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 737 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 738 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 738 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 738 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 738 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 738 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 738 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 738 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 738 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 738 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 739 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 739 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 739 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 739 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 739 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 739 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 739 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 739 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 739 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 740 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 740 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 740 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 740 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 740 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 740 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 740 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 740 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 740 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 741 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 741 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 741 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 741 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 741 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 741 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 741 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 741 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 741 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 742 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 742 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 742 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 742 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 742 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 742 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 742 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 742 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 742 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 743 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 743 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 743 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 743 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 743 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 743 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 743 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 743 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 743 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 744, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 744 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 744 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 744 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 744 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 744 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 744 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 744 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 744 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 744 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 745 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 745 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 745 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 745 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 745 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 745 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 745 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 745 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 745 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 746 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 746 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 746 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 746 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 746 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 746 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 746 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 746 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 746 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 747 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 747 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 747 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 747 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 747 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 747 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 747 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 747 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 747 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 748 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 748 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 748 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 748 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 748 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 748 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 748 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 748 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 748 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 749 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 749 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 749 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 749 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 749 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 749 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 749 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 749 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 749 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 750 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 750 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 750 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 750 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 750 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 750 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 750 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 750 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 750 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 751 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 751 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 751 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 751 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 751 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 751 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 751 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 751 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 751 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 752, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 752 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 752 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 752 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 752 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 752 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 752 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 752 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 752 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 752 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 753 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 753 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 753 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 753 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 754 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 754 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 754 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 754 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 755 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 755 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 755 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 755 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 756 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 756 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 756 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 756 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 757 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 757 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 757 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 757 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 758 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 758 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 758 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 758 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 759 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 759 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 759 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 759 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 760, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 760 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 760 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 760 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 760 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 761 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 761 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 761 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 761 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 762 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 762 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 762 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 762 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 763 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 763 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 763 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 763 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 764 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 764 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 764 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 764 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 765 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 765 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 765 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 765 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 766 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 766 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 766 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 766 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 767 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 767 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 767 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 767 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 768, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 768 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 768 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 768 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 768 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 769 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 769 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 769 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 769 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 770 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 770 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 770 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 770 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 771 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 771 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 771 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 771 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 772 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 772 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 772 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 772 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 773 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 773 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 773 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 773 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 774 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 774 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 774 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 774 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 775 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 775 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 775 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 775 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 776, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 776 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 776 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 776 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 776 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 777 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 777 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 777 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 777 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 778 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 778 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 778 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 778 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 779 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 779 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 779 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 779 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 780 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 780 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 780 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 780 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 781 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 781 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 781 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 781 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 782 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 782 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 782 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 782 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 783 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 783 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 783 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 783 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 784, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 784 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 784 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 784 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 784 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 785 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 785 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 785 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 785 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 786 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 786 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 786 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 786 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 787 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 787 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 787 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 787 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 788 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 788 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 788 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 788 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 789 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 789 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 789 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 789 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 790 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 790 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 790 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 790 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 791 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 791 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 791 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 791 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 792, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 792 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 792 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 792 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 792 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 793 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 793 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 793 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 793 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 794 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 794 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 794 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 794 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 795 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 795 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 795 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 795 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 796 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 796 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 796 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 796 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 797 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 797 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 797 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 797 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 798 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 798 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 798 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 798 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 799 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 799 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 799 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 799 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 800, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 800 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 800 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 800 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 800 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 801 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 801 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 801 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 801 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 802 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 802 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 802 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 802 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 803 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 803 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 803 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 803 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 804 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 804 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 804 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 804 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 805 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 805 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 805 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 805 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 806 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 806 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 806 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 806 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 807 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 807 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 807 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 807 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 808, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 808 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 808 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 808 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 808 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 809 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 809 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 809 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 809 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 810 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 810 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 810 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 810 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 811 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 811 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 811 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 811 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 812 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 812 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 812 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 812 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 813 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 813 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 813 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 813 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 814 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 814 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 814 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 814 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 815 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 815 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 815 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 815 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 816, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 816 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 816 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 816 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 816 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 817 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 817 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 817 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 817 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 818 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 818 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 818 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 818 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 819 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 819 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 819 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 819 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 820 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 820 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 820 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 820 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 821 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 821 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 821 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 821 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 822 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 822 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 822 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 822 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 823 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 823 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 823 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 823 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 824, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 824 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 824 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 824 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 824 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 825 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 825 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 825 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 825 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 826 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 826 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 826 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 826 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 827 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 827 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 827 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 827 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 828 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 828 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 828 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 828 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 829 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 829 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 829 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 829 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 830 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 830 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 830 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 830 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 831 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 831 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 831 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 831 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 832, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 832 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 832 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 832 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 832 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 833 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 833 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 833 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 833 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 834 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 834 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 834 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 834 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 835 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 835 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 835 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 835 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 836 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 836 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 836 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 836 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 837 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 837 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 837 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 837 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 838 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 838 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 838 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 838 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 839 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 839 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 839 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 839 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 840, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 840 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 840 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 840 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 840 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 841 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 841 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 841 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 841 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 842 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 842 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 842 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 842 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 843 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 843 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 843 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 843 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 844 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 844 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 844 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 844 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 845 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 845 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 845 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 845 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 846 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 846 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 846 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 846 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 847 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 847 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 847 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 847 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 848, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 848 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 848 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 848 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 848 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 849 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 849 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 849 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 849 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 850 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 850 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 850 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 850 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 851 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 851 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 851 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 851 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 852 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 852 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 852 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 852 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 853 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 853 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 853 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 853 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 854 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 854 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 854 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 854 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 855 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 855 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 855 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 855 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 856, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 856 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 856 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 856 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 856 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 857 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 857 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 857 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 857 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 858 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 858 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 858 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 858 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 859 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 859 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 859 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 859 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 860 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 860 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 860 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 860 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 861 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 861 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 861 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 861 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 862 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 862 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 862 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 862 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 863 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 863 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 863 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 863 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 864, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 864 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 864 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 864 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 864 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 865 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 865 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 865 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 865 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 866 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 866 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 866 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 866 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 867 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 867 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 867 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 867 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 868 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 868 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 868 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 868 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 869 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 869 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 869 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 869 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 870 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 870 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 870 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 870 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 871 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 871 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 871 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 871 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 872, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 872 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 872 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 872 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 872 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 873 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 873 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 873 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 873 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 874 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 874 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 874 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 874 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 875 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 875 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 875 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 875 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 876 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 876 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 876 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 876 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 877 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 877 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 877 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 877 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 878 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 878 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 878 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 878 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 879 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 879 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 879 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 879 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 880, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 880 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 880 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 880 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 880 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 881 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 881 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 881 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 881 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 882 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 882 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 882 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 882 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 883 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 883 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 883 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 883 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 884 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 884 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 884 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 884 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 885 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 885 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 885 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 885 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 886 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 886 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 886 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 886 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 887 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 887 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 887 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 887 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 888, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 888 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 888 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 888 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 888 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 889 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 889 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 889 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 889 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 890 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 890 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 890 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 890 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 891 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 891 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 891 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 891 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 892 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 892 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 892 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 892 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 893 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 893 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 893 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 893 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 894 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 894 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 894 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 894 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 895 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 895 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 895 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 895 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 896, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 896 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 896 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 896 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 896 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 897 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 897 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 897 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 897 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 898 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 898 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 898 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 898 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 899 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 899 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 899 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 899 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 900 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 900 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 900 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 900 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 901 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 901 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 901 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 901 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 902 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 902 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 902 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 902 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 903 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 903 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 903 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 903 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 904, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 904 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 904 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 904 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 904 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 905 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 905 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 905 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 905 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 906 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 906 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 906 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 906 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 907 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 907 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 907 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 907 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 908 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 908 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 908 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 908 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 909 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 909 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 909 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 909 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 910 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 910 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 910 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 910 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 911 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 911 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 911 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 911 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 912, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 912 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 912 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 912 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 912 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 913 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 913 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 913 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 913 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 914 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 914 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 914 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 914 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 915 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 915 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 915 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 915 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 916 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 916 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 916 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 916 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 917 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 917 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 917 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 917 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 918 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 918 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 918 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 918 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 919 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 919 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 919 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 919 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 920, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 920 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 920 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 920 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 920 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 921 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 921 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 921 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 921 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 922 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 922 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 922 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 922 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 923 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 923 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 923 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 923 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 924 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 924 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 924 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 924 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 925 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 925 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 925 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 925 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 926 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 926 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 926 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 926 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 927 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 927 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 927 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 927 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 928, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 928 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 928 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 928 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 928 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 929 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 929 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 929 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 929 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 930 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 930 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 930 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 930 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 931 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 931 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 931 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 931 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 932 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 932 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 932 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 932 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 933 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 933 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 933 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 933 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 934 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 934 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 934 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 934 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 935 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 935 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 935 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 935 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 936, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 936 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 936 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 936 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 936 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 937 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 937 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 937 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 937 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 938 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 938 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 938 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 938 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 939 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 939 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 939 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 939 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 940 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 940 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 940 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 940 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 941 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 941 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 941 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 941 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 942 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 942 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 942 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 942 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 943 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 943 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 943 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 943 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 944, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 944 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 944 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 944 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 944 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 945 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 945 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 945 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 945 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 946 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 946 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 946 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 946 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 947 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 947 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 947 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 947 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 948 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 948 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 948 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 948 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 949 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 949 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 949 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 949 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 950 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 950 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 950 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 950 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 951 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 951 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 951 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 951 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 952, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 952 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 952 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 952 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 952 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 953 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 953 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 953 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 953 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 954 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 954 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 954 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 954 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 955 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 955 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 955 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 955 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 956 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 956 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 956 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 956 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 957 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 957 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 957 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 957 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 958 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 958 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 958 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 958 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 959 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 959 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 959 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 959 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 960, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 960 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 960 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 960 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 960 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 961 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 961 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 961 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 961 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 962 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 962 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 962 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 962 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 963 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 963 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 963 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 963 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 964 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 964 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 964 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 964 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 965 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 965 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 965 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 965 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 966 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 966 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 966 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 966 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 967 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 967 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 967 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 967 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 968, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 968 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 968 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 968 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 968 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 969 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 969 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 969 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 969 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 970 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 970 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 970 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 970 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 971 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 971 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 971 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 971 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 972 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 972 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 972 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 972 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 973 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 973 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 973 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 973 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 974 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 974 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 974 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 974 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 975 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 975 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 975 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 975 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 976, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 976 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 976 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 976 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 976 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 977 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 977 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 977 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 977 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 978 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 978 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 978 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 978 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 979 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 979 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 979 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 979 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 980 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 980 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 980 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 980 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 981 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 981 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 981 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 981 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 982 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 982 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 982 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 982 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 983 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 983 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 983 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 983 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 984, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 984 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 984 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 984 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 984 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 985 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 985 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 985 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 985 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 986 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 986 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 986 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 986 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 987 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 987 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 987 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 987 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 988 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 988 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 988 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 988 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 989 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 989 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 989 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 989 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 990 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 990 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 990 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 990 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 991 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 991 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 991 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 991 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 992, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 992 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 992 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 992 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 992 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 993 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 993 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 993 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 993 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 994 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 994 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 994 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 994 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 995 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 995 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 995 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 995 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 996 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 996 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 996 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 996 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 997 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 997 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 997 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 997 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 998 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 998 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 998 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 998 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 999 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 999 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 999 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 999 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 1000, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1000 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1000 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1000 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1000 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1001 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1001 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1001 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1001 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1002 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1002 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1002 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1002 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1003 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1003 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1003 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1003 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1004 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1004 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1004 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1004 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1005 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1005 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1005 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1005 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1006 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1006 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1006 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1006 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1007 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1007 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1007 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1007 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 1008, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1008 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1008 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1008 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1008 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1009 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1009 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1009 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1009 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1010 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1010 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1010 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1010 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1011 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1011 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1011 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1011 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1012 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1012 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1012 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1012 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1013 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1013 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1013 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1013 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1014 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1014 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1014 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1014 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1015 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1015 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1015 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1015 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 1016, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1016 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1016 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1016 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1016 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1017 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1017 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1017 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1017 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1018 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1018 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1018 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1018 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1019 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1019 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1019 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1019 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1020 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1020 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1020 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1020 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1021 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1021 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1021 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1021 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1022 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1022 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1022 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1022 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1023 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1023 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 1023 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 1023 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 0, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 0 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 0 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 0 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 0 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 0 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 1 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 1 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 1 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 1 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 2 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 2 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 2 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 2 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 3 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 3 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 3 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 3 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 4 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 4 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 4 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 4 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 5 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 5 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 5 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 5 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 6 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 6 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 6 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 6 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 7 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 7 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 7 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 7 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 8, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 8 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 8 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 8 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 8 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 8 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 9 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 9 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 9 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 9 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 10 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 10 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 10 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 10 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 11 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 11 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 11 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 11 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 12 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 12 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 12 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 12 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 13 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 13 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 13 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 13 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 14 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 14 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 14 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 14 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 15 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 15 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 15 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 15 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 16, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 16 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 16 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 16 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 16 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 16 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 17 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 17 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 17 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 17 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 18 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 18 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 18 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 18 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 19 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 19 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 19 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 19 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 20 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 20 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 20 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 20 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 21 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 21 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 21 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 21 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 22 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 22 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 22 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 22 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 23 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 23 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 23 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 23 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 24, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 24 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 24 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 24 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 24 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 24 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 25 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 25 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 25 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 25 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 26 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 26 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 26 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 26 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 27 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 27 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 27 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 27 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 28 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 28 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 28 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 28 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 29 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 29 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 29 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 29 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 30 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 30 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 30 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 30 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 31 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 31 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 31 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 31 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 32, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 32 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 32 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 32 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 32 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 32 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 33 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 33 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 33 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 33 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 34 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 34 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 34 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 34 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 35 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 35 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 35 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 35 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 36 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 36 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 36 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 36 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 37 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 37 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 37 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 37 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 38 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 38 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 38 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 38 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 39 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 39 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 39 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 39 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 40, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 40 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 40 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 40 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 40 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 40 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 41 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 41 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 41 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 41 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 42 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 42 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 42 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 42 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 43 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 43 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 43 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 43 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 44 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 44 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 44 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 44 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 45 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 45 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 45 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 45 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 46 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 46 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 46 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 46 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 47 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 47 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 47 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 47 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 48, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 48 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 48 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 48 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 48 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 48 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 49 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 49 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 49 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 49 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 50 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 50 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 50 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 50 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 51 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 51 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 51 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 51 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 52 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 52 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 52 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 52 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 53 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 53 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 53 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 53 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 54 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 54 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 54 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 54 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 55 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 55 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 55 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 55 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 56, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 56 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 56 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 56 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 56 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 56 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 57 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 57 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 57 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 57 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 58 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 58 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 58 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 58 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 59 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 59 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 59 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 59 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 60 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 60 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 60 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 60 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 61 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 61 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 61 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 61 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 62 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 62 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 62 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 62 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 63 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 63 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 63 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 63 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 64, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 64 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 64 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 64 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 64 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 64 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 65 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 65 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 65 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 65 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 66 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 66 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 66 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 66 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 67 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 67 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 67 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 67 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 68 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 68 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 68 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 68 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 69 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 69 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 69 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 69 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 70 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 70 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 70 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 70 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 71 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 71 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 71 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 71 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 72, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   [gNB 0] Frame 72 : MIB->BCH  CC_id 0, Received 3 bytes
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 72 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 72 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 72 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 72 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 73 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 73 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 73 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 73 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 74 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 74 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 74 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 74 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 75 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 75 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 75 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 75 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 76 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 76 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 76 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 76 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 77 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 77 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 77 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 77 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 78 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 78 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 78 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 78 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 79 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 79 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 79 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 79 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 80, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 80 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 80 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 80 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 80 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 81 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 81 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 81 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 81 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 82 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 82 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 82 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 82 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 83 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 83 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 83 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 83 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 84 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 84 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 84 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 84 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 85 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 85 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 85 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 85 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 86 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 86 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 86 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 86 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 87 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 87 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 87 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 87 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 88, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 88 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 88 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 88 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 88 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 89 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 89 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 89 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 89 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 90 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 90 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 90 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 90 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 91 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 91 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 91 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 91 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 92 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 92 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 92 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 92 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 93 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 93 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 93 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 93 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 94 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 94 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 94 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 94 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 95 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 95 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 95 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 95 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 96, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 96 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 96 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 96 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 96 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 97 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 97 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 97 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 97 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 98 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 98 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 98 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 98 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 99 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 99 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 99 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 99 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 100 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 100 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 100 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 100 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 101 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 101 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 101 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 101 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 102 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 102 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 102 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 102 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 103 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 103 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 103 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 103 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 104, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 104 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 104 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 104 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 104 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 105 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 105 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 105 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 105 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 106 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 106 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 106 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 106 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 107 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 107 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 107 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 107 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 108 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 108 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 108 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 108 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 109 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 109 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 109 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 109 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 110 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 110 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 110 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 110 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 111 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 111 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 111 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 111 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 112, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 112 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 112 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 112 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 112 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 113 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 113 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 113 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 113 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 114 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 114 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 114 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 114 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 115 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 115 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 115 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 115 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 116 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 116 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 116 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 116 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 117 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 117 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 117 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 117 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 118 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 118 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 118 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 118 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 119 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 119 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 119 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 119 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 120, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 120 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 120 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 120 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 120 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 121 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 121 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 121 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 121 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 122 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 122 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 122 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 122 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 123 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 123 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 123 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 123 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 124 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 124 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 124 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 124 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 125 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 125 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 125 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 125 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 126 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 126 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 126 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 126 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 127 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 127 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 127 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 127 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 128, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 128 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 128 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 128 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 128 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 129 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 129 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 129 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 129 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 130 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 130 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 130 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 130 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 131 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 131 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 131 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 131 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 132 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 132 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 132 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 132 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 133 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 133 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 133 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 133 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 134 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 134 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 134 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 134 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 135 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 135 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 135 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 135 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 136, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 136 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 136 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 136 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 136 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 137 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 137 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 137 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 137 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 138 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 138 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 138 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 138 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 139 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 139 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 139 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 139 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 140 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 140 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 140 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 140 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 141 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 141 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 141 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 141 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 142 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 142 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 142 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 142 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 143 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 143 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 143 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 143 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 144, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 144 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 144 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 144 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 144 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 145 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 145 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 145 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 145 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 146 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 146 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 146 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 146 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 147 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 147 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 147 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 147 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 148 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 148 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 148 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 148 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 149 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 149 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 149 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 149 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 150 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 150 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 150 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 150 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 151 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 151 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 151 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 151 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 152, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 152 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 152 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 152 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 152 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 153 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 153 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 153 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 153 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 154 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 154 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 154 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 154 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 155 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 155 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 155 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 155 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 156 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 156 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 156 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 156 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 157 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 157 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 157 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 157 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 158 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 158 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 158 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 158 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 159 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 159 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 159 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 159 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 160, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 160 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 160 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 160 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 160 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 161 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 161 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 161 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 161 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 162 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 162 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 162 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 162 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 163 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 163 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 163 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 163 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 164 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 164 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 164 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 164 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 165 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 165 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 165 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 165 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 166 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 166 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 166 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 166 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 167 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 167 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 167 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 167 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 168, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 168 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 168 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 168 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 168 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 169 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 169 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 169 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 169 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 170 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 170 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 170 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 170 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 171 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 171 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 171 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 171 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 172 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 172 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 172 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 172 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 173 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 173 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 173 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 173 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 174 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 174 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 174 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 174 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 175 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 175 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 175 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 175 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 176, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 176 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 176 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 176 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 176 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 177 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 177 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 177 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 177 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 178 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 178 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 178 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 178 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 179 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 179 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 179 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 179 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 180 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 180 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 180 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 180 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 181 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 181 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 181 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 181 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 182 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 182 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 182 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 182 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 183 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 183 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 183 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 183 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   Frame 184, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 184 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 184 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 184 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 184 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 185 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 185 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 185 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 185 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 186 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 186 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 186 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 186 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 187 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 187 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 187 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 187 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 188 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 188 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 188 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 188 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 189 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 189 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 189 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 189 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 190 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 190 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 190 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 190 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 191 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 191 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 191 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 191 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   Frame 192, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 192 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 192 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 192 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 192 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 193 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 193 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 193 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 193 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 194 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 194 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 194 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 194 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 195 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 195 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 195 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 195 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 196 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 196 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 196 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 196 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 197 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 197 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 197 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 197 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 198 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 198 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 198 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 198 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 199 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 199 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 199 slot 8
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 199 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   Frame 200, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 200 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 200 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 200 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 200 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 201 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 201 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 201 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 201 slot 9
+PUCCH 0 : maxpos 1
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 202 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 202 slot 7
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 202 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 202 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 203 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 203 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 203 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 203 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 204 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 204 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 204 slot 8
+PUCCH 0 : maxpos 0
+[MAC]   Scheduling pucch reception for frame 204 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 205 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 205 slot 7
+PUCCH 0 : maxpos 3
+[MAC]   Scheduling pucch reception for frame 205 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 205 slot 9
+PUCCH 0 : maxpos 2
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 206 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 2
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 206 slot 7
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 206 slot 8
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 206 slot 9
+PUCCH 0 : maxpos 0
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 2
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 3
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 4
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 0
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 5
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 207 slot 6
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 0 rv 3
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[MAC]   Scheduling pucch reception for frame 207 slot 7
+PUCCH 0 : maxpos 1
+[MAC]   Scheduling pucch reception for frame 207 slot 8
+PUCCH 0 : maxpos 2
+[MAC]   Scheduling pucch reception for frame 207 slot 9
+PUCCH 0 : maxpos 3
+[MAC]   Frame 208, slot 0: Adding BCH PDU in position 0 (length 3)
+[MAC]   In nr_schedule_uss_dlsch_phytest frame 208 slot 1
+[MAC]   [gNB scheduler phytest] DCI type 1 payload: freq_alloc 211 (0,106,106), time_alloc 2, vrb to prb 0, mcs 9 tb_scaling 0 ndi 1 rv 1
+[SCTP]   Found data for descriptor 87
+[MAC]   DLSCH PDU: start PRB 0 n_PRB 106 startSymbolAndLength 54 start symbol 1 nb_symbols 12 nb_layers 1 nb_codewords 1 mcs 9 TBS: 2433
+[SCTP]   Received notification for sd 87, type 32773
+here comes the tree (instance 0):
+---------------------------------------------
+-----------------------
+eNB id 3585 (null)
+state 1
+nextstream 0
+in_streams 32 out_streams 32
+cnx_id 1 assoc_id 136
+---------------------------------------------
+[X2AP]   x2ap_enb_data_p not NULL and sctp state not SCTP_STATE_ESTABLISHED, what to do?
+Linux signal Aborted...
+/home/eurecom/panos/NR_RRC_harq_hacks/openairinterface5g/executables/softmodem-common.c:187 signal_handler() Exiting OAI softmodem: softmodem starting exit procedure
+
+Exiting ru_thread 
diff --git a/openair1/PHY/CODING/nrLDPC_decoder_LYC/bgs/BG1_compact_in_C.h b/openair1/PHY/CODING/nrLDPC_decoder_LYC/bgs/BG1_compact_in_C.h
new file mode 100644
index 0000000000000000000000000000000000000000..9a6086998e0d6e8d54425f3ad99aa6b24e3fe025
--- /dev/null
+++ b/openair1/PHY/CODING/nrLDPC_decoder_LYC/bgs/BG1_compact_in_C.h
@@ -0,0 +1,478 @@
+
+h_element host_h_compact1_I0 [46*19] =
+{{0 ,0,250},{1 ,0,2},{2 ,0,106},{3 ,0,121},{4 ,0,157},{5 ,0,205},{6 ,0,183},{7 ,0,220},{8 ,0,112},{9 ,0,103},{10 ,1,98},{11 ,0,77},{12 ,0,160},{13 ,0,177},{14 ,0,206},{15 ,0,40},{16 ,1,64},{17 ,0,7},{18 ,1,42},{19 ,0,60},{20 ,0,151},{21 ,1,249},{22 ,0,64},{23 ,1,156},{24 ,0,112},{25 ,1,23},{26 ,0,195},{27 ,1,25},{28 ,0,128},{29 ,1,86},{30 ,0,216},{31 ,1,95},{32 ,0,221},{33 ,1,2},{34 ,0,127},{35 ,1,161},{36 ,0,37},{37 ,1,198},{38 ,0,167},{39 ,1,173},{40 ,0,157},{41 ,1,167},{42 ,0,149},{43 ,1,151},{44 ,0,139},{45 ,1,149},
+{0 ,1,69},{1 ,2,239},{2 ,1,111},{3 ,1,89},{4 ,1,102},{5 ,1,236},{6 ,6,22},{7 ,1,44},{8 ,1,4},{9 ,1,182},{10 ,2,149},{11 ,1,41},{12 ,1,42},{13 ,3,248},{14 ,12,55},{15 ,1,96},{16 ,3,49},{17 ,14,164},{18 ,12,233},{19 ,1,73},{20 ,3,186},{21 ,5,121},{22 ,12,142},{23 ,2,147},{24 ,3,86},{25 ,6,136},{26 ,2,243},{27 ,6,104},{28 ,4,165},{29 ,14,236},{30 ,10,73},{31 ,7,177},{32 ,12,112},{33 ,2,187},{34 ,7,167},{35 ,6,197},{36 ,14,105},{37 ,13,220},{38 ,9,151},{39 ,3,139},{40 ,8,137},{41 ,3,173},{42 ,4,157},{43 ,16,163},{44 ,7,157},{45 ,6,151},
+{0 ,2,226},{1 ,3,117},{2 ,2,185},{3 ,3,84},{4 ,26,0},{5 ,3,194},{6 ,10,28},{7 ,4,159},{8 ,3,7},{9 ,10,109},{10 ,4,167},{11 ,12,83},{12 ,10,21},{13 ,7,151},{14 ,15,206},{15 ,10,65},{16 ,11,49},{17 ,16,59},{18 ,13,8},{19 ,7,72},{20 ,9,217},{21 ,16,109},{22 ,13,188},{23 ,10,170},{24 ,4,236},{25 ,7,116},{26 ,4,215},{27 ,8,194},{28 ,19,181},{29 ,18,84},{30 ,13,120},{31 ,22,172},{32 ,14,199},{33 ,11,41},{34 ,15,164},{35 ,12,207},{36 ,15,51},{37 ,23,122},{38 ,10,157},{39 ,7,149},{40 ,17,149},{41 ,9,139},{42 ,24,137},{43 ,18,173},{44 ,9,163},{45 ,10,167},
+{0 ,3,159},{1 ,4,124},{2 ,4,63},{3 ,4,20},{0 ,0,-1},{5 ,12,231},{6 ,11,67},{7 ,7,31},{8 ,12,211},{9 ,11,21},{10 ,7,160},{11 ,16,182},{12 ,11,32},{13 ,20,185},{14 ,16,127},{15 ,13,63},{16 ,20,51},{17 ,17,1},{18 ,18,155},{19 ,8,127},{20 ,11,47},{21 ,20,131},{22 ,17,158},{23 ,18,152},{24 ,11,116},{25 ,14,182},{26 ,15,61},{27 ,49,0},{28 ,21,63},{29 ,25,6},{30 ,24,9},{31 ,25,61},{32 ,24,121},{33 ,21,211},{34 ,17,159},{35 ,22,103},{36 ,18,120},{37 ,59,0},{38 ,12,163},{39 ,19,0},{40 ,62,0},{41 ,18,151},{42 ,64,0},{43 ,25,139},{44 ,22,173},{45 ,67,0},
+{0 ,5,100},{1 ,5,71},{2 ,5,117},{3 ,6,150},{0 ,0,-1},{5 ,16,28},{6 ,13,244},{7 ,8,167},{8 ,16,102},{9 ,13,142},{10 ,8,49},{11 ,21,78},{12 ,13,234},{13 ,23,62},{14 ,17,16},{15 ,18,75},{16 ,22,154},{17 ,21,144},{18 ,19,147},{19 ,10,224},{20 ,22,160},{21 ,21,171},{22 ,44,0},{23 ,45,0},{24 ,22,222},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,10},{1 ,7,222},{2 ,6,93},{3 ,7,131},{0 ,0,-1},{5 ,21,123},{6 ,17,11},{7 ,14,104},{8 ,19,164},{9 ,17,14},{10 ,14,58},{11 ,22,252},{12 ,18,7},{13 ,35,0},{14 ,21,229},{15 ,25,179},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,59},{1 ,8,104},{2 ,7,229},{3 ,8,243},{0 ,0,-1},{5 ,22,115},{6 ,18,157},{7 ,29,0},{8 ,21,109},{9 ,18,61},{10 ,32,0},{11 ,23,22},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,229},{1 ,9,173},{2 ,8,177},{3 ,10,136},{0 ,0,-1},{5 ,27,0},{6 ,20,211},{0 ,0,-1},{8 ,22,241},{9 ,20,216},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,110},{1 ,11,220},{2 ,9,95},{3 ,11,86},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,90},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,191},{1 ,12,102},{2 ,10,39},{3 ,12,246},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,9},{1 ,14,109},{2 ,13,142},{3 ,13,219},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,195},{1 ,15,132},{2 ,14,225},{3 ,14,211},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,23},{1 ,16,142},{2 ,15,225},{3 ,16,240},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,190},{1 ,17,155},{2 ,17,245},{3 ,17,76},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,35},{1 ,19,255},{2 ,18,205},{3 ,18,244},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,239},{1 ,21,28},{2 ,19,251},{3 ,20,144},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,31},{1 ,22,0},{2 ,20,117},{3 ,21,12},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,1},{1 ,23,0},{2 ,24,0},{3 ,22,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+};
+
+
+h_element host_h_compact2_I0 [68*30] =
+{{0 ,0,250},{0 ,1,69},{0 ,2,226},{0 ,3,159},{1 ,4,124},{0 ,5,100},{0 ,6,10},{1 ,7,222},{1 ,8,104},{0 ,9,59},{0 ,10,229},{0 ,11,110},{0 ,12,191},{0 ,13,9},{1 ,14,109},{0 ,15,195},{0 ,16,23},{1 ,17,155},{0 ,18,190},{0 ,19,35},{0 ,20,239},{0 ,21,31},{0 ,22,1},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,2},{2 ,1,111},{1 ,2,239},{1 ,3,117},{2 ,4,63},{1 ,5,71},{2 ,6,93},{2 ,7,229},{2 ,8,177},{1 ,9,173},{2 ,10,39},{1 ,11,220},{1 ,12,102},{2 ,13,142},{2 ,14,225},{1 ,15,132},{1 ,16,142},{2 ,17,245},{2 ,18,205},{1 ,19,255},{2 ,20,117},{1 ,21,28},{1 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,106},{3 ,1,89},{2 ,2,185},{3 ,3,84},{3 ,4,20},{2 ,5,117},{3 ,6,150},{3 ,7,131},{3 ,8,243},{2 ,9,95},{3 ,10,136},{3 ,11,86},{3 ,12,246},{3 ,13,219},{3 ,14,211},{2 ,15,225},{3 ,16,240},{3 ,17,76},{3 ,18,244},{2 ,19,251},{3 ,20,144},{3 ,21,12},{3 ,22,1},{11 ,23,22},{8 ,24,90},{15 ,25,179},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,121},{4 ,1,102},{10 ,2,149},{5 ,3,194},{7 ,4,159},{21 ,5,121},{6 ,6,22},{7 ,7,31},{7 ,8,167},{20 ,9,217},{6 ,10,28},{6 ,11,67},{5 ,12,231},{6 ,13,244},{7 ,14,104},{14 ,15,206},{5 ,16,28},{6 ,17,11},{6 ,18,157},{8 ,19,164},{6 ,20,211},{5 ,21,123},{5 ,22,115},{13 ,23,62},{30 ,24,9},{29 ,25,6},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,157},{5 ,1,236},{23 ,2,147},{8 ,3,7},{10 ,4,167},{0 ,0,-1},{25 ,6,136},{10 ,7,160},{10 ,8,49},{38 ,9,151},{9 ,10,109},{9 ,11,21},{8 ,12,211},{9 ,13,142},{10 ,14,58},{26 ,15,61},{8 ,16,102},{9 ,17,14},{9 ,18,61},{18 ,19,147},{9 ,20,216},{8 ,21,109},{8 ,22,241},{37 ,23,122},{32 ,24,121},{31 ,25,61},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,205},{7 ,1,44},{26 ,2,243},{13 ,3,248},{24 ,4,236},{0 ,0,-1},{27 ,6,104},{13 ,7,151},{19 ,8,127},{41 ,9,139},{12 ,10,21},{12 ,11,32},{11 ,12,83},{12 ,13,234},{17 ,14,164},{34 ,15,164},{11 ,16,182},{14 ,17,16},{12 ,18,7},{28 ,19,181},{13 ,20,185},{11 ,21,78},{11 ,22,252},{0 ,0,-1},{42 ,24,137},{43 ,25,139},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,183},{8 ,1,4},{33 ,2,187},{16 ,3,49},{26 ,4,215},{0 ,0,-1},{35 ,6,197},{19 ,7,72},{27 ,8,194},{44 ,9,163},{15 ,10,65},{16 ,11,49},{14 ,12,55},{15 ,13,63},{25 ,14,182},{36 ,15,51},{14 ,16,127},{17 ,17,1},{15 ,18,75},{39 ,19,0},{16 ,20,51},{14 ,21,229},{16 ,22,154},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,220},{9 ,1,182},{0 ,0,-1},{20 ,3,186},{28 ,4,165},{0 ,0,-1},{45 ,6,151},{25 ,7,116},{40 ,8,137},{0 ,0,-1},{19 ,10,224},{20 ,11,47},{18 ,12,233},{18 ,13,8},{29 ,14,236},{0 ,0,-1},{17 ,16,59},{22 ,17,158},{18 ,18,155},{0 ,0,-1},{21 ,20,131},{17 ,21,144},{20 ,22,160},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,112},{10 ,1,98},{0 ,0,-1},{24 ,3,86},{42 ,4,157},{0 ,0,-1},{0 ,0,-1},{31 ,7,177},{0 ,0,-1},{0 ,0,-1},{23 ,10,170},{24 ,11,116},{22 ,12,142},{22 ,13,188},{32 ,14,199},{0 ,0,-1},{21 ,16,109},{34 ,17,159},{23 ,18,152},{0 ,0,-1},{0 ,0,-1},{21 ,21,171},{24 ,22,222},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,103},{11 ,1,41},{0 ,0,-1},{39 ,3,139},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,167},{0 ,0,-1},{0 ,0,-1},{30 ,10,73},{33 ,11,41},{32 ,12,112},{30 ,13,120},{36 ,14,105},{0 ,0,-1},{43 ,16,163},{40 ,17,149},{29 ,18,84},{0 ,0,-1},{0 ,0,-1},{28 ,21,63},{31 ,22,172},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,77},{12 ,1,42},{0 ,0,-1},{41 ,3,173},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,149},{0 ,0,-1},{0 ,0,-1},{38 ,10,157},{0 ,0,-1},{35 ,12,207},{37 ,13,220},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,120},{0 ,0,-1},{0 ,0,-1},{33 ,21,211},{35 ,22,103},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,160},{15 ,1,96},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,157},{0 ,0,-1},{0 ,0,-1},{45 ,10,167},{0 ,0,-1},{38 ,12,163},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,151},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,173},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,177},{16 ,1,64},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,173},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,206},{18 ,1,42},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,40},{19 ,1,73},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,7},{21 ,1,249},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,60},{23 ,1,156},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,151},{25 ,1,23},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,64},{27 ,1,25},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,112},{29 ,1,86},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,195},{31 ,1,95},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,128},{33 ,1,2},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,216},{35 ,1,161},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,221},{37 ,1,198},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,127},{39 ,1,173},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,37},{41 ,1,167},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,167},{43 ,1,151},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,157},{45 ,1,149},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,149},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,139},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+//--------------------------------------------------BG1_I0-----------------------------------------------------------------
+
+
+//--------------------------------------------------BG1_I1-----------------------------------------------------------------
+
+h_element host_h_compact1_I1 [46*19] = 
+{{0 ,0,307},{1 ,0,76},{2 ,0,205},{3 ,0,276},{4 ,0,332},{5 ,0,195},{6 ,0,278},{7 ,0,9},{8 ,0,307},{9 ,0,366},{10 ,1,101},{11 ,0,48},{12 ,0,77},{13 ,0,313},{14 ,0,142},{15 ,0,241},{16 ,1,13},{17 ,0,260},{18 ,1,130},{19 ,0,145},{20 ,0,187},{21 ,1,205},{22 ,0,30},{23 ,1,24},{24 ,0,298},{25 ,1,72},{26 ,0,71},{27 ,1,194},{28 ,0,222},{29 ,1,252},{30 ,0,159},{31 ,1,100},{32 ,0,102},{33 ,1,323},{34 ,0,230},{35 ,1,320},{36 ,0,210},{37 ,1,269},{38 ,0,185},{39 ,1,258},{40 ,0,175},{41 ,1,52},{42 ,0,113},{43 ,1,113},{44 ,0,80},{45 ,1,135},
+{0 ,1,19},{1 ,2,76},{2 ,1,250},{3 ,1,87},{4 ,1,181},{5 ,1,14},{6 ,6,257},{7 ,1,62},{8 ,1,179},{9 ,1,232},{10 ,2,339},{11 ,1,102},{12 ,1,186},{13 ,3,177},{14 ,12,248},{15 ,1,2},{16 ,3,338},{17 ,14,303},{18 ,12,163},{19 ,1,213},{20 ,3,206},{21 ,5,102},{22 ,12,11},{23 ,2,89},{24 ,3,158},{25 ,6,17},{26 ,2,81},{27 ,6,194},{28 ,4,19},{29 ,14,5},{30 ,10,229},{31 ,7,215},{32 ,12,201},{33 ,2,8},{34 ,7,148},{35 ,6,335},{36 ,14,313},{37 ,13,82},{38 ,9,177},{39 ,3,93},{40 ,8,37},{41 ,3,314},{42 ,4,14},{43 ,16,132},{44 ,7,78},{45 ,6,149},
+{0 ,2,50},{1 ,3,73},{2 ,2,328},{3 ,3,0},{4 ,26,0},{5 ,3,115},{6 ,10,1},{7 ,4,316},{8 ,3,165},{9 ,10,321},{10 ,4,274},{11 ,12,8},{12 ,10,174},{13 ,7,266},{14 ,15,137},{15 ,10,210},{16 ,11,57},{17 ,16,81},{18 ,13,280},{19 ,7,344},{20 ,9,264},{21 ,16,328},{22 ,13,233},{23 ,10,61},{24 ,4,235},{25 ,7,383},{26 ,4,76},{27 ,8,101},{28 ,19,244},{29 ,18,147},{30 ,13,260},{31 ,22,258},{32 ,14,175},{33 ,11,361},{34 ,15,202},{35 ,12,2},{36 ,15,297},{37 ,23,115},{38 ,10,289},{39 ,7,346},{40 ,17,312},{41 ,9,139},{42 ,24,218},{43 ,18,114},{44 ,9,163},{45 ,10,15},
+{0 ,3,369},{1 ,4,288},{2 ,4,332},{3 ,4,275},{0 ,0,-1},{5 ,12,166},{6 ,11,351},{7 ,7,333},{8 ,12,18},{9 ,11,133},{10 ,7,111},{11 ,16,47},{12 ,11,232},{13 ,20,115},{14 ,16,89},{15 ,13,318},{16 ,20,289},{17 ,17,358},{18 ,18,132},{19 ,8,242},{20 ,11,341},{21 ,20,213},{22 ,17,22},{23 ,18,27},{24 ,11,339},{25 ,14,312},{26 ,15,136},{27 ,49,0},{28 ,21,274},{29 ,25,78},{30 ,24,90},{31 ,25,256},{32 ,24,287},{33 ,21,105},{34 ,17,312},{35 ,22,266},{36 ,18,21},{37 ,59,0},{38 ,12,214},{39 ,19,297},{40 ,62,0},{41 ,18,288},{42 ,64,0},{43 ,25,168},{44 ,22,274},{45 ,67,0},
+{0 ,5,181},{1 ,5,144},{2 ,5,256},{3 ,6,199},{0 ,0,-1},{5 ,16,241},{6 ,13,92},{7 ,8,290},{8 ,16,39},{9 ,13,57},{10 ,8,383},{11 ,21,188},{12 ,13,50},{13 ,23,370},{14 ,17,347},{15 ,18,55},{16 ,22,57},{17 ,21,375},{18 ,19,4},{19 ,10,197},{20 ,22,59},{21 ,21,97},{22 ,44,0},{23 ,45,0},{24 ,22,234},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,216},{1 ,7,331},{2 ,6,161},{3 ,7,153},{0 ,0,-1},{5 ,21,51},{6 ,17,253},{7 ,14,114},{8 ,19,224},{9 ,17,303},{10 ,14,354},{11 ,22,334},{12 ,18,74},{13 ,35,0},{14 ,21,12},{15 ,25,269},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,317},{1 ,8,331},{2 ,7,267},{3 ,8,56},{0 ,0,-1},{5 ,22,157},{6 ,18,18},{7 ,29,0},{8 ,21,368},{9 ,18,63},{10 ,32,0},{11 ,23,115},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,288},{1 ,9,178},{2 ,8,160},{3 ,10,132},{0 ,0,-1},{5 ,27,0},{6 ,20,225},{0 ,0,-1},{8 ,22,67},{9 ,20,82},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,109},{1 ,11,295},{2 ,9,63},{3 ,11,305},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,170},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,17},{1 ,12,342},{2 ,10,129},{3 ,12,231},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,357},{1 ,14,217},{2 ,13,200},{3 ,13,341},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,215},{1 ,15,99},{2 ,14,88},{3 ,14,212},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,106},{1 ,16,354},{2 ,15,53},{3 ,16,304},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,242},{1 ,17,114},{2 ,17,131},{3 ,17,300},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,180},{1 ,19,331},{2 ,18,240},{3 ,18,271},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,330},{1 ,21,112},{2 ,19,205},{3 ,20,39},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,346},{1 ,22,0},{2 ,20,13},{3 ,21,357},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,1},{1 ,23,0},{2 ,24,0},{3 ,22,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+
+h_element host_h_compact2_I1 [68*30] =
+{{0 ,0,307},{0 ,1,19},{0 ,2,50},{0 ,3,369},{1 ,4,288},{0 ,5,181},{0 ,6,216},{1 ,7,331},{1 ,8,331},{0 ,9,317},{0 ,10,288},{0 ,11,109},{0 ,12,17},{0 ,13,357},{1 ,14,217},{0 ,15,215},{0 ,16,106},{1 ,17,114},{0 ,18,242},{0 ,19,180},{0 ,20,330},{0 ,21,346},{0 ,22,1},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,76},{2 ,1,250},{1 ,2,76},{1 ,3,73},{2 ,4,332},{1 ,5,144},{2 ,6,161},{2 ,7,267},{2 ,8,160},{1 ,9,178},{2 ,10,129},{1 ,11,295},{1 ,12,342},{2 ,13,200},{2 ,14,88},{1 ,15,99},{1 ,16,354},{2 ,17,131},{2 ,18,240},{1 ,19,331},{2 ,20,13},{1 ,21,112},{1 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,205},{3 ,1,87},{2 ,2,328},{3 ,3,0},{3 ,4,275},{2 ,5,256},{3 ,6,199},{3 ,7,153},{3 ,8,56},{2 ,9,63},{3 ,10,132},{3 ,11,305},{3 ,12,231},{3 ,13,341},{3 ,14,212},{2 ,15,53},{3 ,16,304},{3 ,17,300},{3 ,18,271},{2 ,19,205},{3 ,20,39},{3 ,21,357},{3 ,22,1},{11 ,23,115},{8 ,24,170},{15 ,25,269},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,276},{4 ,1,181},{10 ,2,339},{5 ,3,115},{7 ,4,316},{21 ,5,102},{6 ,6,257},{7 ,7,333},{7 ,8,290},{20 ,9,264},{6 ,10,1},{6 ,11,351},{5 ,12,166},{6 ,13,92},{7 ,14,114},{14 ,15,137},{5 ,16,241},{6 ,17,253},{6 ,18,18},{8 ,19,224},{6 ,20,225},{5 ,21,51},{5 ,22,157},{13 ,23,370},{30 ,24,90},{29 ,25,78},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,332},{5 ,1,14},{23 ,2,89},{8 ,3,165},{10 ,4,274},{0 ,0,-1},{25 ,6,17},{10 ,7,111},{10 ,8,383},{38 ,9,177},{9 ,10,321},{9 ,11,133},{8 ,12,18},{9 ,13,57},{10 ,14,354},{26 ,15,136},{8 ,16,39},{9 ,17,303},{9 ,18,63},{18 ,19,4},{9 ,20,82},{8 ,21,368},{8 ,22,67},{37 ,23,115},{32 ,24,287},{31 ,25,256},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,195},{7 ,1,62},{26 ,2,81},{13 ,3,177},{24 ,4,235},{0 ,0,-1},{27 ,6,194},{13 ,7,266},{19 ,8,242},{41 ,9,139},{12 ,10,174},{12 ,11,232},{11 ,12,8},{12 ,13,50},{17 ,14,303},{34 ,15,202},{11 ,16,47},{14 ,17,347},{12 ,18,74},{28 ,19,244},{13 ,20,115},{11 ,21,188},{11 ,22,334},{0 ,0,-1},{42 ,24,218},{43 ,25,168},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,278},{8 ,1,179},{33 ,2,8},{16 ,3,338},{26 ,4,76},{0 ,0,-1},{35 ,6,335},{19 ,7,344},{27 ,8,101},{44 ,9,163},{15 ,10,210},{16 ,11,57},{14 ,12,248},{15 ,13,318},{25 ,14,312},{36 ,15,297},{14 ,16,89},{17 ,17,358},{15 ,18,55},{39 ,19,297},{16 ,20,289},{14 ,21,12},{16 ,22,57},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,9},{9 ,1,232},{0 ,0,-1},{20 ,3,206},{28 ,4,19},{0 ,0,-1},{45 ,6,149},{25 ,7,383},{40 ,8,37},{0 ,0,-1},{19 ,10,197},{20 ,11,341},{18 ,12,163},{18 ,13,280},{29 ,14,5},{0 ,0,-1},{17 ,16,81},{22 ,17,22},{18 ,18,132},{0 ,0,-1},{21 ,20,213},{17 ,21,375},{20 ,22,59},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,307},{10 ,1,101},{0 ,0,-1},{24 ,3,158},{42 ,4,14},{0 ,0,-1},{0 ,0,-1},{31 ,7,215},{0 ,0,-1},{0 ,0,-1},{23 ,10,61},{24 ,11,339},{22 ,12,11},{22 ,13,233},{32 ,14,175},{0 ,0,-1},{21 ,16,328},{34 ,17,312},{23 ,18,27},{0 ,0,-1},{0 ,0,-1},{21 ,21,97},{24 ,22,234},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,366},{11 ,1,102},{0 ,0,-1},{39 ,3,93},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,148},{0 ,0,-1},{0 ,0,-1},{30 ,10,229},{33 ,11,361},{32 ,12,201},{30 ,13,260},{36 ,14,313},{0 ,0,-1},{43 ,16,132},{40 ,17,312},{29 ,18,147},{0 ,0,-1},{0 ,0,-1},{28 ,21,274},{31 ,22,258},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,48},{12 ,1,186},{0 ,0,-1},{41 ,3,314},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,346},{0 ,0,-1},{0 ,0,-1},{38 ,10,289},{0 ,0,-1},{35 ,12,2},{37 ,13,82},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,21},{0 ,0,-1},{0 ,0,-1},{33 ,21,105},{35 ,22,266},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,77},{15 ,1,2},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,78},{0 ,0,-1},{0 ,0,-1},{45 ,10,15},{0 ,0,-1},{38 ,12,214},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,288},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,274},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,313},{16 ,1,13},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,114},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,142},{18 ,1,130},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,241},{19 ,1,213},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,260},{21 ,1,205},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,145},{23 ,1,24},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,187},{25 ,1,72},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,30},{27 ,1,194},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,298},{29 ,1,252},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,71},{31 ,1,100},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,222},{33 ,1,323},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,159},{35 ,1,320},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,102},{37 ,1,269},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,230},{39 ,1,258},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,210},{41 ,1,52},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,185},{43 ,1,113},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,175},{45 ,1,135},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,113},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,80},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+//--------------------------------------------------BG1_I1-----------------------------------------------------------------
+
+//--------------------------------------------------BG1_I2-----------------------------------------------------------------
+
+h_element host_h_compact1_I2 [46*19] = 
+{{0 ,0,73},{1 ,0,303},{2 ,0,68},{3 ,0,220},{4 ,0,233},{5 ,0,83},{6 ,0,289},{7 ,0,12},{8 ,0,295},{9 ,0,189},{10 ,1,14},{11 ,0,16},{12 ,0,229},{13 ,0,39},{14 ,0,78},{15 ,0,229},{16 ,1,69},{17 ,0,257},{18 ,1,260},{19 ,0,64},{20 ,0,301},{21 ,1,79},{22 ,0,177},{23 ,1,249},{24 ,0,289},{25 ,1,172},{26 ,0,270},{27 ,1,210},{28 ,0,11},{29 ,1,27},{30 ,0,91},{31 ,1,222},{32 ,0,210},{33 ,1,170},{34 ,0,187},{35 ,1,207},{36 ,0,259},{37 ,1,298},{38 ,0,151},{39 ,1,102},{40 ,0,32},{41 ,1,154},{42 ,0,226},{43 ,1,228},{44 ,0,234},{45 ,1,101},
+{0 ,1,15},{1 ,2,294},{2 ,1,7},{3 ,1,208},{4 ,1,205},{5 ,1,292},{6 ,6,21},{7 ,1,88},{8 ,1,133},{9 ,1,244},{10 ,2,80},{11 ,1,147},{12 ,1,235},{13 ,3,302},{14 ,12,299},{15 ,1,290},{16 ,3,140},{17 ,14,147},{18 ,12,294},{19 ,1,181},{20 ,3,162},{21 ,5,175},{22 ,12,20},{23 ,2,50},{24 ,3,280},{25 ,6,295},{26 ,2,110},{27 ,6,29},{28 ,4,293},{29 ,14,308},{30 ,10,23},{31 ,7,308},{32 ,12,22},{33 ,2,20},{34 ,7,296},{35 ,6,158},{36 ,14,179},{37 ,13,15},{38 ,9,179},{39 ,3,77},{40 ,8,80},{41 ,3,47},{42 ,4,65},{43 ,16,69},{44 ,7,227},{45 ,6,228},
+{0 ,2,103},{1 ,3,27},{2 ,2,80},{3 ,3,30},{4 ,26,0},{5 ,3,50},{6 ,10,293},{7 ,4,207},{8 ,3,130},{9 ,10,36},{10 ,4,211},{11 ,12,290},{12 ,10,169},{13 ,7,303},{14 ,15,54},{15 ,10,60},{16 ,11,45},{17 ,16,128},{18 ,13,291},{19 ,7,101},{20 ,9,40},{21 ,16,132},{22 ,13,55},{23 ,10,133},{24 ,4,110},{25 ,7,96},{26 ,4,318},{27 ,8,304},{28 ,19,50},{29 ,18,117},{30 ,13,105},{31 ,22,66},{32 ,14,271},{33 ,11,140},{34 ,15,5},{35 ,12,55},{36 ,15,178},{37 ,23,115},{38 ,10,64},{39 ,7,192},{40 ,17,197},{41 ,9,124},{42 ,24,126},{43 ,18,176},{44 ,9,259},{45 ,10,126},
+{0 ,3,49},{1 ,4,261},{2 ,4,280},{3 ,4,197},{0 ,0,-1},{5 ,12,318},{6 ,11,13},{7 ,7,50},{8 ,12,231},{9 ,11,286},{10 ,7,75},{11 ,16,289},{12 ,11,48},{13 ,20,160},{14 ,16,61},{15 ,13,130},{16 ,20,115},{17 ,17,51},{18 ,18,141},{19 ,8,270},{20 ,11,130},{21 ,20,283},{22 ,17,316},{23 ,18,105},{24 ,11,187},{25 ,14,46},{26 ,15,67},{27 ,49,0},{28 ,21,234},{29 ,25,29},{30 ,24,135},{31 ,25,162},{32 ,24,217},{33 ,21,33},{34 ,17,44},{35 ,22,285},{36 ,18,160},{37 ,59,0},{38 ,12,181},{39 ,19,208},{40 ,62,0},{41 ,18,207},{42 ,64,0},{43 ,25,102},{44 ,22,260},{45 ,67,0},
+{0 ,5,240},{1 ,5,161},{2 ,5,38},{3 ,6,61},{0 ,0,-1},{5 ,16,201},{6 ,13,232},{7 ,8,25},{8 ,16,296},{9 ,13,151},{10 ,8,161},{11 ,21,177},{12 ,13,105},{13 ,23,37},{14 ,17,179},{15 ,18,184},{16 ,22,300},{17 ,21,228},{18 ,19,295},{19 ,10,41},{20 ,22,10},{21 ,21,103},{22 ,44,0},{23 ,45,0},{24 ,22,281},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,39},{1 ,7,133},{2 ,6,227},{3 ,7,175},{0 ,0,-1},{5 ,21,267},{6 ,17,302},{7 ,14,76},{8 ,19,110},{9 ,17,267},{10 ,14,311},{11 ,22,43},{12 ,18,52},{13 ,35,0},{14 ,21,258},{15 ,25,51},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,15},{1 ,8,4},{2 ,7,202},{3 ,8,79},{0 ,0,-1},{5 ,22,279},{6 ,18,138},{7 ,29,0},{8 ,21,269},{9 ,18,135},{10 ,32,0},{11 ,23,280},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,162},{1 ,9,80},{2 ,8,200},{3 ,10,281},{0 ,0,-1},{5 ,27,0},{6 ,20,235},{0 ,0,-1},{8 ,22,245},{9 ,20,209},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,215},{1 ,11,129},{2 ,9,71},{3 ,11,303},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,154},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,164},{1 ,12,300},{2 ,10,106},{3 ,12,253},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,133},{1 ,14,76},{2 ,13,295},{3 ,13,164},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,298},{1 ,15,266},{2 ,14,283},{3 ,14,53},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,110},{1 ,16,72},{2 ,15,301},{3 ,16,44},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,113},{1 ,17,83},{2 ,17,184},{3 ,17,28},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,16},{1 ,19,260},{2 ,18,246},{3 ,18,77},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,189},{1 ,21,301},{2 ,19,230},{3 ,20,319},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,32},{1 ,22,0},{2 ,20,276},{3 ,21,68},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,1},{1 ,23,0},{2 ,24,0},{3 ,22,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+
+h_element host_h_compact2_I2 [68*30] =
+{{0 ,0,73},{0 ,1,15},{0 ,2,103},{0 ,3,49},{1 ,4,261},{0 ,5,240},{0 ,6,39},{1 ,7,133},{1 ,8,4},{0 ,9,15},{0 ,10,162},{0 ,11,215},{0 ,12,164},{0 ,13,133},{1 ,14,76},{0 ,15,298},{0 ,16,110},{1 ,17,83},{0 ,18,113},{0 ,19,16},{0 ,20,189},{0 ,21,32},{0 ,22,1},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,303},{2 ,1,7},{1 ,2,294},{1 ,3,27},{2 ,4,280},{1 ,5,161},{2 ,6,227},{2 ,7,202},{2 ,8,200},{1 ,9,80},{2 ,10,106},{1 ,11,129},{1 ,12,300},{2 ,13,295},{2 ,14,283},{1 ,15,266},{1 ,16,72},{2 ,17,184},{2 ,18,246},{1 ,19,260},{2 ,20,276},{1 ,21,301},{1 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,68},{3 ,1,208},{2 ,2,80},{3 ,3,30},{3 ,4,197},{2 ,5,38},{3 ,6,61},{3 ,7,175},{3 ,8,79},{2 ,9,71},{3 ,10,281},{3 ,11,303},{3 ,12,253},{3 ,13,164},{3 ,14,53},{2 ,15,301},{3 ,16,44},{3 ,17,28},{3 ,18,77},{2 ,19,230},{3 ,20,319},{3 ,21,68},{3 ,22,1},{11 ,23,280},{8 ,24,154},{15 ,25,51},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,220},{4 ,1,205},{10 ,2,80},{5 ,3,50},{7 ,4,207},{21 ,5,175},{6 ,6,21},{7 ,7,50},{7 ,8,25},{20 ,9,40},{6 ,10,293},{6 ,11,13},{5 ,12,318},{6 ,13,232},{7 ,14,76},{14 ,15,54},{5 ,16,201},{6 ,17,302},{6 ,18,138},{8 ,19,110},{6 ,20,235},{5 ,21,267},{5 ,22,279},{13 ,23,37},{30 ,24,135},{29 ,25,29},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,233},{5 ,1,292},{23 ,2,50},{8 ,3,130},{10 ,4,211},{0 ,0,-1},{25 ,6,295},{10 ,7,75},{10 ,8,161},{38 ,9,179},{9 ,10,36},{9 ,11,286},{8 ,12,231},{9 ,13,151},{10 ,14,311},{26 ,15,67},{8 ,16,296},{9 ,17,267},{9 ,18,135},{18 ,19,295},{9 ,20,209},{8 ,21,269},{8 ,22,245},{37 ,23,115},{32 ,24,217},{31 ,25,162},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,83},{7 ,1,88},{26 ,2,110},{13 ,3,302},{24 ,4,110},{0 ,0,-1},{27 ,6,29},{13 ,7,303},{19 ,8,270},{41 ,9,124},{12 ,10,169},{12 ,11,48},{11 ,12,290},{12 ,13,105},{17 ,14,147},{34 ,15,5},{11 ,16,289},{14 ,17,179},{12 ,18,52},{28 ,19,50},{13 ,20,160},{11 ,21,177},{11 ,22,43},{0 ,0,-1},{42 ,24,126},{43 ,25,102},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,289},{8 ,1,133},{33 ,2,20},{16 ,3,140},{26 ,4,318},{0 ,0,-1},{35 ,6,158},{19 ,7,101},{27 ,8,304},{44 ,9,259},{15 ,10,60},{16 ,11,45},{14 ,12,299},{15 ,13,130},{25 ,14,46},{36 ,15,178},{14 ,16,61},{17 ,17,51},{15 ,18,184},{39 ,19,208},{16 ,20,115},{14 ,21,258},{16 ,22,300},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,12},{9 ,1,244},{0 ,0,-1},{20 ,3,162},{28 ,4,293},{0 ,0,-1},{45 ,6,228},{25 ,7,96},{40 ,8,80},{0 ,0,-1},{19 ,10,41},{20 ,11,130},{18 ,12,294},{18 ,13,291},{29 ,14,308},{0 ,0,-1},{17 ,16,128},{22 ,17,316},{18 ,18,141},{0 ,0,-1},{21 ,20,283},{17 ,21,228},{20 ,22,10},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,295},{10 ,1,14},{0 ,0,-1},{24 ,3,280},{42 ,4,65},{0 ,0,-1},{0 ,0,-1},{31 ,7,308},{0 ,0,-1},{0 ,0,-1},{23 ,10,133},{24 ,11,187},{22 ,12,20},{22 ,13,55},{32 ,14,271},{0 ,0,-1},{21 ,16,132},{34 ,17,44},{23 ,18,105},{0 ,0,-1},{0 ,0,-1},{21 ,21,103},{24 ,22,281},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,189},{11 ,1,147},{0 ,0,-1},{39 ,3,77},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,296},{0 ,0,-1},{0 ,0,-1},{30 ,10,23},{33 ,11,140},{32 ,12,22},{30 ,13,105},{36 ,14,179},{0 ,0,-1},{43 ,16,69},{40 ,17,197},{29 ,18,117},{0 ,0,-1},{0 ,0,-1},{28 ,21,234},{31 ,22,66},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,16},{12 ,1,235},{0 ,0,-1},{41 ,3,47},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,192},{0 ,0,-1},{0 ,0,-1},{38 ,10,64},{0 ,0,-1},{35 ,12,55},{37 ,13,15},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,160},{0 ,0,-1},{0 ,0,-1},{33 ,21,33},{35 ,22,285},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,229},{15 ,1,290},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,227},{0 ,0,-1},{0 ,0,-1},{45 ,10,126},{0 ,0,-1},{38 ,12,181},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,207},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,260},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,39},{16 ,1,69},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,176},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,78},{18 ,1,260},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,229},{19 ,1,181},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,257},{21 ,1,79},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,64},{23 ,1,249},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,301},{25 ,1,172},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,177},{27 ,1,210},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,289},{29 ,1,27},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,270},{31 ,1,222},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,11},{33 ,1,170},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,91},{35 ,1,207},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,210},{37 ,1,298},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,187},{39 ,1,102},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,259},{41 ,1,154},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,151},{43 ,1,228},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,32},{45 ,1,101},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,226},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,234},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+//--------------------------------------------------BG1_I2-----------------------------------------------------------------
+
+
+//--------------------------------------------------BG1_I3-----------------------------------------------------------------
+
+h_element host_h_compact1_I3 [46*19] = 
+{{0 ,0,223},{1 ,0,141},{2 ,0,207},{3 ,0,201},{4 ,0,170},{5 ,0,164},{6 ,0,158},{7 ,0,17},{8 ,0,33},{9 ,0,9},{10 ,1,82},{11 ,0,52},{12 ,0,142},{13 ,0,81},{14 ,0,14},{15 ,0,90},{16 ,1,154},{17 ,0,56},{18 ,1,199},{19 ,0,8},{20 ,0,105},{21 ,1,192},{22 ,0,53},{23 ,1,88},{24 ,0,49},{25 ,1,1},{26 ,0,107},{27 ,1,208},{28 ,0,146},{29 ,1,150},{30 ,0,34},{31 ,1,175},{32 ,0,192},{33 ,1,114},{34 ,0,82},{35 ,1,192},{36 ,0,222},{37 ,1,81},{38 ,0,123},{39 ,1,12},{40 ,0,67},{41 ,1,23},{42 ,0,114},{43 ,1,206},{44 ,0,84},{45 ,1,184},
+{0 ,1,16},{1 ,2,45},{2 ,1,203},{3 ,1,18},{4 ,1,10},{5 ,1,59},{6 ,6,119},{7 ,1,76},{8 ,1,95},{9 ,1,37},{10 ,2,165},{11 ,1,11},{12 ,1,175},{13 ,3,56},{14 ,12,175},{15 ,1,120},{16 ,3,164},{17 ,14,110},{18 ,12,110},{19 ,1,6},{20 ,3,210},{21 ,5,131},{22 ,12,0},{23 ,2,203},{24 ,3,157},{25 ,6,166},{26 ,2,176},{27 ,6,141},{28 ,4,153},{29 ,14,11},{30 ,10,130},{31 ,7,49},{32 ,12,209},{33 ,2,49},{34 ,7,186},{35 ,6,173},{36 ,14,157},{37 ,13,195},{38 ,9,90},{39 ,3,77},{40 ,8,45},{41 ,3,215},{42 ,4,91},{43 ,16,22},{44 ,7,4},{45 ,6,121},
+{0 ,2,94},{1 ,3,151},{2 ,2,31},{3 ,3,165},{4 ,26,0},{5 ,3,86},{6 ,10,113},{7 ,4,104},{8 ,3,4},{9 ,10,213},{10 ,4,174},{11 ,12,2},{12 ,10,136},{13 ,7,72},{14 ,15,211},{15 ,10,131},{16 ,11,43},{17 ,16,200},{18 ,13,200},{19 ,7,103},{20 ,9,121},{21 ,16,220},{22 ,13,3},{23 ,10,168},{24 ,4,64},{25 ,7,65},{26 ,4,212},{27 ,8,174},{28 ,19,217},{29 ,18,53},{30 ,13,210},{31 ,22,177},{32 ,14,58},{33 ,11,161},{34 ,15,68},{35 ,12,26},{36 ,15,0},{37 ,23,138},{38 ,10,73},{39 ,7,49},{40 ,17,96},{41 ,9,60},{42 ,24,78},{43 ,18,134},{44 ,9,9},{45 ,10,29},
+{0 ,3,91},{1 ,4,46},{2 ,4,176},{3 ,4,5},{0 ,0,-1},{5 ,12,80},{6 ,11,21},{7 ,7,100},{8 ,12,217},{9 ,11,105},{10 ,7,19},{11 ,16,35},{12 ,11,3},{13 ,20,217},{14 ,16,191},{15 ,13,209},{16 ,20,189},{17 ,17,63},{18 ,18,143},{19 ,8,198},{20 ,11,214},{21 ,20,50},{22 ,17,148},{23 ,18,122},{24 ,11,193},{25 ,14,81},{26 ,15,127},{27 ,49,0},{28 ,21,114},{29 ,25,68},{30 ,24,123},{31 ,25,128},{32 ,24,30},{33 ,21,137},{34 ,17,150},{35 ,22,187},{36 ,18,6},{37 ,59,0},{38 ,12,10},{39 ,19,114},{40 ,62,0},{41 ,18,167},{42 ,64,0},{43 ,25,161},{44 ,22,12},{45 ,67,0},
+{0 ,5,74},{1 ,5,119},{2 ,5,180},{3 ,6,45},{0 ,0,-1},{5 ,16,182},{6 ,13,63},{7 ,8,150},{8 ,16,204},{9 ,13,89},{10 ,8,194},{11 ,21,32},{12 ,13,28},{13 ,23,78},{14 ,17,51},{15 ,18,209},{16 ,22,101},{17 ,21,4},{18 ,19,186},{19 ,10,8},{20 ,22,183},{21 ,21,106},{22 ,44,0},{23 ,45,0},{24 ,22,124},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,10},{1 ,7,157},{2 ,6,186},{3 ,7,142},{0 ,0,-1},{5 ,21,130},{6 ,17,51},{7 ,14,158},{8 ,19,39},{9 ,17,185},{10 ,14,103},{11 ,22,84},{12 ,18,182},{13 ,35,0},{14 ,21,43},{15 ,25,81},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,0},{1 ,8,133},{2 ,7,95},{3 ,8,16},{0 ,0,-1},{5 ,22,153},{6 ,18,136},{7 ,29,0},{8 ,21,58},{9 ,18,109},{10 ,32,0},{11 ,23,201},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,205},{1 ,9,87},{2 ,8,153},{3 ,10,34},{0 ,0,-1},{5 ,27,0},{6 ,20,116},{0 ,0,-1},{8 ,22,44},{9 ,20,218},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,216},{1 ,11,206},{2 ,9,177},{3 ,11,155},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,201},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,21},{1 ,12,93},{2 ,10,70},{3 ,12,213},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,215},{1 ,14,79},{2 ,13,77},{3 ,13,147},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,14},{1 ,15,9},{2 ,14,214},{3 ,14,69},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,70},{1 ,16,118},{2 ,15,77},{3 ,16,96},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,141},{1 ,17,194},{2 ,17,198},{3 ,17,74},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,198},{1 ,19,31},{2 ,18,117},{3 ,18,99},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,104},{1 ,21,187},{2 ,19,223},{3 ,20,30},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,81},{1 ,22,0},{2 ,20,90},{3 ,21,158},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,1},{1 ,23,0},{2 ,24,0},{3 ,22,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+};
+
+h_element host_h_compact2_I3 [68*30] =
+{{0 ,0,223},{0 ,1,16},{0 ,2,94},{0 ,3,91},{1 ,4,46},{0 ,5,74},{0 ,6,10},{1 ,7,157},{1 ,8,133},{0 ,9,0},{0 ,10,205},{0 ,11,216},{0 ,12,21},{0 ,13,215},{1 ,14,79},{0 ,15,14},{0 ,16,70},{1 ,17,194},{0 ,18,141},{0 ,19,198},{0 ,20,104},{0 ,21,81},{0 ,22,1},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,141},{2 ,1,203},{1 ,2,45},{1 ,3,151},{2 ,4,176},{1 ,5,119},{2 ,6,186},{2 ,7,95},{2 ,8,153},{1 ,9,87},{2 ,10,70},{1 ,11,206},{1 ,12,93},{2 ,13,77},{2 ,14,214},{1 ,15,9},{1 ,16,118},{2 ,17,198},{2 ,18,117},{1 ,19,31},{2 ,20,90},{1 ,21,187},{1 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,207},{3 ,1,18},{2 ,2,31},{3 ,3,165},{3 ,4,5},{2 ,5,180},{3 ,6,45},{3 ,7,142},{3 ,8,16},{2 ,9,177},{3 ,10,34},{3 ,11,155},{3 ,12,213},{3 ,13,147},{3 ,14,69},{2 ,15,77},{3 ,16,96},{3 ,17,74},{3 ,18,99},{2 ,19,223},{3 ,20,30},{3 ,21,158},{3 ,22,1},{11 ,23,201},{8 ,24,201},{15 ,25,81},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,201},{4 ,1,10},{10 ,2,165},{5 ,3,86},{7 ,4,104},{21 ,5,131},{6 ,6,119},{7 ,7,100},{7 ,8,150},{20 ,9,121},{6 ,10,113},{6 ,11,21},{5 ,12,80},{6 ,13,63},{7 ,14,158},{14 ,15,211},{5 ,16,182},{6 ,17,51},{6 ,18,136},{8 ,19,39},{6 ,20,116},{5 ,21,130},{5 ,22,153},{13 ,23,78},{30 ,24,123},{29 ,25,68},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,170},{5 ,1,59},{23 ,2,203},{8 ,3,4},{10 ,4,174},{0 ,0,-1},{25 ,6,166},{10 ,7,19},{10 ,8,194},{38 ,9,90},{9 ,10,213},{9 ,11,105},{8 ,12,217},{9 ,13,89},{10 ,14,103},{26 ,15,127},{8 ,16,204},{9 ,17,185},{9 ,18,109},{18 ,19,186},{9 ,20,218},{8 ,21,58},{8 ,22,44},{37 ,23,138},{32 ,24,30},{31 ,25,128},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,164},{7 ,1,76},{26 ,2,176},{13 ,3,56},{24 ,4,64},{0 ,0,-1},{27 ,6,141},{13 ,7,72},{19 ,8,198},{41 ,9,60},{12 ,10,136},{12 ,11,3},{11 ,12,2},{12 ,13,28},{17 ,14,110},{34 ,15,68},{11 ,16,35},{14 ,17,51},{12 ,18,182},{28 ,19,217},{13 ,20,217},{11 ,21,32},{11 ,22,84},{0 ,0,-1},{42 ,24,78},{43 ,25,161},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,158},{8 ,1,95},{33 ,2,49},{16 ,3,164},{26 ,4,212},{0 ,0,-1},{35 ,6,173},{19 ,7,103},{27 ,8,174},{44 ,9,9},{15 ,10,131},{16 ,11,43},{14 ,12,175},{15 ,13,209},{25 ,14,81},{36 ,15,0},{14 ,16,191},{17 ,17,63},{15 ,18,209},{39 ,19,114},{16 ,20,189},{14 ,21,43},{16 ,22,101},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,17},{9 ,1,37},{0 ,0,-1},{20 ,3,210},{28 ,4,153},{0 ,0,-1},{45 ,6,121},{25 ,7,65},{40 ,8,45},{0 ,0,-1},{19 ,10,8},{20 ,11,214},{18 ,12,110},{18 ,13,200},{29 ,14,11},{0 ,0,-1},{17 ,16,200},{22 ,17,148},{18 ,18,143},{0 ,0,-1},{21 ,20,50},{17 ,21,4},{20 ,22,183},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,33},{10 ,1,82},{0 ,0,-1},{24 ,3,157},{42 ,4,91},{0 ,0,-1},{0 ,0,-1},{31 ,7,49},{0 ,0,-1},{0 ,0,-1},{23 ,10,168},{24 ,11,193},{22 ,12,0},{22 ,13,3},{32 ,14,58},{0 ,0,-1},{21 ,16,220},{34 ,17,150},{23 ,18,122},{0 ,0,-1},{0 ,0,-1},{21 ,21,106},{24 ,22,124},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,9},{11 ,1,11},{0 ,0,-1},{39 ,3,77},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,186},{0 ,0,-1},{0 ,0,-1},{30 ,10,130},{33 ,11,161},{32 ,12,209},{30 ,13,210},{36 ,14,157},{0 ,0,-1},{43 ,16,22},{40 ,17,96},{29 ,18,53},{0 ,0,-1},{0 ,0,-1},{28 ,21,114},{31 ,22,177},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,52},{12 ,1,175},{0 ,0,-1},{41 ,3,215},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,49},{0 ,0,-1},{0 ,0,-1},{38 ,10,73},{0 ,0,-1},{35 ,12,26},{37 ,13,195},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,6},{0 ,0,-1},{0 ,0,-1},{33 ,21,137},{35 ,22,187},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,142},{15 ,1,120},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,4},{0 ,0,-1},{0 ,0,-1},{45 ,10,29},{0 ,0,-1},{38 ,12,10},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,167},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,12},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,81},{16 ,1,154},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,134},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,14},{18 ,1,199},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,90},{19 ,1,6},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,56},{21 ,1,192},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,8},{23 ,1,88},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,105},{25 ,1,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,53},{27 ,1,208},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,49},{29 ,1,150},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,107},{31 ,1,175},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,146},{33 ,1,114},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,34},{35 ,1,192},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,192},{37 ,1,81},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,82},{39 ,1,12},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,222},{41 ,1,23},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,123},{43 ,1,206},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,67},{45 ,1,184},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,114},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,84},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+
+//--------------------------------------------------BG1_I3-----------------------------------------------------------------
+
+
+//--------------------------------------------------BG1_I4-----------------------------------------------------------------
+h_element host_h_compact1_I4 [46*19] =
+{{0 ,0,211},{1 ,0,179},{2 ,0,258},{3 ,0,187},{4 ,0,246},{5 ,0,261},{6 ,0,80},{7 ,0,169},{8 ,0,54},{9 ,0,162},{10 ,1,178},{11 ,0,55},{12 ,0,225},{13 ,0,231},{14 ,0,0},{15 ,0,170},{16 ,1,270},{17 ,0,153},{18 ,1,161},{19 ,0,0},{20 ,0,265},{21 ,1,64},{22 ,0,72},{23 ,1,180},{24 ,0,236},{25 ,1,205},{26 ,0,0},{27 ,1,45},{28 ,0,275},{29 ,1,0},{30 ,0,0},{31 ,1,144},{32 ,0,0},{33 ,1,0},{34 ,0,197},{35 ,1,199},{36 ,0,216},{37 ,1,72},{38 ,0,190},{39 ,1,153},{40 ,0,216},{41 ,1,0},{42 ,0,27},{43 ,1,52},{44 ,0,18},{45 ,1,168},
+{0 ,1,198},{1 ,2,162},{2 ,1,167},{3 ,1,145},{4 ,1,235},{5 ,1,181},{6 ,6,144},{7 ,1,189},{8 ,1,0},{9 ,1,159},{10 ,2,1},{11 ,1,23},{12 ,1,162},{13 ,3,0},{14 ,12,186},{15 ,1,0},{16 ,3,13},{17 ,14,137},{18 ,12,151},{19 ,1,0},{20 ,3,81},{21 ,5,46},{22 ,12,189},{23 ,2,0},{24 ,3,199},{25 ,6,0},{26 ,2,0},{27 ,6,36},{28 ,4,0},{29 ,14,180},{30 ,10,90},{31 ,7,144},{32 ,12,211},{33 ,2,0},{34 ,7,0},{35 ,6,278},{36 ,14,16},{37 ,13,144},{38 ,9,0},{39 ,3,0},{40 ,8,144},{41 ,3,0},{42 ,4,0},{43 ,16,243},{44 ,7,0},{45 ,6,0},
+{0 ,2,188},{1 ,3,223},{2 ,2,220},{3 ,3,166},{4 ,26,0},{5 ,3,72},{6 ,10,169},{7 ,4,154},{8 ,3,252},{9 ,10,93},{10 ,4,28},{11 ,12,274},{12 ,10,244},{13 ,7,216},{14 ,15,253},{15 ,10,183},{16 ,11,99},{17 ,16,0},{18 ,13,0},{19 ,7,118},{20 ,9,90},{21 ,16,266},{22 ,13,72},{23 ,10,0},{24 ,4,0},{25 ,7,0},{26 ,4,0},{27 ,8,72},{28 ,19,155},{29 ,18,0},{30 ,13,252},{31 ,22,166},{32 ,14,36},{33 ,11,76},{34 ,15,108},{35 ,12,0},{36 ,15,0},{37 ,23,0},{38 ,10,0},{39 ,7,165},{40 ,17,2},{41 ,9,0},{42 ,24,35},{43 ,18,0},{44 ,9,0},{45 ,10,144},
+{0 ,3,186},{1 ,4,256},{2 ,4,133},{3 ,4,108},{0 ,0,-1},{5 ,12,283},{6 ,11,90},{7 ,7,184},{8 ,12,41},{9 ,11,134},{10 ,7,267},{11 ,16,181},{12 ,11,151},{13 ,20,47},{14 ,16,16},{15 ,13,108},{16 ,20,54},{17 ,17,0},{18 ,18,241},{19 ,8,144},{20 ,11,144},{21 ,20,9},{22 ,17,257},{23 ,18,165},{24 ,11,266},{25 ,14,183},{26 ,15,277},{27 ,49,0},{28 ,21,62},{29 ,25,42},{30 ,24,173},{31 ,25,19},{32 ,24,162},{33 ,21,18},{34 ,17,0},{35 ,22,205},{36 ,18,0},{37 ,59,0},{38 ,12,0},{39 ,19,117},{40 ,62,0},{41 ,18,183},{42 ,64,0},{43 ,25,270},{44 ,22,57},{45 ,67,0},
+{0 ,5,219},{1 ,5,160},{2 ,5,243},{3 ,6,82},{0 ,0,-1},{5 ,16,254},{6 ,13,59},{7 ,8,104},{8 ,16,98},{9 ,13,45},{10 ,8,234},{11 ,21,273},{12 ,13,238},{13 ,23,36},{14 ,17,0},{15 ,18,68},{16 ,22,0},{17 ,21,162},{18 ,19,144},{19 ,10,0},{20 ,22,228},{21 ,21,18},{22 ,44,0},{23 ,45,0},{24 ,22,0},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,4},{1 ,7,76},{2 ,6,202},{3 ,7,132},{0 ,0,-1},{5 ,21,79},{6 ,17,177},{7 ,14,164},{8 ,19,46},{9 ,17,132},{10 ,14,201},{11 ,22,39},{12 ,18,243},{13 ,35,0},{14 ,21,79},{15 ,25,64},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,29},{1 ,8,202},{2 ,7,218},{3 ,8,197},{0 ,0,-1},{5 ,22,144},{6 ,18,151},{7 ,29,0},{8 ,21,15},{9 ,18,76},{10 ,32,0},{11 ,23,26},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,144},{1 ,9,117},{2 ,8,63},{3 ,10,41},{0 ,0,-1},{5 ,27,0},{6 ,20,108},{0 ,0,-1},{8 ,22,230},{9 ,20,209},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,116},{1 ,11,109},{2 ,9,0},{3 ,11,162},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,54},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,216},{1 ,12,15},{2 ,10,3},{3 ,12,57},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,115},{1 ,14,72},{2 ,13,74},{3 ,13,36},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,233},{1 ,15,152},{2 ,14,229},{3 ,14,115},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,144},{1 ,16,158},{2 ,15,0},{3 ,16,242},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,95},{1 ,17,147},{2 ,17,216},{3 ,17,165},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,216},{1 ,19,156},{2 ,18,269},{3 ,18,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,73},{1 ,21,119},{2 ,19,200},{3 ,20,113},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,261},{1 ,22,0},{2 ,20,234},{3 ,21,108},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,1},{1 ,23,0},{2 ,24,0},{3 ,22,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+};
+
+
+h_element host_h_compact2_I4 [68*30] =
+{{0 ,0,211},{0 ,1,198},{0 ,2,188},{0 ,3,186},{1 ,4,256},{0 ,5,219},{0 ,6,4},{1 ,7,76},{1 ,8,202},{0 ,9,29},{0 ,10,144},{0 ,11,116},{0 ,12,216},{0 ,13,115},{1 ,14,72},{0 ,15,233},{0 ,16,144},{1 ,17,147},{0 ,18,95},{0 ,19,216},{0 ,20,73},{0 ,21,261},{0 ,22,1},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,179},{2 ,1,167},{1 ,2,162},{1 ,3,223},{2 ,4,133},{1 ,5,160},{2 ,6,202},{2 ,7,218},{2 ,8,63},{1 ,9,117},{2 ,10,3},{1 ,11,109},{1 ,12,15},{2 ,13,74},{2 ,14,229},{1 ,15,152},{1 ,16,158},{2 ,17,216},{2 ,18,269},{1 ,19,156},{2 ,20,234},{1 ,21,119},{1 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,258},{3 ,1,145},{2 ,2,220},{3 ,3,166},{3 ,4,108},{2 ,5,243},{3 ,6,82},{3 ,7,132},{3 ,8,197},{2 ,9,0},{3 ,10,41},{3 ,11,162},{3 ,12,57},{3 ,13,36},{3 ,14,115},{2 ,15,0},{3 ,16,242},{3 ,17,165},{3 ,18,0},{2 ,19,200},{3 ,20,113},{3 ,21,108},{3 ,22,1},{11 ,23,26},{8 ,24,54},{15 ,25,64},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,187},{4 ,1,235},{10 ,2,1},{5 ,3,72},{7 ,4,154},{21 ,5,46},{6 ,6,144},{7 ,7,184},{7 ,8,104},{20 ,9,90},{6 ,10,169},{6 ,11,90},{5 ,12,283},{6 ,13,59},{7 ,14,164},{14 ,15,253},{5 ,16,254},{6 ,17,177},{6 ,18,151},{8 ,19,46},{6 ,20,108},{5 ,21,79},{5 ,22,144},{13 ,23,36},{30 ,24,173},{29 ,25,42},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,246},{5 ,1,181},{23 ,2,0},{8 ,3,252},{10 ,4,28},{0 ,0,-1},{25 ,6,0},{10 ,7,267},{10 ,8,234},{38 ,9,0},{9 ,10,93},{9 ,11,134},{8 ,12,41},{9 ,13,45},{10 ,14,201},{26 ,15,277},{8 ,16,98},{9 ,17,132},{9 ,18,76},{18 ,19,144},{9 ,20,209},{8 ,21,15},{8 ,22,230},{37 ,23,0},{32 ,24,162},{31 ,25,19},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,261},{7 ,1,189},{26 ,2,0},{13 ,3,0},{24 ,4,0},{0 ,0,-1},{27 ,6,36},{13 ,7,216},{19 ,8,144},{41 ,9,0},{12 ,10,244},{12 ,11,151},{11 ,12,274},{12 ,13,238},{17 ,14,137},{34 ,15,108},{11 ,16,181},{14 ,17,0},{12 ,18,243},{28 ,19,155},{13 ,20,47},{11 ,21,273},{11 ,22,39},{0 ,0,-1},{42 ,24,35},{43 ,25,270},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,80},{8 ,1,0},{33 ,2,0},{16 ,3,13},{26 ,4,0},{0 ,0,-1},{35 ,6,278},{19 ,7,118},{27 ,8,72},{44 ,9,0},{15 ,10,183},{16 ,11,99},{14 ,12,186},{15 ,13,108},{25 ,14,183},{36 ,15,0},{14 ,16,16},{17 ,17,0},{15 ,18,68},{39 ,19,117},{16 ,20,54},{14 ,21,79},{16 ,22,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,169},{9 ,1,159},{0 ,0,-1},{20 ,3,81},{28 ,4,0},{0 ,0,-1},{45 ,6,0},{25 ,7,0},{40 ,8,144},{0 ,0,-1},{19 ,10,0},{20 ,11,144},{18 ,12,151},{18 ,13,0},{29 ,14,180},{0 ,0,-1},{17 ,16,0},{22 ,17,257},{18 ,18,241},{0 ,0,-1},{21 ,20,9},{17 ,21,162},{20 ,22,228},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,54},{10 ,1,178},{0 ,0,-1},{24 ,3,199},{42 ,4,0},{0 ,0,-1},{0 ,0,-1},{31 ,7,144},{0 ,0,-1},{0 ,0,-1},{23 ,10,0},{24 ,11,266},{22 ,12,189},{22 ,13,72},{32 ,14,36},{0 ,0,-1},{21 ,16,266},{34 ,17,0},{23 ,18,165},{0 ,0,-1},{0 ,0,-1},{21 ,21,18},{24 ,22,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,162},{11 ,1,23},{0 ,0,-1},{39 ,3,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,0},{0 ,0,-1},{0 ,0,-1},{30 ,10,90},{33 ,11,76},{32 ,12,211},{30 ,13,252},{36 ,14,16},{0 ,0,-1},{43 ,16,243},{40 ,17,2},{29 ,18,0},{0 ,0,-1},{0 ,0,-1},{28 ,21,62},{31 ,22,166},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,55},{12 ,1,162},{0 ,0,-1},{41 ,3,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,165},{0 ,0,-1},{0 ,0,-1},{38 ,10,0},{0 ,0,-1},{35 ,12,0},{37 ,13,144},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,0},{0 ,0,-1},{0 ,0,-1},{33 ,21,18},{35 ,22,205},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,225},{15 ,1,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,0},{0 ,0,-1},{0 ,0,-1},{45 ,10,144},{0 ,0,-1},{38 ,12,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,183},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,57},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,231},{16 ,1,270},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,0},{18 ,1,161},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,170},{19 ,1,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,153},{21 ,1,64},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,0},{23 ,1,180},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,265},{25 ,1,205},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,72},{27 ,1,45},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,236},{29 ,1,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,0},{31 ,1,144},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,275},{33 ,1,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,0},{35 ,1,199},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,0},{37 ,1,72},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,197},{39 ,1,153},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,216},{41 ,1,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,190},{43 ,1,52},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,216},{45 ,1,168},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,27},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,18},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+
+//--------------------------------------------------BG1_I4-----------------------------------------------------------------
+
+
+//--------------------------------------------------BG1_I5-----------------------------------------------------------------
+h_element host_h_compact1_I5 [46*19] =
+{{0 ,0,294},{1 ,0,77},{2 ,0,226},{3 ,0,97},{4 ,0,42},{5 ,0,219},{6 ,0,294},{7 ,0,3},{8 ,0,348},{9 ,0,156},{10 ,1,175},{11 ,0,25},{12 ,0,123},{13 ,0,311},{14 ,0,22},{15 ,0,176},{16 ,1,190},{17 ,0,110},{18 ,1,47},{19 ,0,87},{20 ,0,89},{21 ,1,162},{22 ,0,280},{23 ,1,18},{24 ,0,38},{25 ,1,279},{26 ,0,325},{27 ,1,91},{28 ,0,102},{29 ,1,273},{30 ,0,171},{31 ,1,101},{32 ,0,351},{33 ,1,56},{34 ,0,60},{35 ,1,100},{36 ,0,135},{37 ,1,319},{38 ,0,164},{39 ,1,236},{40 ,0,304},{41 ,1,123},{42 ,0,288},{43 ,1,210},{44 ,0,79},{45 ,1,82},
+{0 ,1,118},{1 ,2,225},{2 ,1,35},{3 ,1,94},{4 ,1,256},{5 ,1,130},{6 ,6,73},{7 ,1,103},{8 ,1,75},{9 ,1,88},{10 ,2,253},{11 ,1,322},{12 ,1,217},{13 ,3,251},{14 ,12,322},{15 ,1,348},{16 ,3,293},{17 ,14,228},{18 ,12,286},{19 ,1,110},{20 ,3,65},{21 ,5,264},{22 ,12,157},{23 ,2,6},{24 ,3,170},{25 ,6,255},{26 ,2,326},{27 ,6,326},{28 ,4,1},{29 ,14,104},{30 ,10,16},{31 ,7,297},{32 ,12,265},{33 ,2,304},{34 ,7,320},{35 ,6,210},{36 ,14,15},{37 ,13,236},{38 ,9,196},{39 ,3,264},{40 ,8,237},{41 ,3,77},{42 ,4,83},{43 ,16,3},{44 ,7,244},{45 ,6,67},
+{0 ,2,167},{1 ,3,96},{2 ,2,213},{3 ,3,49},{4 ,26,0},{5 ,3,251},{6 ,10,330},{7 ,4,224},{8 ,3,22},{9 ,10,293},{10 ,4,27},{11 ,12,200},{12 ,10,142},{13 ,7,265},{14 ,15,277},{15 ,10,15},{16 ,11,332},{17 ,16,247},{18 ,13,246},{19 ,7,147},{20 ,9,155},{21 ,16,346},{22 ,13,236},{23 ,10,181},{24 ,4,249},{25 ,7,111},{26 ,4,226},{27 ,8,268},{28 ,19,40},{29 ,18,243},{30 ,13,95},{31 ,22,279},{32 ,14,338},{33 ,11,141},{34 ,15,112},{35 ,12,195},{36 ,15,35},{37 ,23,85},{38 ,10,209},{39 ,7,37},{40 ,17,135},{41 ,9,25},{42 ,24,17},{43 ,18,53},{44 ,9,293},{45 ,10,235},
+{0 ,3,330},{1 ,4,338},{2 ,4,302},{3 ,4,279},{0 ,0,-1},{5 ,12,322},{6 ,11,99},{7 ,7,297},{8 ,12,312},{9 ,11,111},{10 ,7,231},{11 ,16,351},{12 ,11,110},{13 ,20,94},{14 ,16,156},{15 ,13,81},{16 ,20,331},{17 ,17,116},{18 ,18,181},{19 ,8,258},{20 ,11,244},{21 ,20,143},{22 ,17,113},{23 ,18,304},{24 ,11,288},{25 ,14,54},{26 ,15,99},{27 ,49,0},{28 ,21,167},{29 ,25,107},{30 ,24,212},{31 ,25,222},{32 ,24,83},{33 ,21,101},{34 ,17,54},{35 ,22,268},{36 ,18,188},{37 ,59,0},{38 ,12,246},{39 ,19,272},{40 ,62,0},{41 ,18,272},{42 ,64,0},{43 ,25,167},{44 ,22,272},{45 ,67,0},
+{0 ,5,207},{1 ,5,268},{2 ,5,111},{3 ,6,139},{0 ,0,-1},{5 ,16,295},{6 ,13,172},{7 ,8,215},{8 ,16,224},{9 ,13,92},{10 ,8,49},{11 ,21,166},{12 ,13,176},{13 ,23,81},{14 ,17,66},{15 ,18,176},{16 ,22,114},{17 ,21,190},{18 ,19,73},{19 ,10,204},{20 ,22,30},{21 ,21,109},{22 ,44,0},{23 ,45,0},{24 ,22,194},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,165},{1 ,7,112},{2 ,6,265},{3 ,7,166},{0 ,0,-1},{5 ,21,258},{6 ,17,150},{7 ,14,39},{8 ,19,17},{9 ,17,152},{10 ,14,267},{11 ,22,338},{12 ,18,76},{13 ,35,0},{14 ,21,78},{15 ,25,113},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,243},{1 ,8,302},{2 ,7,128},{3 ,8,91},{0 ,0,-1},{5 ,22,283},{6 ,18,284},{7 ,29,0},{8 ,21,59},{9 ,18,23},{10 ,32,0},{11 ,23,192},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,250},{1 ,9,50},{2 ,8,237},{3 ,10,106},{0 ,0,-1},{5 ,27,0},{6 ,20,305},{0 ,0,-1},{8 ,22,314},{9 ,20,337},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,1},{1 ,11,167},{2 ,9,294},{3 ,11,246},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,244},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,339},{1 ,12,253},{2 ,10,127},{3 ,12,345},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,201},{1 ,14,334},{2 ,13,110},{3 ,13,269},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,53},{1 ,15,242},{2 ,14,286},{3 ,14,185},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,347},{1 ,16,257},{2 ,15,125},{3 ,16,249},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,304},{1 ,17,133},{2 ,17,131},{3 ,17,215},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,167},{1 ,19,9},{2 ,18,163},{3 ,18,143},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,47},{1 ,21,302},{2 ,19,210},{3 ,20,121},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,188},{1 ,22,0},{2 ,20,7},{3 ,21,121},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,1},{1 ,23,0},{2 ,24,0},{3 ,22,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+};
+
+
+h_element host_h_compact2_I5 [68*30] =
+{{0 ,0,294},{0 ,1,118},{0 ,2,167},{0 ,3,330},{1 ,4,338},{0 ,5,207},{0 ,6,165},{1 ,7,112},{1 ,8,302},{0 ,9,243},{0 ,10,250},{0 ,11,1},{0 ,12,339},{0 ,13,201},{1 ,14,334},{0 ,15,53},{0 ,16,347},{1 ,17,133},{0 ,18,304},{0 ,19,167},{0 ,20,47},{0 ,21,188},{0 ,22,1},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,77},{2 ,1,35},{1 ,2,225},{1 ,3,96},{2 ,4,302},{1 ,5,268},{2 ,6,265},{2 ,7,128},{2 ,8,237},{1 ,9,50},{2 ,10,127},{1 ,11,167},{1 ,12,253},{2 ,13,110},{2 ,14,286},{1 ,15,242},{1 ,16,257},{2 ,17,131},{2 ,18,163},{1 ,19,9},{2 ,20,7},{1 ,21,302},{1 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,226},{3 ,1,94},{2 ,2,213},{3 ,3,49},{3 ,4,279},{2 ,5,111},{3 ,6,139},{3 ,7,166},{3 ,8,91},{2 ,9,294},{3 ,10,106},{3 ,11,246},{3 ,12,345},{3 ,13,269},{3 ,14,185},{2 ,15,125},{3 ,16,249},{3 ,17,215},{3 ,18,143},{2 ,19,210},{3 ,20,121},{3 ,21,121},{3 ,22,1},{11 ,23,192},{8 ,24,244},{15 ,25,113},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,97},{4 ,1,256},{10 ,2,253},{5 ,3,251},{7 ,4,224},{21 ,5,264},{6 ,6,73},{7 ,7,297},{7 ,8,215},{20 ,9,155},{6 ,10,330},{6 ,11,99},{5 ,12,322},{6 ,13,172},{7 ,14,39},{14 ,15,277},{5 ,16,295},{6 ,17,150},{6 ,18,284},{8 ,19,17},{6 ,20,305},{5 ,21,258},{5 ,22,283},{13 ,23,81},{30 ,24,212},{29 ,25,107},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,42},{5 ,1,130},{23 ,2,6},{8 ,3,22},{10 ,4,27},{0 ,0,-1},{25 ,6,255},{10 ,7,231},{10 ,8,49},{38 ,9,196},{9 ,10,293},{9 ,11,111},{8 ,12,312},{9 ,13,92},{10 ,14,267},{26 ,15,99},{8 ,16,224},{9 ,17,152},{9 ,18,23},{18 ,19,73},{9 ,20,337},{8 ,21,59},{8 ,22,314},{37 ,23,85},{32 ,24,83},{31 ,25,222},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,219},{7 ,1,103},{26 ,2,326},{13 ,3,251},{24 ,4,249},{0 ,0,-1},{27 ,6,326},{13 ,7,265},{19 ,8,258},{41 ,9,25},{12 ,10,142},{12 ,11,110},{11 ,12,200},{12 ,13,176},{17 ,14,228},{34 ,15,112},{11 ,16,351},{14 ,17,66},{12 ,18,76},{28 ,19,40},{13 ,20,94},{11 ,21,166},{11 ,22,338},{0 ,0,-1},{42 ,24,17},{43 ,25,167},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,294},{8 ,1,75},{33 ,2,304},{16 ,3,293},{26 ,4,226},{0 ,0,-1},{35 ,6,210},{19 ,7,147},{27 ,8,268},{44 ,9,293},{15 ,10,15},{16 ,11,332},{14 ,12,322},{15 ,13,81},{25 ,14,54},{36 ,15,35},{14 ,16,156},{17 ,17,116},{15 ,18,176},{39 ,19,272},{16 ,20,331},{14 ,21,78},{16 ,22,114},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,3},{9 ,1,88},{0 ,0,-1},{20 ,3,65},{28 ,4,1},{0 ,0,-1},{45 ,6,67},{25 ,7,111},{40 ,8,237},{0 ,0,-1},{19 ,10,204},{20 ,11,244},{18 ,12,286},{18 ,13,246},{29 ,14,104},{0 ,0,-1},{17 ,16,247},{22 ,17,113},{18 ,18,181},{0 ,0,-1},{21 ,20,143},{17 ,21,190},{20 ,22,30},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,348},{10 ,1,175},{0 ,0,-1},{24 ,3,170},{42 ,4,83},{0 ,0,-1},{0 ,0,-1},{31 ,7,297},{0 ,0,-1},{0 ,0,-1},{23 ,10,181},{24 ,11,288},{22 ,12,157},{22 ,13,236},{32 ,14,338},{0 ,0,-1},{21 ,16,346},{34 ,17,54},{23 ,18,304},{0 ,0,-1},{0 ,0,-1},{21 ,21,109},{24 ,22,194},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,156},{11 ,1,322},{0 ,0,-1},{39 ,3,264},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,320},{0 ,0,-1},{0 ,0,-1},{30 ,10,16},{33 ,11,141},{32 ,12,265},{30 ,13,95},{36 ,14,15},{0 ,0,-1},{43 ,16,3},{40 ,17,135},{29 ,18,243},{0 ,0,-1},{0 ,0,-1},{28 ,21,167},{31 ,22,279},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,25},{12 ,1,217},{0 ,0,-1},{41 ,3,77},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,37},{0 ,0,-1},{0 ,0,-1},{38 ,10,209},{0 ,0,-1},{35 ,12,195},{37 ,13,236},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,188},{0 ,0,-1},{0 ,0,-1},{33 ,21,101},{35 ,22,268},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,123},{15 ,1,348},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,244},{0 ,0,-1},{0 ,0,-1},{45 ,10,235},{0 ,0,-1},{38 ,12,246},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,272},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,272},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,311},{16 ,1,190},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,53},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,22},{18 ,1,47},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,176},{19 ,1,110},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,110},{21 ,1,162},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,87},{23 ,1,18},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,89},{25 ,1,279},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,280},{27 ,1,91},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,38},{29 ,1,273},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,325},{31 ,1,101},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,102},{33 ,1,56},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,171},{35 ,1,100},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,351},{37 ,1,319},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,60},{39 ,1,236},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,135},{41 ,1,123},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,164},{43 ,1,210},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,304},{45 ,1,82},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,288},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,79},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+//--------------------------------------------------BG1_I5-----------------------------------------------------------------
+
+
+//--------------------------------------------------BG1_I6-----------------------------------------------------------------
+h_element host_h_compact1_I6 [46*19] =
+{{0 ,0,0},{1 ,0,22},{2 ,0,132},{3 ,0,4},{4 ,0,24},{5 ,0,185},{6 ,0,6},{7 ,0,145},{8 ,0,172},{9 ,0,6},{10 ,1,126},{11 ,0,184},{12 ,0,6},{13 ,0,52},{14 ,0,1},{15 ,0,173},{16 ,1,88},{17 ,0,91},{18 ,1,1},{19 ,0,12},{20 ,0,6},{21 ,1,6},{22 ,0,44},{23 ,1,45},{24 ,0,9},{25 ,1,4},{26 ,0,21},{27 ,1,98},{28 ,0,4},{29 ,1,92},{30 ,0,2},{31 ,1,4},{32 ,0,6},{33 ,1,10},{34 ,0,4},{35 ,1,4},{36 ,0,6},{37 ,1,82},{38 ,0,91},{39 ,1,4},{40 ,0,10},{41 ,1,2},{42 ,0,163},{43 ,1,1},{44 ,0,4},{45 ,1,181},
+{0 ,1,0},{1 ,2,11},{2 ,1,37},{3 ,1,6},{4 ,1,204},{5 ,1,100},{6 ,6,27},{7 ,1,88},{8 ,1,2},{9 ,1,10},{10 ,2,77},{11 ,1,194},{12 ,1,20},{13 ,3,147},{14 ,12,202},{15 ,1,6},{16 ,3,198},{17 ,14,184},{18 ,12,41},{19 ,1,6},{20 ,3,12},{21 ,5,86},{22 ,12,58},{23 ,2,18},{24 ,3,125},{25 ,6,74},{26 ,2,142},{27 ,6,140},{28 ,4,1},{29 ,14,136},{30 ,10,88},{31 ,7,49},{32 ,12,126},{33 ,2,30},{34 ,7,153},{35 ,6,45},{36 ,14,200},{37 ,13,2},{38 ,9,64},{39 ,3,28},{40 ,8,84},{41 ,3,75},{42 ,4,10},{43 ,16,163},{44 ,7,6},{45 ,6,45},
+{0 ,2,0},{1 ,3,124},{2 ,2,21},{3 ,3,33},{4 ,26,0},{5 ,3,24},{6 ,10,163},{7 ,4,112},{8 ,3,131},{9 ,10,145},{10 ,4,156},{11 ,12,123},{12 ,10,203},{13 ,7,1},{14 ,15,118},{15 ,10,81},{16 ,11,160},{17 ,16,30},{18 ,13,167},{19 ,7,166},{20 ,9,15},{21 ,16,96},{22 ,13,130},{23 ,10,132},{24 ,4,191},{25 ,7,16},{26 ,4,192},{27 ,8,22},{28 ,19,40},{29 ,18,106},{30 ,13,112},{31 ,22,125},{32 ,14,63},{33 ,11,6},{34 ,15,197},{35 ,12,168},{36 ,15,177},{37 ,23,135},{38 ,10,198},{39 ,7,109},{40 ,17,12},{41 ,9,142},{42 ,24,162},{43 ,18,99},{44 ,9,142},{45 ,10,153},
+{0 ,3,0},{1 ,4,0},{2 ,4,180},{3 ,4,113},{0 ,0,-1},{5 ,12,65},{6 ,11,50},{7 ,7,153},{8 ,12,141},{9 ,11,53},{10 ,7,16},{11 ,16,16},{12 ,11,153},{13 ,20,16},{14 ,16,130},{15 ,13,182},{16 ,20,122},{17 ,17,3},{18 ,18,68},{19 ,8,184},{20 ,11,5},{21 ,20,42},{22 ,17,131},{23 ,18,100},{24 ,11,28},{25 ,14,28},{26 ,15,197},{27 ,49,0},{28 ,21,93},{29 ,25,6},{30 ,24,20},{31 ,25,194},{32 ,24,20},{33 ,21,92},{34 ,17,155},{35 ,22,185},{36 ,18,43},{37 ,59,0},{38 ,12,100},{39 ,19,188},{40 ,62,0},{41 ,18,128},{42 ,64,0},{43 ,25,98},{44 ,22,3},{45 ,67,0},
+{0 ,5,0},{1 ,5,10},{2 ,5,4},{3 ,6,49},{0 ,0,-1},{5 ,16,207},{6 ,13,48},{7 ,8,159},{8 ,16,96},{9 ,13,201},{10 ,8,12},{11 ,21,104},{12 ,13,104},{13 ,23,46},{14 ,17,1},{15 ,18,53},{16 ,22,182},{17 ,21,155},{18 ,19,148},{19 ,10,191},{20 ,22,30},{21 ,21,199},{22 ,44,0},{23 ,45,0},{24 ,22,6},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,0},{1 ,7,0},{2 ,6,149},{3 ,7,21},{0 ,0,-1},{5 ,21,161},{6 ,17,24},{7 ,14,76},{8 ,19,99},{9 ,17,4},{10 ,14,70},{11 ,22,109},{12 ,18,207},{13 ,35,0},{14 ,21,2},{15 ,25,46},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,0},{1 ,8,0},{2 ,7,48},{3 ,8,6},{0 ,0,-1},{5 ,22,72},{6 ,18,38},{7 ,29,0},{8 ,21,101},{9 ,18,164},{10 ,32,0},{11 ,23,124},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,0},{1 ,9,2},{2 ,8,38},{3 ,10,151},{0 ,0,-1},{5 ,27,0},{6 ,20,91},{0 ,0,-1},{8 ,22,35},{9 ,20,173},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,0},{1 ,11,16},{2 ,9,122},{3 ,11,83},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,116},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,0},{1 ,12,60},{2 ,10,195},{3 ,12,154},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,0},{1 ,14,0},{2 ,13,155},{3 ,13,87},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,0},{1 ,15,6},{2 ,14,28},{3 ,14,5},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,0},{1 ,16,30},{2 ,15,85},{3 ,16,92},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,0},{1 ,17,0},{2 ,17,47},{3 ,17,173},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,0},{1 ,19,168},{2 ,18,179},{3 ,18,120},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,0},{1 ,21,31},{2 ,19,42},{3 ,20,2},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,0},{1 ,22,105},{2 ,20,66},{3 ,21,142},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,22,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+};
+
+
+h_element host_h_compact2_I6 [68*30] =
+{{0 ,0,0},{0 ,1,0},{0 ,2,0},{0 ,3,0},{1 ,4,0},{0 ,5,0},{0 ,6,0},{1 ,7,0},{1 ,8,0},{0 ,9,0},{0 ,10,0},{0 ,11,0},{0 ,12,0},{0 ,13,0},{1 ,14,0},{0 ,15,0},{0 ,16,0},{1 ,17,0},{0 ,18,0},{0 ,19,0},{0 ,20,0},{0 ,21,0},{0 ,22,0},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,22},{2 ,1,37},{1 ,2,11},{1 ,3,124},{2 ,4,180},{1 ,5,10},{2 ,6,149},{2 ,7,48},{2 ,8,38},{1 ,9,2},{2 ,10,195},{1 ,11,16},{1 ,12,60},{2 ,13,155},{2 ,14,28},{1 ,15,6},{1 ,16,30},{2 ,17,47},{2 ,18,179},{1 ,19,168},{2 ,20,66},{1 ,21,31},{1 ,22,105},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,132},{3 ,1,6},{2 ,2,21},{3 ,3,33},{3 ,4,113},{2 ,5,4},{3 ,6,49},{3 ,7,21},{3 ,8,6},{2 ,9,122},{3 ,10,151},{3 ,11,83},{3 ,12,154},{3 ,13,87},{3 ,14,5},{2 ,15,85},{3 ,16,92},{3 ,17,173},{3 ,18,120},{2 ,19,42},{3 ,20,2},{3 ,21,142},{3 ,22,0},{11 ,23,124},{8 ,24,116},{15 ,25,46},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,4},{4 ,1,204},{10 ,2,77},{5 ,3,24},{7 ,4,112},{21 ,5,86},{6 ,6,27},{7 ,7,153},{7 ,8,159},{20 ,9,15},{6 ,10,163},{6 ,11,50},{5 ,12,65},{6 ,13,48},{7 ,14,76},{14 ,15,118},{5 ,16,207},{6 ,17,24},{6 ,18,38},{8 ,19,99},{6 ,20,91},{5 ,21,161},{5 ,22,72},{13 ,23,46},{30 ,24,20},{29 ,25,6},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,24},{5 ,1,100},{23 ,2,18},{8 ,3,131},{10 ,4,156},{0 ,0,-1},{25 ,6,74},{10 ,7,16},{10 ,8,12},{38 ,9,64},{9 ,10,145},{9 ,11,53},{8 ,12,141},{9 ,13,201},{10 ,14,70},{26 ,15,197},{8 ,16,96},{9 ,17,4},{9 ,18,164},{18 ,19,148},{9 ,20,173},{8 ,21,101},{8 ,22,35},{37 ,23,135},{32 ,24,20},{31 ,25,194},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,185},{7 ,1,88},{26 ,2,142},{13 ,3,147},{24 ,4,191},{0 ,0,-1},{27 ,6,140},{13 ,7,1},{19 ,8,184},{41 ,9,142},{12 ,10,203},{12 ,11,153},{11 ,12,123},{12 ,13,104},{17 ,14,184},{34 ,15,197},{11 ,16,16},{14 ,17,1},{12 ,18,207},{28 ,19,40},{13 ,20,16},{11 ,21,104},{11 ,22,109},{0 ,0,-1},{42 ,24,162},{43 ,25,98},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,6},{8 ,1,2},{33 ,2,30},{16 ,3,198},{26 ,4,192},{0 ,0,-1},{35 ,6,45},{19 ,7,166},{27 ,8,22},{44 ,9,142},{15 ,10,81},{16 ,11,160},{14 ,12,202},{15 ,13,182},{25 ,14,28},{36 ,15,177},{14 ,16,130},{17 ,17,3},{15 ,18,53},{39 ,19,188},{16 ,20,122},{14 ,21,2},{16 ,22,182},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,145},{9 ,1,10},{0 ,0,-1},{20 ,3,12},{28 ,4,1},{0 ,0,-1},{45 ,6,45},{25 ,7,16},{40 ,8,84},{0 ,0,-1},{19 ,10,191},{20 ,11,5},{18 ,12,41},{18 ,13,167},{29 ,14,136},{0 ,0,-1},{17 ,16,30},{22 ,17,131},{18 ,18,68},{0 ,0,-1},{21 ,20,42},{17 ,21,155},{20 ,22,30},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,172},{10 ,1,126},{0 ,0,-1},{24 ,3,125},{42 ,4,10},{0 ,0,-1},{0 ,0,-1},{31 ,7,49},{0 ,0,-1},{0 ,0,-1},{23 ,10,132},{24 ,11,28},{22 ,12,58},{22 ,13,130},{32 ,14,63},{0 ,0,-1},{21 ,16,96},{34 ,17,155},{23 ,18,100},{0 ,0,-1},{0 ,0,-1},{21 ,21,199},{24 ,22,6},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,6},{11 ,1,194},{0 ,0,-1},{39 ,3,28},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,153},{0 ,0,-1},{0 ,0,-1},{30 ,10,88},{33 ,11,6},{32 ,12,126},{30 ,13,112},{36 ,14,200},{0 ,0,-1},{43 ,16,163},{40 ,17,12},{29 ,18,106},{0 ,0,-1},{0 ,0,-1},{28 ,21,93},{31 ,22,125},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,184},{12 ,1,20},{0 ,0,-1},{41 ,3,75},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,109},{0 ,0,-1},{0 ,0,-1},{38 ,10,198},{0 ,0,-1},{35 ,12,168},{37 ,13,2},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,43},{0 ,0,-1},{0 ,0,-1},{33 ,21,92},{35 ,22,185},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,6},{15 ,1,6},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,6},{0 ,0,-1},{0 ,0,-1},{45 ,10,153},{0 ,0,-1},{38 ,12,100},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,128},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,3},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,52},{16 ,1,88},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,99},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,1},{18 ,1,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,173},{19 ,1,6},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,91},{21 ,1,6},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,12},{23 ,1,45},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,6},{25 ,1,4},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,44},{27 ,1,98},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,9},{29 ,1,92},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,21},{31 ,1,4},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,4},{33 ,1,10},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,2},{35 ,1,4},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,6},{37 ,1,82},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,4},{39 ,1,4},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,6},{41 ,1,2},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,91},{43 ,1,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,10},{45 ,1,181},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,163},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,4},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
+
+//--------------------------------------------------BG1_I6-----------------------------------------------------------------
+
+
+//--------------------------------------------------BG1_I7-----------------------------------------------------------------
+h_element host_h_compact1_I7 [46*19] =
+{{0 ,0,135},{1 ,0,96},{2 ,0,189},{3 ,0,128},{4 ,0,64},{5 ,0,2},{6 ,0,199},{7 ,0,77},{8 ,0,181},{9 ,0,169},{10 ,1,116},{11 ,0,45},{12 ,0,186},{13 ,0,220},{14 ,0,124},{15 ,0,39},{16 ,1,78},{17 ,0,183},{18 ,1,183},{19 ,0,179},{20 ,0,77},{21 ,1,197},{22 ,0,25},{23 ,1,185},{24 ,0,32},{25 ,1,27},{26 ,0,163},{27 ,1,165},{28 ,0,32},{29 ,1,232},{30 ,0,170},{31 ,1,73},{32 ,0,103},{33 ,1,199},{34 ,0,161},{35 ,1,231},{36 ,0,11},{37 ,1,59},{38 ,0,121},{39 ,1,115},{40 ,0,4},{41 ,1,53},{42 ,0,222},{43 ,1,22},{44 ,0,191},{45 ,1,177},
+{0 ,1,227},{1 ,2,236},{2 ,1,4},{3 ,1,23},{4 ,1,211},{5 ,1,171},{6 ,6,22},{7 ,1,146},{8 ,1,105},{9 ,1,12},{10 ,2,151},{11 ,1,115},{12 ,1,215},{13 ,3,185},{14 ,12,144},{15 ,1,138},{16 ,3,152},{17 ,14,112},{18 ,12,215},{19 ,1,108},{20 ,3,187},{21 ,5,122},{22 ,12,47},{23 ,2,127},{24 ,3,178},{25 ,6,141},{26 ,2,131},{27 ,6,232},{28 ,4,43},{29 ,14,32},{30 ,10,199},{31 ,7,149},{32 ,12,110},{33 ,2,132},{34 ,7,237},{35 ,6,174},{36 ,14,207},{37 ,13,204},{38 ,9,90},{39 ,3,188},{40 ,8,103},{41 ,3,189},{42 ,4,170},{43 ,16,127},{44 ,7,211},{45 ,6,114},
+{0 ,2,126},{1 ,3,136},{2 ,2,225},{3 ,3,162},{4 ,26,0},{5 ,3,47},{6 ,10,23},{7 ,4,209},{8 ,3,141},{9 ,10,206},{10 ,4,70},{11 ,12,134},{12 ,10,124},{13 ,7,154},{14 ,15,182},{15 ,10,220},{16 ,11,84},{17 ,16,106},{18 ,13,180},{19 ,7,159},{20 ,9,203},{21 ,16,215},{22 ,13,126},{23 ,10,117},{24 ,4,2},{25 ,7,11},{26 ,4,169},{27 ,8,9},{28 ,19,200},{29 ,18,118},{30 ,13,26},{31 ,22,175},{32 ,14,151},{33 ,11,172},{34 ,15,142},{35 ,12,145},{36 ,15,42},{37 ,23,161},{38 ,10,26},{39 ,7,168},{40 ,17,30},{41 ,9,215},{42 ,24,71},{43 ,18,49},{44 ,9,187},{45 ,10,93},
+{0 ,3,134},{1 ,4,221},{2 ,4,151},{3 ,4,220},{0 ,0,-1},{5 ,12,143},{6 ,11,100},{7 ,7,32},{8 ,12,223},{9 ,11,221},{10 ,7,230},{11 ,16,1},{12 ,11,180},{13 ,20,178},{14 ,16,95},{15 ,13,173},{16 ,20,5},{17 ,17,219},{18 ,18,143},{19 ,8,138},{20 ,11,167},{21 ,20,65},{22 ,17,178},{23 ,18,199},{24 ,11,156},{25 ,14,181},{26 ,15,98},{27 ,49,0},{28 ,21,205},{29 ,25,103},{30 ,24,105},{31 ,25,108},{32 ,24,211},{33 ,21,65},{34 ,17,180},{35 ,22,100},{36 ,18,100},{37 ,59,0},{38 ,12,140},{39 ,19,52},{40 ,62,0},{41 ,18,24},{42 ,64,0},{43 ,25,125},{44 ,22,148},{45 ,67,0},
+{0 ,5,84},{1 ,5,128},{2 ,5,236},{3 ,6,43},{0 ,0,-1},{5 ,16,210},{6 ,13,92},{7 ,8,166},{8 ,16,177},{9 ,13,17},{10 ,8,115},{11 ,21,152},{12 ,13,98},{13 ,23,150},{14 ,17,72},{15 ,18,142},{16 ,22,205},{17 ,21,129},{18 ,19,14},{19 ,10,196},{20 ,22,130},{21 ,21,216},{22 ,44,0},{23 ,45,0},{24 ,22,58},{25 ,47,0},{26 ,48,0},{0 ,0,-1},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{0 ,0,-1},{38 ,60,0},{39 ,61,0},{0 ,0,-1},{41 ,63,0},{0 ,0,-1},{43 ,65,0},{44 ,66,0},{0 ,0,-1},
+{0 ,6,83},{1 ,7,92},{2 ,6,117},{3 ,7,186},{0 ,0,-1},{5 ,21,180},{6 ,17,207},{7 ,14,18},{8 ,19,145},{9 ,17,212},{10 ,14,84},{11 ,22,165},{12 ,18,80},{13 ,35,0},{14 ,21,76},{15 ,25,49},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{0 ,0,-1},{0 ,0,-1},{24 ,46,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,9,53},{1 ,8,172},{2 ,7,179},{3 ,8,96},{0 ,0,-1},{5 ,22,180},{6 ,18,52},{7 ,29,0},{8 ,21,199},{9 ,18,92},{10 ,32,0},{11 ,23,107},{12 ,34,0},{0 ,0,-1},{14 ,36,0},{15 ,37,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,10,225},{1 ,9,56},{2 ,8,92},{3 ,10,1},{0 ,0,-1},{5 ,27,0},{6 ,20,13},{0 ,0,-1},{8 ,22,153},{9 ,20,205},{0 ,0,-1},{11 ,33,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,11,205},{1 ,11,11},{2 ,9,24},{3 ,11,216},{0 ,0,-1},{0 ,0,-1},{6 ,28,0},{0 ,0,-1},{8 ,24,38},{9 ,31,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,12,128},{1 ,12,189},{2 ,10,68},{3 ,12,22},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{8 ,30,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,13,75},{1 ,14,95},{2 ,13,6},{3 ,13,24},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,15,135},{1 ,15,85},{2 ,14,101},{3 ,14,167},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,16,217},{1 ,16,153},{2 ,15,33},{3 ,16,200},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,18,220},{1 ,17,87},{2 ,17,96},{3 ,17,32},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,19,90},{1 ,19,163},{2 ,18,125},{3 ,18,235},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,20,105},{1 ,21,216},{2 ,19,67},{3 ,20,172},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,21,137},{1 ,22,0},{2 ,20,230},{3 ,21,219},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,22,1},{1 ,23,0},{2 ,24,0},{3 ,22,1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{0 ,23,0},{1 ,24,0},{2 ,25,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+};
+
+
+h_element host_h_compact2_I7 [68*30] =
+{{0 ,0,135},{0 ,1,227},{0 ,2,126},{0 ,3,134},{1 ,4,221},{0 ,5,84},{0 ,6,83},{1 ,7,92},{1 ,8,172},{0 ,9,53},{0 ,10,225},{0 ,11,205},{0 ,12,128},{0 ,13,75},{1 ,14,95},{0 ,15,135},{0 ,16,217},{1 ,17,87},{0 ,18,220},{0 ,19,90},{0 ,20,105},{0 ,21,137},{0 ,22,1},{0 ,23,0},{1 ,24,0},{2 ,25,0},{4 ,26,0},{5 ,27,0},{6 ,28,0},{7 ,29,0},{8 ,30,0},{9 ,31,0},{10 ,32,0},{11 ,33,0},{12 ,34,0},{13 ,35,0},{14 ,36,0},{15 ,37,0},{16 ,38,0},{17 ,39,0},{18 ,40,0},{19 ,41,0},{20 ,42,0},{21 ,43,0},{22 ,44,0},{23 ,45,0},{24 ,46,0},{25 ,47,0},{26 ,48,0},{27 ,49,0},{28 ,50,0},{29 ,51,0},{30 ,52,0},{31 ,53,0},{32 ,54,0},{33 ,55,0},{34 ,56,0},{35 ,57,0},{36 ,58,0},{37 ,59,0},{38 ,60,0},{39 ,61,0},{40 ,62,0},{41 ,63,0},{42 ,64,0},{43 ,65,0},{44 ,66,0},{45 ,67,0},
+{1 ,0,96},{2 ,1,4},{1 ,2,236},{1 ,3,136},{2 ,4,151},{1 ,5,128},{2 ,6,117},{2 ,7,179},{2 ,8,92},{1 ,9,56},{2 ,10,68},{1 ,11,11},{1 ,12,189},{2 ,13,6},{2 ,14,101},{1 ,15,85},{1 ,16,153},{2 ,17,96},{2 ,18,125},{1 ,19,163},{2 ,20,230},{1 ,21,216},{1 ,22,0},{1 ,23,0},{2 ,24,0},{3 ,25,0},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{2 ,0,189},{3 ,1,23},{2 ,2,225},{3 ,3,162},{3 ,4,220},{2 ,5,236},{3 ,6,43},{3 ,7,186},{3 ,8,96},{2 ,9,24},{3 ,10,1},{3 ,11,216},{3 ,12,22},{3 ,13,24},{3 ,14,167},{2 ,15,33},{3 ,16,200},{3 ,17,32},{3 ,18,235},{2 ,19,67},{3 ,20,172},{3 ,21,219},{3 ,22,1},{11 ,23,107},{8 ,24,38},{15 ,25,49},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{3 ,0,128},{4 ,1,211},{10 ,2,151},{5 ,3,47},{7 ,4,209},{21 ,5,122},{6 ,6,22},{7 ,7,32},{7 ,8,166},{20 ,9,203},{6 ,10,23},{6 ,11,100},{5 ,12,143},{6 ,13,92},{7 ,14,18},{14 ,15,182},{5 ,16,210},{6 ,17,207},{6 ,18,52},{8 ,19,145},{6 ,20,13},{5 ,21,180},{5 ,22,180},{13 ,23,150},{30 ,24,105},{29 ,25,103},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{4 ,0,64},{5 ,1,171},{23 ,2,127},{8 ,3,141},{10 ,4,70},{0 ,0,-1},{25 ,6,141},{10 ,7,230},{10 ,8,115},{38 ,9,90},{9 ,10,206},{9 ,11,221},{8 ,12,223},{9 ,13,17},{10 ,14,84},{26 ,15,98},{8 ,16,177},{9 ,17,212},{9 ,18,92},{18 ,19,14},{9 ,20,205},{8 ,21,199},{8 ,22,153},{37 ,23,161},{32 ,24,211},{31 ,25,108},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{5 ,0,2},{7 ,1,146},{26 ,2,131},{13 ,3,185},{24 ,4,2},{0 ,0,-1},{27 ,6,232},{13 ,7,154},{19 ,8,138},{41 ,9,215},{12 ,10,124},{12 ,11,180},{11 ,12,134},{12 ,13,98},{17 ,14,112},{34 ,15,142},{11 ,16,1},{14 ,17,72},{12 ,18,80},{28 ,19,200},{13 ,20,178},{11 ,21,152},{11 ,22,165},{0 ,0,-1},{42 ,24,71},{43 ,25,125},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{6 ,0,199},{8 ,1,105},{33 ,2,132},{16 ,3,152},{26 ,4,169},{0 ,0,-1},{35 ,6,174},{19 ,7,159},{27 ,8,9},{44 ,9,187},{15 ,10,220},{16 ,11,84},{14 ,12,144},{15 ,13,173},{25 ,14,181},{36 ,15,42},{14 ,16,95},{17 ,17,219},{15 ,18,142},{39 ,19,52},{16 ,20,5},{14 ,21,76},{16 ,22,205},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{7 ,0,77},{9 ,1,12},{0 ,0,-1},{20 ,3,187},{28 ,4,43},{0 ,0,-1},{45 ,6,114},{25 ,7,11},{40 ,8,103},{0 ,0,-1},{19 ,10,196},{20 ,11,167},{18 ,12,215},{18 ,13,180},{29 ,14,32},{0 ,0,-1},{17 ,16,106},{22 ,17,178},{18 ,18,143},{0 ,0,-1},{21 ,20,65},{17 ,21,129},{20 ,22,130},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{8 ,0,181},{10 ,1,116},{0 ,0,-1},{24 ,3,178},{42 ,4,170},{0 ,0,-1},{0 ,0,-1},{31 ,7,149},{0 ,0,-1},{0 ,0,-1},{23 ,10,117},{24 ,11,156},{22 ,12,47},{22 ,13,126},{32 ,14,151},{0 ,0,-1},{21 ,16,215},{34 ,17,180},{23 ,18,199},{0 ,0,-1},{0 ,0,-1},{21 ,21,216},{24 ,22,58},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{9 ,0,169},{11 ,1,115},{0 ,0,-1},{39 ,3,188},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{34 ,7,237},{0 ,0,-1},{0 ,0,-1},{30 ,10,199},{33 ,11,172},{32 ,12,110},{30 ,13,26},{36 ,14,207},{0 ,0,-1},{43 ,16,127},{40 ,17,30},{29 ,18,118},{0 ,0,-1},{0 ,0,-1},{28 ,21,205},{31 ,22,175},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{11 ,0,45},{12 ,1,215},{0 ,0,-1},{41 ,3,189},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{39 ,7,168},{0 ,0,-1},{0 ,0,-1},{38 ,10,26},{0 ,0,-1},{35 ,12,145},{37 ,13,204},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{36 ,18,100},{0 ,0,-1},{0 ,0,-1},{33 ,21,65},{35 ,22,100},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{12 ,0,186},{15 ,1,138},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,7,211},{0 ,0,-1},{0 ,0,-1},{45 ,10,93},{0 ,0,-1},{38 ,12,140},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{41 ,18,24},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{44 ,22,148},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{13 ,0,220},{16 ,1,78},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{43 ,18,49},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{14 ,0,124},{18 ,1,183},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{15 ,0,39},{19 ,1,108},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{17 ,0,183},{21 ,1,197},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{19 ,0,179},{23 ,1,185},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{20 ,0,77},{25 ,1,27},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{22 ,0,25},{27 ,1,165},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{24 ,0,32},{29 ,1,232},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{26 ,0,163},{31 ,1,73},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{28 ,0,32},{33 ,1,199},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{30 ,0,170},{35 ,1,231},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{32 ,0,103},{37 ,1,59},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{34 ,0,161},{39 ,1,115},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{36 ,0,11},{41 ,1,53},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{38 ,0,121},{43 ,1,22},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{40 ,0,4},{45 ,1,177},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{42 ,0,222},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},
+{44 ,0,191},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1},{0 ,0,-1}
+};
\ No newline at end of file
diff --git a/openair1/PHY/NR_TRANSPORT/nr_dci_tools_common.c b/openair1/PHY/NR_TRANSPORT/nr_dci_tools_common.c
new file mode 100644
index 0000000000000000000000000000000000000000..d26a52f157c0e051cbda07c296135c18b9e38247
--- /dev/null
+++ b/openair1/PHY/NR_TRANSPORT/nr_dci_tools_common.c
@@ -0,0 +1,62 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file PHY/NR_TRANSPORT/nr_dci_tools_common.c
+ * \brief
+ * \author
+ * \date 2018
+ * \version 0.1
+ * \company Eurecom
+ * \email:
+ * \note
+ * \warning
+ */
+
+#include "nr_dci.h"
+
+//#define DEBUG_FILL_DCI
+
+#include "nr_dlsch.h"
+
+
+void get_coreset_rballoc(uint8_t *FreqDomainResource,int *n_rb,int *rb_offset) {
+
+  uint8_t count=0, start=0, start_set=0;
+
+  uint64_t bitmap = (((uint64_t)FreqDomainResource[0])<<37)|
+    (((uint64_t)FreqDomainResource[1])<<29)|
+    (((uint64_t)FreqDomainResource[2])<<21)|
+    (((uint64_t)FreqDomainResource[3])<<13)|
+    (((uint64_t)FreqDomainResource[4])<<5)|
+    (((uint64_t)FreqDomainResource[5])>>3);
+  
+  for (int i=0; i<45; i++)
+    if ((bitmap>>(44-i))&1) {
+      count++;
+      if (!start_set) {
+        start = i;
+        start_set = 1;
+      }
+    }
+  *rb_offset = 6*start;
+  *n_rb = 6*count;
+}
+
diff --git a/openair1/SIMULATION/NR_PHY/nr_dummy_functions_prach.c b/openair1/SIMULATION/NR_PHY/nr_dummy_functions_prach.c
new file mode 100644
index 0000000000000000000000000000000000000000..bfb9150868da49fb40a79d0dc42d6a6211ca7248
--- /dev/null
+++ b/openair1/SIMULATION/NR_PHY/nr_dummy_functions_prach.c
@@ -0,0 +1,348 @@
+int oai_nfapi_hi_dci0_req(nfapi_hi_dci0_request_t *hi_dci0_req)             { return(0);  }
+int oai_nfapi_tx_req(nfapi_tx_request_t *tx_req)                            { return(0);  }
+int oai_nfapi_dl_config_req(nfapi_dl_config_request_t *dl_config_req)       { return(0);  }
+int oai_nfapi_ul_config_req(nfapi_ul_config_request_t *ul_config_req)       { return(0);  }
+//int oai_nfapi_nr_dl_config_req(nfapi_nr_dl_config_request_t *dl_config_req) { return(0);  }
+int32_t get_uldl_offset(int nr_bandP)                                       { return(0);  }
+NR_IF_Module_t *NR_IF_Module_init(int Mod_id)                               {return(NULL);}
+int dummy_nr_ue_dl_indication(nr_downlink_indication_t *dl_info)            { return(0);  }
+int dummy_nr_ue_ul_indication(nr_uplink_indication_t *ul_info)              { return(0);  }
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file ra_procedures.c
+ * \brief Routines for UE MAC-layer Random Access procedures (TS 38.321, Release 15)
+ * \author R. Knopp, Navid Nikaein, Guido Casati
+ * \date 2019
+ * \version 0.1
+ * \company Eurecom
+ * \email: knopp@eurecom.fr navid.nikaein@eurecom.fr, guido.casati@iis.fraunhofer.de
+ * \note
+ * \warning
+ */
+
+
+/*
+#include "common/utils/LOG/vcd_signal_dumper.h"
+#include "PHY_INTERFACE/phy_interface_extern.h"
+#include "SCHED_UE/sched_UE.h"
+#include "COMMON/mac_rrc_primitives.h"
+#include "RRC/LTE/rrc_extern.h"
+#include "RRC/L2_INTERFACE/openair_rrc_L2_interface.h"
+#include "common/utils/LOG/log.h"
+#include "UTIL/OPT/opt.h"
+#include "OCG.h"
+#include "OCG_extern.h"
+#include "PHY/LTE_ESTIMATION/lte_estimation.h"*/
+
+/* Tools */
+#include "SIMULATION/TOOLS/sim.h"	// for taus
+
+/* RRC */
+#include "NR_RACH-ConfigCommon.h"
+
+/* PHY */
+#include "PHY/NR_TRANSPORT/nr_transport_common_proto.h"
+#include "PHY/defs_common.h"
+#include "PHY/defs_nr_common.h"
+#include "PHY/NR_UE_ESTIMATION/nr_estimation.h"
+
+/* MAC */
+#include "LAYER2/NR_MAC_COMMON/nr_mac_extern.h"
+#include "NR_MAC_COMMON/nr_mac.h"
+#include "LAYER2/NR_MAC_UE/mac_proto.h"
+#include "LAYER2/MAC/mac.h"
+
+extern int64_t table_6_3_3_2_2_prachConfig_Index [256][9];
+extern int64_t table_6_3_3_2_3_prachConfig_Index [256][9];
+
+//extern uint8_t  nfapi_mode;
+
+// WIP
+// This routine implements Section 5.1.2 (UE Random Access Resource Selection)
+// and Section 5.1.3 (Random Access Preamble Transmission) from 3GPP TS 38.321
+void nr_get_prach_resources(module_id_t mod_id,
+                            int CC_id,
+                            uint8_t gNB_id,
+                            uint8_t t_id,
+                            uint8_t first_Msg3,
+                            NR_PRACH_RESOURCES_t *prach_resources,
+                            NR_RACH_ConfigDedicated_t * rach_ConfigDedicated){
+
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  NR_RACH_ConfigCommon_t *nr_rach_ConfigCommon;
+  // NR_BeamFailureRecoveryConfig_t *beam_failure_recovery_config = &mac->RA_BeamFailureRecoveryConfig; // todo
+
+  int messagePowerOffsetGroupB = 0, messageSizeGroupA, PLThreshold, sizeOfRA_PreamblesGroupA, numberOfRA_Preambles, i, deltaPreamble_Msg3 = 0;
+  uint8_t noGroupB = 0, s_id, f_id, ul_carrier_id, msg1_FDM, prach_ConfigIndex, SFN_nbr, Msg3_size;
+
+  // NR_RSRP_Range_t rsrp_ThresholdSSB; // todo
+
+  ///////////////////////////////////////////////////////////
+  //////////* UE Random Access Resource Selection *//////////
+  ///////////////////////////////////////////////////////////
+
+  // todo: 
+  // - switch initialisation cases
+  // -- RA initiated by beam failure recovery operation (subclause 5.17 TS 38.321)
+  // --- SSB selection, set prach_resources->ra_PreambleIndex
+  // -- RA initiated by PDCCH: ra_preamble_index provided by PDCCH && ra_PreambleIndex != 0b000000 
+  // --- set PREAMBLE_INDEX to ra_preamble_index
+  // --- select the SSB signalled by PDCCH
+  // -- RA initiated for SI request:
+  // --- SSB selection, set prach_resources->ra_PreambleIndex
+
+  // if (rach_ConfigDedicated) {  // This is for network controlled Mobility
+  //   // operation for contention-free RA resources when:
+  //   // - available SSB with SS-RSRP above rsrp-ThresholdSSB: SSB selection
+  //   // - availalbe CSI-RS with CSI-RSRP above rsrp-ThresholdCSI-RS: CSI-RS selection
+  //   prach_resources->ra_PreambleIndex = rach_ConfigDedicated->ra_PreambleIndex;
+  //   return;
+  // }
+
+  //////////* Contention-based RA preamble selection *//////////
+  // todo:
+  // - selection of SSB with SS-RSRP above rsrp-ThresholdSSB else select any SSB
+  // - todo determine next available PRACH occasion
+
+  // rsrp_ThresholdSSB = *nr_rach_ConfigCommon->rsrp_ThresholdSSB;
+
+  AssertFatal(mac->nr_rach_ConfigCommon != NULL, "[UE %d] FATAL  nr_rach_ConfigCommon is NULL !!!\n", mod_id);
+
+  nr_rach_ConfigCommon = mac->nr_rach_ConfigCommon;
+
+  Msg3_size = mac->RA_Msg3_size;
+  numberOfRA_Preambles = *nr_rach_ConfigCommon->totalNumberOfRA_Preambles;
+
+  if (!nr_rach_ConfigCommon->groupBconfigured) {
+    noGroupB = 1;
+  } else {
+    // RA preambles group B is configured 
+    // - Defining the number of RA preambles in RA Preamble Group A for each SSB */
+    sizeOfRA_PreamblesGroupA = nr_rach_ConfigCommon->groupBconfigured->numberOfRA_PreamblesGroupA;
+    switch (nr_rach_ConfigCommon->groupBconfigured->ra_Msg3SizeGroupA){
+    /* - Threshold to determine the groups of RA preambles */
+    case 0:
+    messageSizeGroupA = 56;
+    break;
+    case 1:
+    messageSizeGroupA = 144;
+    break;
+    case 2:
+    messageSizeGroupA = 208;
+    break;
+    case 3:
+    messageSizeGroupA = 256;
+    break;
+    case 4:
+    messageSizeGroupA = 282;
+    break;
+    case 5:
+    messageSizeGroupA = 480;
+    break;
+    case 6:
+    messageSizeGroupA = 640;
+    break;
+    case 7:
+    messageSizeGroupA = 800;
+    break;
+    case 8:
+    messageSizeGroupA = 1000;
+    break;
+    case 9:
+    messageSizeGroupA = 72;
+    break;
+    default:
+    AssertFatal(1 == 0,"Unknown ra_Msg3SizeGroupA %lu\n", nr_rach_ConfigCommon->groupBconfigured->ra_Msg3SizeGroupA);
+    /* todo cases 10 -15*/
+    }
+
+    /* Power offset for preamble selection in dB */
+    messagePowerOffsetGroupB = -9999;
+    switch (nr_rach_ConfigCommon->groupBconfigured->messagePowerOffsetGroupB){
+    case 0:
+    messagePowerOffsetGroupB = -9999;
+    break;
+    case 1:
+    messagePowerOffsetGroupB = 0;
+    break;
+    case 2:
+    messagePowerOffsetGroupB = 5;
+    break;
+    case 3:
+    messagePowerOffsetGroupB = 8;
+    break;
+    case 4:
+    messagePowerOffsetGroupB = 10;
+    break;
+    case 5:
+    messagePowerOffsetGroupB = 12;
+    break;
+    case 6:
+    messagePowerOffsetGroupB = 15;
+    break;
+    case 7:
+    messagePowerOffsetGroupB = 18;
+    break;
+    default:
+    AssertFatal(1 == 0,"Unknown messagePowerOffsetGroupB %lu\n", nr_rach_ConfigCommon->groupBconfigured->messagePowerOffsetGroupB);
+    }
+
+    // todo Msg3-DeltaPreamble should be provided from higher layers, otherwise is 0
+    mac->deltaPreamble_Msg3 = 0;
+    deltaPreamble_Msg3 = mac->deltaPreamble_Msg3;
+  }
+
+  PLThreshold = prach_resources->RA_PCMAX - nr_rach_ConfigCommon->rach_ConfigGeneric.preambleReceivedTargetPower - deltaPreamble_Msg3 - messagePowerOffsetGroupB;
+
+  /* Msg3 has not been transmitted yet */
+  if (first_Msg3 == 1) {
+    if (noGroupB == 1) {
+      // use Group A preamble
+      prach_resources->ra_PreambleIndex = (taus()) % numberOfRA_Preambles;
+      mac->RA_usedGroupA = 1;
+    } else if ((Msg3_size < messageSizeGroupA) && (get_nr_PL(mod_id, CC_id, gNB_id) > PLThreshold)) {
+      // Group B is configured and RA preamble Group A is used
+      // - todo add condition on CCCH_sdu_size for initiation by CCCH
+      prach_resources->ra_PreambleIndex = (taus()) % sizeOfRA_PreamblesGroupA;
+      mac->RA_usedGroupA = 1;
+    } else {
+      // Group B preamble is configured and used
+      // the first sizeOfRA_PreamblesGroupA RA preambles belong to RA Preambles Group A
+      // the remaining belong to RA Preambles Group B
+      prach_resources->ra_PreambleIndex = sizeOfRA_PreamblesGroupA + (taus()) % (numberOfRA_Preambles - sizeOfRA_PreamblesGroupA);
+      mac->RA_usedGroupA = 0;
+    }
+  } else { // Msg3 is being retransmitted
+    if (mac->RA_usedGroupA == 1 && noGroupB == 1) {
+      prach_resources->ra_PreambleIndex = (taus()) % numberOfRA_Preambles;
+    } else if (mac->RA_usedGroupA == 1 && noGroupB == 0){
+      prach_resources->ra_PreambleIndex = (taus()) % sizeOfRA_PreamblesGroupA;
+    } else {
+      prach_resources->ra_PreambleIndex = sizeOfRA_PreamblesGroupA + (taus()) % (numberOfRA_Preambles - sizeOfRA_PreamblesGroupA);
+    }
+  }
+
+  // todo determine next available PRACH occasion
+  // - if RA initiated for SI request and ra_AssociationPeriodIndex and si-RequestPeriod are configured
+  // - else if SSB is selected above
+  // - else if CSI-RS is selected above
+
+  /////////////////////////////////////////////////////////////////////////////
+  //////////* Random Access Preamble Transmission (5.1.3 TS 38.321) *//////////
+  /////////////////////////////////////////////////////////////////////////////
+  // todo:
+  // - condition on notification of suspending power ramping counter from lower layer (5.1.3 TS 38.321)
+  // - check if SSB or CSI-RS have not changed since the selection in the last RA Preamble tranmission
+  // - Extend RA_rnti computation (e.g. f_id selection, ul_carrier_id are hardcoded)
+
+  if (mac->RA_PREAMBLE_TRANSMISSION_COUNTER > 1)
+    mac->RA_PREAMBLE_TRANSMISSION_COUNTER++;
+
+  prach_resources->ra_PREAMBLE_RECEIVED_TARGET_POWER = nr_get_Po_NOMINAL_PUSCH(prach_resources, mod_id, CC_id);
+
+   // RA-RNTI computation (associated to PRACH occasion in which the RA Preamble is transmitted)
+   // 1) this does not apply to contention-free RA Preamble for beam failure recovery request
+   // 2) getting star_symb, SFN_nbr from table 6.3.3.2-3 (TDD and FR1 scenario)
+
+   switch (nr_rach_ConfigCommon->rach_ConfigGeneric.msg1_FDM){ // todo this is not used
+    case 0:
+    msg1_FDM = 1;
+    break;
+    case 1:
+    msg1_FDM = 2;
+    break;
+    case 2:
+    msg1_FDM = 4;
+    break;
+    case 3:
+    msg1_FDM = 8;
+    break;
+    default:
+    AssertFatal(1 == 0,"Unknown msg1_FDM %lu\n", nr_rach_ConfigCommon->rach_ConfigGeneric.msg1_FDM);
+   }
+
+   prach_ConfigIndex = nr_rach_ConfigCommon->rach_ConfigGeneric.prach_ConfigurationIndex;
+
+   // ra_RNTI computation
+   // - todo: this is for TDD FR1 only
+   // - ul_carrier_id: UL carrier used for RA preamble transmission, hardcoded for NUL carrier
+   // - f_id: index of the PRACH occasion in the frequency domain
+   // - s_id is starting symbol of the PRACH occasion [0...14]
+   // - t_id is the first slot of the PRACH occasion in a system frame [0...80]
+
+   ul_carrier_id = 0; // NUL
+   f_id = nr_rach_ConfigCommon->rach_ConfigGeneric.msg1_FrequencyStart;
+   SFN_nbr = table_6_3_3_2_3_prachConfig_Index[prach_ConfigIndex][4]; 
+   s_id = table_6_3_3_2_3_prachConfig_Index[prach_ConfigIndex][5];
+
+   // Pick the first slot of the PRACH occasion in a system frame
+   for (i = 0; i < 10; i++){
+    if (((SFN_nbr & (1 << i)) >> i) == 1){
+      t_id = 2*i;
+      break;
+    }
+   }
+   prach_resources->ra_RNTI = 1 + s_id + 14 * t_id + 1120 * f_id + 8960 * ul_carrier_id;
+   mac->ra_rnti = prach_resources->ra_RNTI;
+
+   LOG_D(MAC, "Computed ra_RNTI is %d", prach_resources->ra_RNTI);
+}
+
+// TbD: RA_attempt_number not used
+void nr_Msg1_transmitted(module_id_t mod_id, uint8_t CC_id, frame_t frameP, uint8_t gNB_id){
+  AssertFatal(CC_id == 0, "Transmission on secondary CCs is not supported yet\n");
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  mac->ra_state = WAIT_RAR;
+  // Start contention resolution timer
+  mac->RA_attempt_number++;
+}
+
+void nr_Msg3_transmitted(module_id_t mod_id, uint8_t CC_id, frame_t frameP, uint8_t gNB_id){
+  AssertFatal(CC_id == 0, "Transmission on secondary CCs is not supported yet\n");
+  LOG_D(MAC,"[UE %d][RAPROC] Frame %d : Msg3_tx: Starting contention resolution timer\n", mod_id, frameP);
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  // start contention resolution timer
+  mac->RA_contention_resolution_cnt = 0;
+  mac->RA_contention_resolution_timer_active = 1;
+}
+
+/////////////////////////////////////////////////////////////////////////
+///////* Random Access Preamble Initialization (5.1.1 TS 38.321) *///////
+/////////////////////////////////////////////////////////////////////////
+/// Handling inizialization by PDCCH order, MAC entity or RRC (TS 38.300)
+/// Only one RA procedure is ongoing at any point in time in a MAC entity
+/// the RA procedure on a SCell shall only be initiated by PDCCH order
+
+// WIP
+// todo TS 38.321:
+// - check if carrier to use is explicitly signalled then do (1) RA CARRIER SELECTION (SUL, NUL) (2) set PCMAX
+// - BWP operation (subclause 5.15 TS 38.321)
+// - handle initialization by beam failure recovery
+// - handle initialization by handover
+// - handle transmission on DCCH using PRACH (during handover, or sending SR for example)
+// - take into account MAC CEs in size_sdu (currently hardcoded size to 1 MAC subPDU and 1 padding subheader)
+// - fix rrc data req logic
+// - retrieve TBS
+// - add mac_rrc_nr_data_req_ue, etc ...
+// - add the backoff condition here if we have it from a previous RA reponse which failed (i.e. backoff indicator)
+
+
diff --git a/openair2/LAYER2/MAC/slicing/slicing.c b/openair2/LAYER2/MAC/slicing/slicing.c
new file mode 100644
index 0000000000000000000000000000000000000000..9c88f6cffbbbb723756b97558dc93c31a16353eb
--- /dev/null
+++ b/openair2/LAYER2/MAC/slicing/slicing.c
@@ -0,0 +1,601 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*!
+ * \file   slicing.c
+ * \brief  Generic slicing helper functions and Static Slicing Implementation
+ * \author Robert Schmidt
+ * \date   2020
+ * \email  robert.schmidt@eurecom.fr
+ */
+
+#define _GNU_SOURCE
+#include <stdlib.h>
+#include <dlfcn.h>
+
+#include "assertions.h"
+#include "common/utils/LOG/log.h"
+
+#include "slicing.h"
+#include "slicing_internal.h"
+
+#include "common/ran_context.h"
+extern RAN_CONTEXT_t RC;
+
+#define RET_FAIL(ret, x...) do { LOG_E(MAC, x); return ret; } while (0)
+
+int slicing_get_UE_slice_idx(slice_info_t *si, int UE_id) {
+  return si->UE_assoc_slice[UE_id];
+}
+
+void slicing_add_UE(slice_info_t *si, int UE_id) {
+  add_ue_list(&si->s[0]->UEs, UE_id);
+  si->UE_assoc_slice[UE_id] = 0;
+}
+
+void _remove_UE(slice_t **s, uint8_t *assoc, int UE_id) {
+  const uint8_t i = assoc[UE_id];
+  DevAssert(remove_ue_list(&s[i]->UEs, UE_id));
+  assoc[UE_id] = -1;
+}
+
+void slicing_remove_UE(slice_info_t *si, int UE_id) {
+  _remove_UE(si->s, si->UE_assoc_slice, UE_id);
+}
+
+void _move_UE(slice_t **s, uint8_t *assoc, int UE_id, int to) {
+  const uint8_t i = assoc[UE_id];
+  const int ri = remove_ue_list(&s[i]->UEs, UE_id);
+  if (!ri)
+    LOG_W(MAC, "did not find UE %d in DL slice index %d\n", UE_id, i);
+  add_ue_list(&s[to]->UEs, UE_id);
+  assoc[UE_id] = to;
+}
+
+void slicing_move_UE(slice_info_t *si, int UE_id, int idx) {
+  DevAssert(idx >= -1 && idx < si->num);
+  if (idx >= 0)
+    _move_UE(si->s, si->UE_assoc_slice, UE_id, idx);
+}
+
+int _exists_slice(uint8_t n, slice_t **s, int id) {
+  for (int i = 0; i < n; ++i)
+    if (s[i]->id == id)
+      return i;
+  return -1;
+}
+
+slice_t *_add_slice(uint8_t *n, slice_t **s) {
+  s[*n] = calloc(1, sizeof(slice_t));
+  if (!s[*n])
+    return NULL;
+  init_ue_list(&s[*n]->UEs);
+  *n += 1;
+  return s[*n - 1];
+}
+
+slice_t *_remove_slice(uint8_t *n, slice_t **s, uint8_t *assoc, int idx) {
+  if (idx >= *n)
+    return NULL;
+
+  slice_t *sr = s[idx];
+  while (sr->UEs.head >= 0)
+    _move_UE(s, assoc, sr->UEs.head, 0);
+
+  for (int i = idx + 1; i < *n; ++i)
+    s[i - 1] = s[i];
+  *n -= 1;
+  s[*n] = NULL;
+
+  for (int i = 0; i < MAX_MOBILES_PER_ENB; ++i)
+    if (assoc[i] > idx)
+      assoc[i] -= 1;
+
+  if (sr->label)
+    free(sr->label);
+
+  return sr;
+}
+
+/************************ Static Slicing Implementation ************************/
+
+int addmod_static_slice_dl(slice_info_t *si,
+                           int id,
+                           char *label,
+                           void *algo,
+                           void *slice_params_dl) {
+  static_slice_param_t *dl = slice_params_dl;
+  if (dl && dl->posLow > dl->posHigh)
+    RET_FAIL(-1, "%s(): slice id %d posLow > posHigh\n", __func__, id);
+
+  uint8_t rbgMap[25] = { 0 };
+  int index = _exists_slice(si->num, si->s, id);
+  if (index >= 0) {
+    for (int s = 0; s < si->num; ++s) {
+      static_slice_param_t *sd = dl && si->s[s]->id == id ? dl : si->s[s]->algo_data;
+      for (int i = sd->posLow; i <= sd->posHigh; ++i) {
+        if (rbgMap[i])
+          RET_FAIL(-33, "%s(): overlap of slices detected at RBG %d\n", __func__, i);
+        rbgMap[i] = 1;
+      }
+    }
+    /* no problem, can allocate */
+    slice_t *s = si->s[index];
+    if (label) {
+      if (s->label) free(s->label);
+      s->label = label;
+    }
+    if (algo) {
+      s->dl_algo.unset(&s->dl_algo.data);
+      s->dl_algo = *(default_sched_dl_algo_t *) algo;
+      if (!s->dl_algo.data)
+        s->dl_algo.data = s->dl_algo.setup();
+    }
+    if (dl) {
+      free(s->algo_data);
+      s->algo_data = dl;
+    }
+    return index;
+  }
+
+  if (!dl)
+    RET_FAIL(-100, "%s(): no parameters for new slice %d, aborting\n", __func__, id);
+
+  if (si->num >= MAX_STATIC_SLICES)
+    RET_FAIL(-2, "%s(): cannot have more than %d slices\n", __func__, MAX_STATIC_SLICES);
+  for (int s = 0; s < si->num; ++s) {
+    static_slice_param_t *sd = si->s[s]->algo_data;
+    for (int i = sd->posLow; i <= sd->posHigh; ++i)
+      rbgMap[i] = 1;
+  }
+
+  for (int i = dl->posLow; i <= dl->posHigh; ++i)
+    if (rbgMap[i])
+      RET_FAIL(-3, "%s(): overlap of slices detected at RBG %d\n", __func__, i);
+
+  if (!algo)
+    RET_FAIL(-14, "%s(): no scheduler algorithm provided\n", __func__);
+
+  slice_t *ns = _add_slice(&si->num, si->s);
+  if (!ns)
+    RET_FAIL(-4, "%s(): could not create new slice\n", __func__);
+  ns->id = id;
+  ns->label = label;
+  ns->dl_algo = *(default_sched_dl_algo_t *) algo;
+  if (!ns->dl_algo.data)
+    ns->dl_algo.data = ns->dl_algo.setup();
+  ns->algo_data = dl;
+
+  return si->num - 1;
+}
+
+int addmod_static_slice_ul(slice_info_t *si,
+                           int id,
+                           char *label,
+                           void *algo,
+                           void *slice_params_ul) {
+  static_slice_param_t *ul = slice_params_ul;
+  /* Minimum 3RBs, because LTE stack requires this */
+  if (ul && ul->posLow + 2 > ul->posHigh)
+    RET_FAIL(-1, "%s(): slice id %d posLow + 2 > posHigh\n", __func__, id);
+
+  uint8_t rbMap[110] = { 0 };
+  int index = _exists_slice(si->num, si->s, id);
+  if (index >= 0) {
+    for (int s = 0; s < si->num; ++s) {
+      static_slice_param_t *su = ul && si->s[s]->id == id && ul ? ul : si->s[s]->algo_data;
+      for (int i = su->posLow; i <= su->posHigh; ++i) {
+        if (rbMap[i])
+          RET_FAIL(-33, "%s(): overlap of slices detected at RBG %d\n", __func__, i);
+        rbMap[i] = 1;
+      }
+    }
+    /* no problem, can allocate */
+    slice_t *s = si->s[index];
+    if (algo) {
+      s->ul_algo.unset(&s->ul_algo.data);
+      s->ul_algo = *(default_sched_ul_algo_t *) algo;
+      if (!s->ul_algo.data)
+        s->ul_algo.data = s->ul_algo.setup();
+    }
+    if (label) {
+      if (s->label) free(s->label);
+      s->label = label;
+    }
+    if (ul) {
+      free(s->algo_data);
+      s->algo_data = ul;
+    }
+    return index;
+  }
+
+  if (!ul)
+    RET_FAIL(-100, "%s(): no parameters for new slice %d, aborting\n", __func__, id);
+
+  if (si->num >= MAX_STATIC_SLICES)
+    RET_FAIL(-2, "%s(): cannot have more than %d slices\n", __func__, MAX_STATIC_SLICES);
+  for (int s = 0; s < si->num; ++s) {
+    static_slice_param_t *sd = si->s[s]->algo_data;
+    for (int i = sd->posLow; i <= sd->posHigh; ++i)
+      rbMap[i] = 1;
+  }
+
+  for (int i = ul->posLow; i <= ul->posHigh; ++i)
+    if (rbMap[i])
+      RET_FAIL(-3, "%s(): overlap of slices detected at RBG %d\n", __func__, i);
+
+  if (!algo)
+    RET_FAIL(-14, "%s(): no scheduler algorithm provided\n", __func__);
+
+  slice_t *ns = _add_slice(&si->num, si->s);
+  if (!ns)
+    RET_FAIL(-4, "%s(): could not create new slice\n", __func__);
+  ns->id = id;
+  ns->label = label;
+  ns->ul_algo = *(default_sched_ul_algo_t *) algo;
+  if (!ns->ul_algo.data)
+    ns->ul_algo.data = ns->ul_algo.setup();
+  ns->algo_data = ul;
+
+  return si->num - 1;
+}
+
+int remove_static_slice_dl(slice_info_t *si, uint8_t slice_idx) {
+  if (slice_idx == 0)
+    return 0;
+  slice_t *sr = _remove_slice(&si->num, si->s, si->UE_assoc_slice, slice_idx);
+  if (!sr)
+    return 0;
+  free(sr->algo_data);
+  sr->dl_algo.unset(&sr->dl_algo.data);
+  free(sr);
+  return 1;
+}
+
+int remove_static_slice_ul(slice_info_t *si, uint8_t slice_idx) {
+  if (slice_idx == 0)
+    return 0;
+  slice_t *sr = _remove_slice(&si->num, si->s, si->UE_assoc_slice, slice_idx);
+  if (!sr)
+    return 0;
+  free(sr->algo_data);
+  sr->ul_algo.unset(&sr->ul_algo.data);
+  free(sr);
+  return 1;
+}
+
+void static_dl(module_id_t mod_id,
+               int CC_id,
+               frame_t frame,
+               sub_frame_t subframe) {
+  UE_info_t *UE_info = &RC.mac[mod_id]->UE_info;
+
+  store_dlsch_buffer(mod_id, CC_id, frame, subframe);
+
+  for (int UE_id = UE_info->list.head; UE_id >= 0; UE_id = UE_info->list.next[UE_id]) {
+    UE_sched_ctrl_t *ue_sched_ctrl = &UE_info->UE_sched_ctrl[UE_id];
+
+    /* initialize per-UE scheduling information */
+    ue_sched_ctrl->pre_nb_available_rbs[CC_id] = 0;
+    ue_sched_ctrl->dl_pow_off[CC_id] = 2;
+    memset(ue_sched_ctrl->rballoc_sub_UE[CC_id], 0, sizeof(ue_sched_ctrl->rballoc_sub_UE[CC_id]));
+    ue_sched_ctrl->pre_dci_dl_pdu_idx = -1;
+  }
+
+  const int N_RBG = to_rbg(RC.mac[mod_id]->common_channels[CC_id].mib->message.dl_Bandwidth);
+  const int RBGsize = get_min_rb_unit(mod_id, CC_id);
+  uint8_t *vrb_map = RC.mac[mod_id]->common_channels[CC_id].vrb_map;
+  uint8_t rbgalloc_mask[N_RBG_MAX];
+  for (int i = 0; i < N_RBG; i++) {
+    // calculate mask: init to one + "AND" with vrb_map:
+    // if any RB in vrb_map is blocked (1), the current RBG will be 0
+    rbgalloc_mask[i] = 1;
+    for (int j = 0; j < RBGsize; j++)
+      rbgalloc_mask[i] &= !vrb_map[RBGsize * i + j];
+  }
+
+  slice_info_t *s = RC.mac[mod_id]->pre_processor_dl.slices;
+  int max_num_ue;
+  switch (s->num) {
+    case 1:
+      max_num_ue = 4;
+      break;
+    case 2:
+      max_num_ue = 2;
+      break;
+    default:
+      max_num_ue = 1;
+      break;
+  }
+  for (int i = 0; i < s->num; ++i) {
+    if (s->s[i]->UEs.head < 0)
+      continue;
+    uint8_t rbgalloc_slice_mask[N_RBG_MAX];
+    memset(rbgalloc_slice_mask, 0, sizeof(rbgalloc_slice_mask));
+    static_slice_param_t *p = s->s[i]->algo_data;
+    int n_rbg_sched = 0;
+    for (int rbg = p->posLow; rbg <= p->posHigh && rbg <= N_RBG; ++rbg) {
+      rbgalloc_slice_mask[rbg] = rbgalloc_mask[rbg];
+      n_rbg_sched += rbgalloc_mask[rbg];
+    }
+
+    s->s[i]->dl_algo.run(mod_id,
+                         CC_id,
+                         frame,
+                         subframe,
+                         &s->s[i]->UEs,
+                         max_num_ue, // max_num_ue
+                         n_rbg_sched,
+                         rbgalloc_slice_mask,
+                         s->s[i]->dl_algo.data);
+  }
+
+  // the following block is meant for validation of the pre-processor to check
+  // whether all UE allocations are non-overlapping and is not necessary for
+  // scheduling functionality
+  char t[26] = "_________________________";
+  t[N_RBG] = 0;
+  for (int i = 0; i < N_RBG; i++)
+    for (int j = 0; j < RBGsize; j++)
+      if (vrb_map[RBGsize*i+j] != 0)
+        t[i] = 'x';
+  int print = 0;
+  for (int UE_id = UE_info->list.head; UE_id >= 0; UE_id = UE_info->list.next[UE_id]) {
+    const UE_sched_ctrl_t *ue_sched_ctrl = &UE_info->UE_sched_ctrl[UE_id];
+
+    if (ue_sched_ctrl->pre_nb_available_rbs[CC_id] == 0)
+      continue;
+
+    LOG_D(MAC,
+          "%4d.%d UE%d %d RBs allocated, pre MCS %d\n",
+          frame,
+          subframe,
+          UE_id,
+          ue_sched_ctrl->pre_nb_available_rbs[CC_id],
+          UE_info->eNB_UE_stats[CC_id][UE_id].dlsch_mcs1);
+
+    print = 1;
+
+    for (int i = 0; i < N_RBG; i++) {
+      if (!ue_sched_ctrl->rballoc_sub_UE[CC_id][i])
+        continue;
+      for (int j = 0; j < RBGsize; j++) {
+        if (vrb_map[RBGsize*i+j] != 0) {
+          LOG_I(MAC, "%4d.%d DL scheduler allocation list: %s\n", frame, subframe, t);
+          LOG_E(MAC, "%4d.%d: UE %d allocated at locked RB %d/RBG %d\n", frame,
+                subframe, UE_id, RBGsize * i + j, i);
+        }
+        vrb_map[RBGsize*i+j] = 1;
+      }
+      t[i] = '0' + UE_id;
+    }
+  }
+  if (print)
+    LOG_D(MAC, "%4d.%d DL scheduler allocation list: %s\n", frame, subframe, t);
+}
+
+void static_ul(module_id_t mod_id,
+               int CC_id,
+               frame_t frame,
+               sub_frame_t subframe,
+               frame_t sched_frame,
+               sub_frame_t sched_subframe) {
+  UE_info_t *UE_info = &RC.mac[mod_id]->UE_info;
+  const int N_RB_UL = to_prb(RC.mac[mod_id]->common_channels[CC_id].ul_Bandwidth);
+  COMMON_channels_t *cc = &RC.mac[mod_id]->common_channels[CC_id];
+
+  for (int UE_id = UE_info->list.head; UE_id >= 0; UE_id = UE_info->list.next[UE_id]) {
+    UE_TEMPLATE *UE_template = &UE_info->UE_template[CC_id][UE_id];
+    UE_template->pre_assigned_mcs_ul = 0;
+    UE_template->pre_allocated_nb_rb_ul = 0;
+    UE_template->pre_allocated_rb_table_index_ul = -1;
+    UE_template->pre_first_nb_rb_ul = 0;
+    UE_template->pre_dci_ul_pdu_idx = -1;
+  }
+
+  slice_info_t *s = RC.mac[mod_id]->pre_processor_ul.slices;
+  int max_num_ue;
+  switch (s->num) {
+    case 1:
+      max_num_ue = 4;
+      break;
+    case 2:
+      max_num_ue = 2;
+      break;
+    default:
+      max_num_ue = 1;
+      break;
+  }
+  for (int i = 0; i < s->num; ++i) {
+    if (s->s[i]->UEs.head < 0)
+      continue;
+    int last_rb_blocked = 1;
+    int n_contig = 0;
+    contig_rbs_t rbs[2]; // up to two contig RBs for PRACH in between
+    static_slice_param_t *p = s->s[i]->algo_data;
+    for (int rb = p->posLow; rb <= p->posHigh && rb < N_RB_UL; ++rb) {
+      if (cc->vrb_map_UL[rb] == 0 && last_rb_blocked) {
+        last_rb_blocked = 0;
+        n_contig++;
+        AssertFatal(n_contig <= 2, "cannot handle more than two contiguous RB regions\n");
+        rbs[n_contig - 1].start = rb;
+      }
+      if (cc->vrb_map_UL[rb] == 1 && !last_rb_blocked) {
+        last_rb_blocked = 1;
+        rbs[n_contig - 1].length = rb - rbs[n_contig - 1].start;
+      }
+    }
+    if (!last_rb_blocked)
+      rbs[n_contig - 1].length = p->posHigh - rbs[n_contig - 1].start + 1;
+
+    s->s[i]->ul_algo.run(mod_id,
+                         CC_id,
+                         frame,
+                         subframe,
+                         sched_frame,
+                         sched_subframe,
+                         &s->s[i]->UEs,
+                         max_num_ue, // max_num_ue
+                         n_contig,
+                         rbs,
+                         s->s[i]->ul_algo.data);
+  }
+
+  // the following block is meant for validation of the pre-processor to check
+  // whether all UE allocations are non-overlapping and is not necessary for
+  // scheduling functionality
+  char t[101] = "__________________________________________________"
+                "__________________________________________________";
+  t[N_RB_UL] = 0;
+  for (int j = 0; j < N_RB_UL; j++)
+    if (cc->vrb_map_UL[j] != 0)
+      t[j] = 'x';
+  int print = 0;
+  for (int UE_id = UE_info->list.head; UE_id >= 0; UE_id = UE_info->list.next[UE_id]) {
+    UE_TEMPLATE *UE_template = &UE_info->UE_template[CC_id][UE_id];
+    if (UE_template->pre_allocated_nb_rb_ul == 0)
+      continue;
+
+    print = 1;
+    uint8_t harq_pid = subframe2harqpid(&RC.mac[mod_id]->common_channels[CC_id],
+                                        sched_frame, sched_subframe);
+    LOG_D(MAC, "%4d.%d UE%d %d RBs (index %d) at start %d, pre MCS %d %s\n",
+          frame,
+          subframe,
+          UE_id,
+          UE_template->pre_allocated_nb_rb_ul,
+          UE_template->pre_allocated_rb_table_index_ul,
+          UE_template->pre_first_nb_rb_ul,
+          UE_template->pre_assigned_mcs_ul,
+          UE_info->UE_sched_ctrl[UE_id].round_UL[CC_id][harq_pid] > 0 ? "(retx)" : "");
+
+    for (int i = 0; i < UE_template->pre_allocated_nb_rb_ul; ++i) {
+      /* only check if this is not a retransmission */
+      if (UE_info->UE_sched_ctrl[UE_id].round_UL[CC_id][harq_pid] == 0
+          && cc->vrb_map_UL[UE_template->pre_first_nb_rb_ul + i] == 1) {
+
+        LOG_I(MAC, "%4d.%d UL scheduler allocation list: %s\n", frame, subframe, t);
+        LOG_E(MAC,
+              "%4d.%d: UE %d allocated at locked RB %d (is: allocated start "
+              "%d/length %d)\n",
+              frame, subframe, UE_id, UE_template->pre_first_nb_rb_ul + i,
+              UE_template->pre_first_nb_rb_ul,
+              UE_template->pre_allocated_nb_rb_ul);
+      }
+      cc->vrb_map_UL[UE_template->pre_first_nb_rb_ul + i] = 1;
+      t[UE_template->pre_first_nb_rb_ul + i] = UE_id + '0';
+    }
+  }
+  if (print)
+    LOG_D(MAC,
+          "%4d.%d UL scheduler allocation list: %s\n",
+          sched_frame,
+          sched_subframe,
+          t);
+}
+
+void static_destroy(slice_info_t **si) {
+  const int n = (*si)->num;
+  (*si)->num = 0;
+  for (int i = 0; i < n; ++i) {
+    slice_t *s = (*si)->s[i];
+    if (s->label)
+      free(s->label);
+    free(s->algo_data);
+    free(s);
+  }
+  free((*si)->s);
+  free(*si);
+}
+
+pp_impl_param_t static_dl_init(module_id_t mod_id, int CC_id) {
+  slice_info_t *si = calloc(1, sizeof(slice_info_t));
+  DevAssert(si);
+
+  si->num = 0;
+  si->s = calloc(MAX_STATIC_SLICES, sizeof(slice_t));
+  DevAssert(si->s);
+  for (int i = 0; i < MAX_MOBILES_PER_ENB; ++i)
+    si->UE_assoc_slice[i] = -1;
+
+  /* insert default slice, all resources */
+  static_slice_param_t *dlp = malloc(sizeof(static_slice_param_t));
+  dlp->posLow = 0;
+  dlp->posHigh = to_rbg(RC.mac[mod_id]->common_channels[CC_id].mib->message.dl_Bandwidth) - 1;
+  default_sched_dl_algo_t *algo = &RC.mac[mod_id]->pre_processor_dl.dl_algo;
+  algo->data = NULL;
+  DevAssert(0 == addmod_static_slice_dl(si, 0, strdup("default"), algo, dlp));
+  const UE_list_t *UE_list = &RC.mac[mod_id]->UE_info.list;
+  for (int UE_id = UE_list->head; UE_id >= 0; UE_id = UE_list->next[UE_id])
+    slicing_add_UE(si, UE_id);
+
+  pp_impl_param_t sttc;
+  sttc.algorithm = STATIC_SLICING;
+  sttc.add_UE = slicing_add_UE;
+  sttc.remove_UE = slicing_remove_UE;
+  sttc.move_UE = slicing_move_UE;
+  sttc.addmod_slice = addmod_static_slice_dl;
+  sttc.remove_slice = remove_static_slice_dl;
+  sttc.dl = static_dl;
+  // current DL algo becomes default scheduler
+  sttc.dl_algo = *algo;
+  sttc.destroy = static_destroy;
+  sttc.slices = si;
+
+  return sttc;
+}
+
+pp_impl_param_t static_ul_init(module_id_t mod_id, int CC_id) {
+  slice_info_t *si = calloc(1, sizeof(slice_info_t));
+  DevAssert(si);
+
+  si->num = 0;
+  si->s = calloc(MAX_STATIC_SLICES, sizeof(slice_t));
+  DevAssert(si->s);
+  for (int i = 0; i < MAX_MOBILES_PER_ENB; ++i)
+    si->UE_assoc_slice[i] = -1;
+
+  /* insert default slice, all resources */
+  static_slice_param_t *ulp = malloc(sizeof(static_slice_param_t));
+  ulp->posLow = 0;
+  ulp->posHigh = to_prb(RC.mac[mod_id]->common_channels[CC_id].ul_Bandwidth) - 1;
+  default_sched_ul_algo_t *algo = &RC.mac[mod_id]->pre_processor_ul.ul_algo;
+  algo->data = NULL;
+  DevAssert(0 == addmod_static_slice_ul(si, 0, strdup("default"), algo, ulp));
+  const UE_list_t *UE_list = &RC.mac[mod_id]->UE_info.list;
+  for (int UE_id = UE_list->head; UE_id >= 0; UE_id = UE_list->next[UE_id])
+    slicing_add_UE(si, UE_id);
+
+  pp_impl_param_t sttc;
+  sttc.algorithm = STATIC_SLICING;
+  sttc.add_UE = slicing_add_UE;
+  sttc.remove_UE = slicing_remove_UE;
+  sttc.move_UE = slicing_move_UE;
+  sttc.addmod_slice = addmod_static_slice_ul;
+  sttc.remove_slice = remove_static_slice_ul;
+  sttc.ul = static_ul;
+  // current DL algo becomes default scheduler
+  sttc.ul_algo = *algo;
+  sttc.destroy = static_destroy;
+  sttc.slices = si;
+
+  return sttc;
+}
diff --git a/openair2/LAYER2/MAC/slicing/slicing.h b/openair2/LAYER2/MAC/slicing/slicing.h
new file mode 100644
index 0000000000000000000000000000000000000000..1099b50ea0cb92533d14a1bfa57945de0deefcb9
--- /dev/null
+++ b/openair2/LAYER2/MAC/slicing/slicing.h
@@ -0,0 +1,74 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*!
+ * \file   slicing.h
+ * \brief  General slice definition and helper parameters
+ * \author Robert Schmidt
+ * \date   2020
+ * \email  robert.schmidt@eurecom.fr
+ */
+
+#ifndef __SLICING_H__
+#define __SLICING_H__
+
+#include "openair2/LAYER2/MAC/mac.h"
+
+typedef struct slice_s {
+  /// Arbitrary ID
+  slice_id_t id;
+  /// Arbitrary label
+  char *label;
+
+  union {
+    default_sched_dl_algo_t dl_algo;
+    default_sched_ul_algo_t ul_algo;
+  };
+
+  /// A specific algorithm's implementation parameters
+  void *algo_data;
+  /// Internal data that might be kept alongside a slice's params
+  void *int_data;
+
+  // list of users in this slice
+  UE_list_t UEs;
+} slice_t;
+
+typedef struct slice_info_s {
+  uint8_t num;
+  slice_t **s;
+  uint8_t UE_assoc_slice[MAX_MOBILES_PER_ENB];
+} slice_info_t;
+
+int slicing_get_UE_slice_idx(slice_info_t *si, int UE_id);
+
+#define STATIC_SLICING 10
+/* only four static slices for UL, DL resp. (not enough DCIs) */
+#define MAX_STATIC_SLICES 4
+typedef struct {
+  uint16_t posLow;
+  uint16_t posHigh;
+} static_slice_param_t;
+pp_impl_param_t static_dl_init(module_id_t mod_id, int CC_id);
+pp_impl_param_t static_ul_init(module_id_t mod_id, int CC_id);
+
+
+#endif /* __SLICING_H__ */
diff --git a/openair2/LAYER2/MAC/slicing/slicing_internal.h b/openair2/LAYER2/MAC/slicing/slicing_internal.h
new file mode 100644
index 0000000000000000000000000000000000000000..744f8924d925ed81de1d30883e6e44e4d2fbbfb8
--- /dev/null
+++ b/openair2/LAYER2/MAC/slicing/slicing_internal.h
@@ -0,0 +1,46 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*!
+ * \file   slicing_internal.h
+ * \brief  Internal slice helper functions
+ * \author Robert Schmidt
+ * \date   2020
+ * \email  robert.schmidt@eurecom.fr
+ */
+
+#ifndef __SLICING_INTERNAL_H__
+#define __SLICING_INTERNAL_H__
+
+#include "slicing.h"
+
+void slicing_add_UE(slice_info_t *si, int UE_id);
+
+void _remove_UE(slice_t **s, uint8_t *assoc, int UE_id);
+void slicing_remove_UE(slice_info_t *si, int UE_id);
+
+void _move_UE(slice_t **s, uint8_t *assoc, int UE_id, int to);
+void slicing_move_UE(slice_info_t *si, int UE_id, int idx);
+
+slice_t *_add_slice(uint8_t *n, slice_t **s);
+slice_t *_remove_slice(uint8_t *n, slice_t **s, uint8_t *assoc, int idx);
+
+#endif /* __SLICING_INTERNAL_H__ */
diff --git a/openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h b/openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
new file mode 100644
index 0000000000000000000000000000000000000000..a5e38bf128ef95029970069d88414bdeaace756a
--- /dev/null
+++ b/openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
@@ -0,0 +1,120 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file mac.h
+* \brief MAC data structures, constant, and function prototype
+* \author Navid Nikaein and Raymond Knopp, WIE-TAI CHEN
+* \date Dec. 2019
+* \version 0.1
+* \company Eurecom
+* \email raymond.knopp@eurecom.fr
+
+*/
+
+#ifndef __LAYER2_NR_MAC_COMMON_H__
+#define __LAYER2_NR_MAC_COMMON_H__
+
+#include "NR_PDSCH-Config.h"
+#include "NR_CellGroupConfig.h"
+#include "nr_mac.h"
+
+typedef enum {
+  NR_DL_DCI_FORMAT_1_0 = 0,
+  NR_DL_DCI_FORMAT_1_1,
+  NR_DL_DCI_FORMAT_2_0,
+  NR_DL_DCI_FORMAT_2_1,
+  NR_DL_DCI_FORMAT_2_2,
+  NR_DL_DCI_FORMAT_2_3,
+  NR_UL_DCI_FORMAT_0_0,
+  NR_UL_DCI_FORMAT_0_1
+} nr_dci_format_t;
+
+typedef enum {
+  NR_RNTI_new = 0,
+  NR_RNTI_C,
+  NR_RNTI_RA,
+  NR_RNTI_P,
+  NR_RNTI_CS,
+  NR_RNTI_TC,
+  NR_RNTI_SP_CSI,
+  NR_RNTI_SI,
+  NR_RNTI_SFI,
+  NR_RNTI_INT,
+  NR_RNTI_TPC_PUSCH,
+  NR_RNTI_TPC_PUCCH,
+  NR_RNTI_TPC_SRS
+} nr_rnti_type_t;
+
+uint16_t config_bandwidth(int mu, int nb_rb, int nr_band);
+
+void get_band(uint64_t downlink_frequency, uint16_t *current_band, int32_t *current_offset, lte_frame_type_t *current_type);
+
+uint64_t from_nrarfcn(int nr_bandP, uint8_t scs_index, uint32_t dl_nrarfcn);
+
+uint32_t to_nrarfcn(int nr_bandP, uint64_t dl_CarrierFreq, uint8_t scs_index, uint32_t bw);
+
+int16_t fill_dmrs_mask(NR_PDSCH_Config_t *pdsch_Config,int dmrs_TypeA_Position,int NrOfSymbols);
+
+int is_nr_DL_slot(NR_ServingCellConfigCommon_t *scc,slot_t slotP);
+
+int is_nr_UL_slot(NR_ServingCellConfigCommon_t *scc,slot_t slotP);
+
+uint16_t nr_dci_size(NR_ServingCellConfigCommon_t *scc,
+                     NR_CellGroupConfig_t *secondaryCellGroup,
+                     dci_pdu_rel15_t *dci_pdu,
+                     nr_dci_format_t format,
+		     nr_rnti_type_t rnti_type,
+		     uint16_t N_RB,
+                     int bwp_id);
+
+void find_monitoring_periodicity_offset_common(NR_SearchSpace_t *ss,
+                                               uint16_t *slot_period,
+                                               uint16_t *offset);
+
+int get_nr_prach_info_from_index(uint8_t index,
+                                 int frame,
+                                 int slot,
+                                 uint32_t pointa,
+                                 uint8_t mu,
+                                 uint8_t unpaired,
+                                 uint16_t *format,
+                                 uint8_t *start_symbol,
+                                 uint8_t *N_t_slot,
+                                 uint8_t *N_dur);
+
+uint8_t compute_nr_root_seq(NR_RACH_ConfigCommon_t *rach_config,
+                            uint8_t nb_preambles,
+                            uint8_t unpaired);
+
+int ul_ant_bits(NR_DMRS_UplinkConfig_t *NR_DMRS_UplinkConfig,long transformPrecoder);
+
+int get_format0(uint8_t index, uint8_t unpaired);
+
+uint16_t get_NCS(uint8_t index, uint16_t format, uint8_t restricted_set_config);
+
+int get_num_dmrs(uint16_t dmrs_mask );
+uint8_t get_l0_ul(uint8_t mapping_type, uint8_t dmrs_typeA_position);
+int32_t get_l_prime(uint8_t duration_in_symbols, uint8_t mapping_type, pusch_dmrs_AdditionalPosition_t additional_pos, pusch_maxLength_t pusch_maxLength);
+
+uint8_t get_L_ptrs(uint8_t mcs1, uint8_t mcs2, uint8_t mcs3, uint8_t I_mcs, uint8_t mcs_table);
+uint8_t get_K_ptrs(uint16_t nrb0, uint16_t nrb1, uint16_t N_RB);
+
+#endif
diff --git a/openair2/LAYER2/NR_MAC_UE/nr_l1_helpers.c b/openair2/LAYER2/NR_MAC_UE/nr_l1_helpers.c
new file mode 100644
index 0000000000000000000000000000000000000000..f8bb1e5f8eae54c7698d613023b61ba3ebb15c7b
--- /dev/null
+++ b/openair2/LAYER2/NR_MAC_UE/nr_l1_helpers.c
@@ -0,0 +1,153 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file nr_l1_helper.c
+* \brief PHY helper functions for PRACH adapted to NR
+* \author Guido Casati
+* \date 2019
+* \version 2.0
+* \email guido.casati@iis.fraunhofer.de
+* @ingroup _mac
+
+*/
+
+#include "PHY/defs_nr_common.h"
+
+#include "mac_defs.h"
+#include "LAYER2/NR_MAC_COMMON/nr_mac_extern.h"
+#include "LAYER2/NR_MAC_UE/mac_proto.h"
+
+/* TS 38.321 subclause 7.3 - return DELTA_PREAMBLE values in dB */
+int8_t nr_get_DELTA_PREAMBLE(module_id_t mod_id, int CC_id, uint16_t prach_format){
+
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  NR_ServingCellConfigCommon_t *scc = mac->scc;
+  NR_RACH_ConfigCommon_t *nr_rach_ConfigCommon = scc->uplinkConfigCommon->initialUplinkBWP->rach_ConfigCommon->choice.setup;
+  NR_SubcarrierSpacing_t scs = *nr_rach_ConfigCommon->msg1_SubcarrierSpacing;
+  int prach_sequence_length = scc->uplinkConfigCommon->initialUplinkBWP->rach_ConfigCommon->choice.setup->prach_RootSequenceIndex.present - 1;
+  uint8_t prachConfigIndex, mu;
+
+  AssertFatal(CC_id == 0, "Transmission on secondary CCs is not supported yet\n");
+
+  // SCS configuration from msg1_SubcarrierSpacing and table 4.2-1 in TS 38.211
+
+  switch (scs){
+    case NR_SubcarrierSpacing_kHz15:
+    mu = 0;
+    break;
+
+    case NR_SubcarrierSpacing_kHz30:
+    mu = 1;
+    break;
+
+    case NR_SubcarrierSpacing_kHz60:
+    mu = 2;
+    break;
+
+    case NR_SubcarrierSpacing_kHz120:
+    mu = 3;
+    break;
+
+    case NR_SubcarrierSpacing_kHz240:
+    mu = 4;
+    break;
+
+    case NR_SubcarrierSpacing_spare3:
+    mu = 5;
+    break;
+
+    case NR_SubcarrierSpacing_spare2:
+    mu = 6;
+    break;
+
+    case NR_SubcarrierSpacing_spare1:
+    mu = 7;
+    break;
+
+    default:
+    AssertFatal(1 == 0,"Unknown msg1_SubcarrierSpacing %lu\n", scs);
+  }
+
+  // Preamble formats given by prach_ConfigurationIndex and tables 6.3.3.2-2 and 6.3.3.2-2 in TS 38.211
+
+  prachConfigIndex = nr_rach_ConfigCommon->rach_ConfigGeneric.prach_ConfigurationIndex;
+
+  if (prach_sequence_length == 0) {
+    AssertFatal(prach_format < 4, "Illegal PRACH format %d for sequence length 839\n", prach_format);
+    switch (prach_format) {
+
+      // long preamble formats
+      case 0:
+      case 3:
+      return  0;
+
+      case 1:           
+      return -3;
+
+      case 2:
+      return -6;
+    }
+  } else {
+    switch (prach_format) { // short preamble formats
+      case 0:
+      case 3:
+      return 8 + 3*mu;
+
+      case 1:
+      case 4:
+      case 8:
+      return 5 + 3*mu;
+
+      case 2:
+      case 5:
+      return 3 + 3*mu;
+
+      case 6:
+      return 3*mu;
+
+      case 7:
+      return 5 + 3*mu;
+
+      default:
+      AssertFatal(1 == 0, "[UE %d] ue_procedures.c: FATAL, Illegal preambleFormat %d, prachConfigIndex %d\n", mod_id, prach_format, prachConfigIndex);
+    }
+  }
+  return 0;
+}
+
+/* TS 38.321 subclause 5.1.3 - RA preamble transmission - ra_PREAMBLE_RECEIVED_TARGET_POWER configuration */
+int nr_get_Po_NOMINAL_PUSCH(NR_PRACH_RESOURCES_t *prach_resources, module_id_t mod_id, uint8_t CC_id){
+  
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  NR_ServingCellConfigCommon_t *scc = mac->scc;
+  NR_RACH_ConfigCommon_t *nr_rach_ConfigCommon = scc->uplinkConfigCommon->initialUplinkBWP->rach_ConfigCommon->choice.setup;
+  int8_t receivedTargerPower, delta_preamble;
+  long preambleReceivedTargetPower;
+
+  AssertFatal(nr_rach_ConfigCommon != NULL, "[UE %d] CCid %d FATAL nr_rach_ConfigCommon is NULL !!!\n", mod_id, CC_id);
+
+  preambleReceivedTargetPower = nr_rach_ConfigCommon->rach_ConfigGeneric.preambleReceivedTargetPower;
+  delta_preamble = nr_get_DELTA_PREAMBLE(mod_id, CC_id, prach_resources->prach_format);
+
+  receivedTargerPower = preambleReceivedTargetPower + delta_preamble + (mac->RA_PREAMBLE_POWER_RAMPING_COUNTER - 1) * prach_resources->RA_PREAMBLE_POWER_RAMPING_STEP;
+
+  return receivedTargerPower;
+}
diff --git a/openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c b/openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
new file mode 100644
index 0000000000000000000000000000000000000000..56ae14f98b8760d0708ebf9684a3b6fa060da999
--- /dev/null
+++ b/openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
@@ -0,0 +1,644 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file ra_procedures.c
+ * \brief Routines for UE MAC-layer Random Access procedures (TS 38.321, Release 15)
+ * \author R. Knopp, Navid Nikaein, Guido Casati
+ * \date 2019
+ * \version 0.1
+ * \company Eurecom
+ * \email: knopp@eurecom.fr navid.nikaein@eurecom.fr, guido.casati@iis.fraunhofer.de
+ * \note
+ * \warning
+ */
+
+#include "mac.h"
+
+/*
+#include "common/utils/LOG/vcd_signal_dumper.h"
+#include "PHY_INTERFACE/phy_interface_extern.h"
+#include "SCHED_UE/sched_UE.h"
+#include "COMMON/mac_rrc_primitives.h"
+#include "RRC/LTE/rrc_extern.h"
+#include "RRC/L2_INTERFACE/openair_rrc_L2_interface.h"
+#include "common/utils/LOG/log.h"
+#include "UTIL/OPT/opt.h"
+#include "OCG.h"
+#include "OCG_extern.h"
+#include "PHY/LTE_ESTIMATION/lte_estimation.h"*/
+
+/* Tools */
+#include "SIMULATION/TOOLS/sim.h"	// for taus
+
+/* RRC */
+#include "NR_RACH-ConfigCommon.h"
+
+/* PHY */
+#include "PHY/NR_TRANSPORT/nr_transport_common_proto.h"
+#include "PHY/defs_common.h"
+#include "PHY/defs_nr_common.h"
+#include "PHY/NR_UE_ESTIMATION/nr_estimation.h"
+
+/* MAC */
+#include "LAYER2/NR_MAC_COMMON/nr_mac_extern.h"
+#include "NR_MAC_COMMON/nr_mac.h"
+#include "LAYER2/NR_MAC_UE/mac_proto.h"
+
+extern int64_t table_6_3_3_2_2_prachConfig_Index [256][9];
+extern int64_t table_6_3_3_2_3_prachConfig_Index [256][9];
+extern const uint16_t nr_slots_per_frame[5];
+
+//extern uint8_t  nfapi_mode;
+
+void nr_get_RA_window(NR_UE_MAC_INST_t *mac);
+
+// WIP
+// This routine implements Section 5.1.2 (UE Random Access Resource Selection)
+// and Section 5.1.3 (Random Access Preamble Transmission) from 3GPP TS 38.321
+void nr_get_prach_resources(module_id_t mod_id,
+                            int CC_id,
+                            uint8_t gNB_id,
+                            uint8_t t_id,
+                            uint8_t first_Msg3,
+                            NR_PRACH_RESOURCES_t *prach_resources,
+                            NR_RACH_ConfigDedicated_t * rach_ConfigDedicated){
+
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  NR_ServingCellConfigCommon_t *scc = mac->scc;
+  NR_RACH_ConfigCommon_t *nr_rach_ConfigCommon;
+  NR_RACH_ConfigGeneric_t *rach_ConfigGeneric;
+
+  // NR_BeamFailureRecoveryConfig_t *beam_failure_recovery_config = &mac->RA_BeamFailureRecoveryConfig; // todo
+
+  int messagePowerOffsetGroupB = 0, messageSizeGroupA, PLThreshold, sizeOfRA_PreamblesGroupA = 0, numberOfRA_Preambles, i, deltaPreamble_Msg3 = 0;
+  uint8_t noGroupB = 0, s_id, f_id, ul_carrier_id, prach_ConfigIndex, SFN_nbr, Msg3_size;
+
+  AssertFatal(scc->uplinkConfigCommon->initialUplinkBWP->rach_ConfigCommon->choice.setup != NULL, "[UE %d] FATAL nr_rach_ConfigCommon is NULL !!!\n", mod_id);
+  nr_rach_ConfigCommon = scc->uplinkConfigCommon->initialUplinkBWP->rach_ConfigCommon->choice.setup;
+  rach_ConfigGeneric = &nr_rach_ConfigCommon->rach_ConfigGeneric;
+
+  // NR_RSRP_Range_t rsrp_ThresholdSSB; // todo
+
+  ///////////////////////////////////////////////////////////
+  //////////* UE Random Access Resource Selection *//////////
+  ///////////////////////////////////////////////////////////
+
+  // todo: 
+  // - switch initialisation cases
+  // -- RA initiated by beam failure recovery operation (subclause 5.17 TS 38.321)
+  // --- SSB selection, set prach_resources->ra_PreambleIndex
+  // -- RA initiated by PDCCH: ra_preamble_index provided by PDCCH && ra_PreambleIndex != 0b000000 
+  // --- set PREAMBLE_INDEX to ra_preamble_index
+  // --- select the SSB signalled by PDCCH
+  // -- RA initiated for SI request:
+  // --- SSB selection, set prach_resources->ra_PreambleIndex
+
+  if (rach_ConfigDedicated) {
+    //////////* Contention free RA *//////////
+    // - the PRACH preamble for the UE to transmit is set through RRC configuration
+    // - this is the default mode in current implementation!
+    // Operation for contention-free RA resources when:
+    // - available SSB with SS-RSRP above rsrp-ThresholdSSB: SSB selection
+    // - available CSI-RS with CSI-RSRP above rsrp-ThresholdCSI-RS: CSI-RS selection
+    // - network controlled Mobility
+    uint8_t cfra_ssb_resource_idx = 0;
+    prach_resources->ra_PreambleIndex = rach_ConfigDedicated->cfra->resources.choice.ssb->ssb_ResourceList.list.array[cfra_ssb_resource_idx]->ra_PreambleIndex;
+    LOG_D(MAC, "[RAPROC] - Selected RA preamble index %d for contention-free random access procedure... \n", prach_resources->ra_PreambleIndex);
+  } else {
+    //////////* Contention-based RA preamble selection *//////////
+    // todo:
+    // - selection of SSB with SS-RSRP above rsrp-ThresholdSSB else select any SSB
+    // - todo determine next available PRACH occasion
+
+    // rsrp_ThresholdSSB = *nr_rach_ConfigCommon->rsrp_ThresholdSSB;
+
+    Msg3_size = mac->RA_Msg3_size;
+
+    numberOfRA_Preambles = 64;
+    if(nr_rach_ConfigCommon->totalNumberOfRA_Preambles != NULL)
+      numberOfRA_Preambles = *(nr_rach_ConfigCommon->totalNumberOfRA_Preambles);
+
+    if (!nr_rach_ConfigCommon->groupBconfigured) {
+      noGroupB = 1;
+    } else {
+      // RA preambles group B is configured 
+      // - Defining the number of RA preambles in RA Preamble Group A for each SSB */
+      sizeOfRA_PreamblesGroupA = nr_rach_ConfigCommon->groupBconfigured->numberOfRA_PreamblesGroupA;
+      switch (nr_rach_ConfigCommon->groupBconfigured->ra_Msg3SizeGroupA){
+      /* - Threshold to determine the groups of RA preambles */
+      case 0:
+      messageSizeGroupA = 56;
+      break;
+      case 1:
+      messageSizeGroupA = 144;
+      break;
+      case 2:
+      messageSizeGroupA = 208;
+      break;
+      case 3:
+      messageSizeGroupA = 256;
+      break;
+      case 4:
+      messageSizeGroupA = 282;
+      break;
+      case 5:
+      messageSizeGroupA = 480;
+      break;
+      case 6:
+      messageSizeGroupA = 640;
+      break;
+      case 7:
+      messageSizeGroupA = 800;
+      break;
+      case 8:
+      messageSizeGroupA = 1000;
+      break;
+      case 9:
+      messageSizeGroupA = 72;
+      break;
+      default:
+      AssertFatal(1 == 0,"Unknown ra_Msg3SizeGroupA %lu\n", nr_rach_ConfigCommon->groupBconfigured->ra_Msg3SizeGroupA);
+      /* todo cases 10 -15*/
+      }
+
+      /* Power offset for preamble selection in dB */
+      messagePowerOffsetGroupB = -9999;
+      switch (nr_rach_ConfigCommon->groupBconfigured->messagePowerOffsetGroupB){
+      case 0:
+      messagePowerOffsetGroupB = -9999;
+      break;
+      case 1:
+      messagePowerOffsetGroupB = 0;
+      break;
+      case 2:
+      messagePowerOffsetGroupB = 5;
+      break;
+      case 3:
+      messagePowerOffsetGroupB = 8;
+      break;
+      case 4:
+      messagePowerOffsetGroupB = 10;
+      break;
+      case 5:
+      messagePowerOffsetGroupB = 12;
+      break;
+      case 6:
+      messagePowerOffsetGroupB = 15;
+      break;
+      case 7:
+      messagePowerOffsetGroupB = 18;
+      break;
+      default:
+      AssertFatal(1 == 0,"Unknown messagePowerOffsetGroupB %lu\n", nr_rach_ConfigCommon->groupBconfigured->messagePowerOffsetGroupB);
+      }
+
+      // todo Msg3-DeltaPreamble should be provided from higher layers, otherwise is 0
+      mac->deltaPreamble_Msg3 = 0;
+      deltaPreamble_Msg3 = mac->deltaPreamble_Msg3;
+    }
+
+    PLThreshold = prach_resources->RA_PCMAX - rach_ConfigGeneric->preambleReceivedTargetPower - deltaPreamble_Msg3 - messagePowerOffsetGroupB;
+
+    /* Msg3 has not been transmitted yet */
+    if (first_Msg3 == 1) {
+      if (noGroupB == 1) {
+        // use Group A preamble
+        prach_resources->ra_PreambleIndex = (taus()) % numberOfRA_Preambles;
+        mac->RA_usedGroupA = 1;
+      } else if ((Msg3_size < messageSizeGroupA) && (get_nr_PL(mod_id, CC_id, gNB_id) > PLThreshold)) {
+        // Group B is configured and RA preamble Group A is used
+        // - todo add condition on CCCH_sdu_size for initiation by CCCH
+        prach_resources->ra_PreambleIndex = (taus()) % sizeOfRA_PreamblesGroupA;
+        mac->RA_usedGroupA = 1;
+      } else {
+        // Group B preamble is configured and used
+        // the first sizeOfRA_PreamblesGroupA RA preambles belong to RA Preambles Group A
+        // the remaining belong to RA Preambles Group B
+        prach_resources->ra_PreambleIndex = sizeOfRA_PreamblesGroupA + (taus()) % (numberOfRA_Preambles - sizeOfRA_PreamblesGroupA);
+        mac->RA_usedGroupA = 0;
+      }
+    } else { // Msg3 is being retransmitted
+      if (mac->RA_usedGroupA == 1 && noGroupB == 1) {
+        prach_resources->ra_PreambleIndex = (taus()) % numberOfRA_Preambles;
+      } else if (mac->RA_usedGroupA == 1 && noGroupB == 0){
+        prach_resources->ra_PreambleIndex = (taus()) % sizeOfRA_PreamblesGroupA;
+      } else {
+        prach_resources->ra_PreambleIndex = sizeOfRA_PreamblesGroupA + (taus()) % (numberOfRA_Preambles - sizeOfRA_PreamblesGroupA);
+      }
+    }
+    LOG_D(MAC, "[RAPROC] - Selected RA preamble index %d for contention-based random access procedure... \n", prach_resources->ra_PreambleIndex);
+  }
+
+  // todo determine next available PRACH occasion
+  // - if RA initiated for SI request and ra_AssociationPeriodIndex and si-RequestPeriod are configured
+  // - else if SSB is selected above
+  // - else if CSI-RS is selected above
+
+  /////////////////////////////////////////////////////////////////////////////
+  //////////* Random Access Preamble Transmission (5.1.3 TS 38.321) *//////////
+  /////////////////////////////////////////////////////////////////////////////
+  // todo:
+  // - condition on notification of suspending power ramping counter from lower layer (5.1.3 TS 38.321)
+  // - check if SSB or CSI-RS have not changed since the selection in the last RA Preamble tranmission
+  // - Extend RA_rnti computation (e.g. f_id selection, ul_carrier_id are hardcoded)
+
+  if (mac->RA_PREAMBLE_TRANSMISSION_COUNTER > 1)
+    mac->RA_PREAMBLE_POWER_RAMPING_COUNTER++;
+
+  prach_resources->ra_PREAMBLE_RECEIVED_TARGET_POWER = nr_get_Po_NOMINAL_PUSCH(prach_resources, mod_id, CC_id);
+
+   // RA-RNTI computation (associated to PRACH occasion in which the RA Preamble is transmitted)
+   // 1) this does not apply to contention-free RA Preamble for beam failure recovery request
+   // 2) getting star_symb, SFN_nbr from table 6.3.3.2-3 (TDD and FR1 scenario)
+
+   prach_ConfigIndex = rach_ConfigGeneric->prach_ConfigurationIndex;
+
+   // ra_RNTI computation
+   // - todo: this is for TDD FR1 only
+   // - ul_carrier_id: UL carrier used for RA preamble transmission, hardcoded for NUL carrier
+   // - f_id: index of the PRACH occasion in the frequency domain
+   // - s_id is starting symbol of the PRACH occasion [0...14]
+   // - t_id is the first slot of the PRACH occasion in a system frame [0...80]
+
+   ul_carrier_id = 0; // NUL
+   f_id = rach_ConfigGeneric->msg1_FrequencyStart;
+   SFN_nbr = table_6_3_3_2_3_prachConfig_Index[prach_ConfigIndex][4]; 
+   s_id = table_6_3_3_2_3_prachConfig_Index[prach_ConfigIndex][5];
+
+   // Pick the first slot of the PRACH occasion in a system frame
+   for (i = 0; i < 10; i++){
+    if (((SFN_nbr & (1 << i)) >> i) == 1){
+      t_id = 2*i;
+      break;
+    }
+   }
+   prach_resources->ra_RNTI = 1 + s_id + 14 * t_id + 1120 * f_id + 8960 * ul_carrier_id;
+   mac->ra_rnti = prach_resources->ra_RNTI;
+
+   LOG_D(MAC, "Computed ra_RNTI is %x \n", prach_resources->ra_RNTI);
+}
+
+// TbD: RA_attempt_number not used
+void nr_Msg1_transmitted(module_id_t mod_id, uint8_t CC_id, frame_t frameP, uint8_t gNB_id){
+  AssertFatal(CC_id == 0, "Transmission on secondary CCs is not supported yet\n");
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  mac->ra_state = WAIT_RAR;
+  // Start contention resolution timer
+  mac->RA_attempt_number++;
+}
+
+void nr_Msg3_transmitted(module_id_t mod_id, uint8_t CC_id, frame_t frameP, uint8_t gNB_id){
+  AssertFatal(CC_id == 0, "Transmission on secondary CCs is not supported yet\n");
+  LOG_D(MAC,"[UE %d][RAPROC] Frame %d : Msg3_tx: Starting contention resolution timer\n", mod_id, frameP);
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  // start contention resolution timer
+  mac->RA_contention_resolution_cnt = 0;
+  mac->RA_contention_resolution_timer_active = 1;
+}
+
+/////////////////////////////////////////////////////////////////////////
+///////* Random Access Preamble Initialization (5.1.1 TS 38.321) *///////
+/////////////////////////////////////////////////////////////////////////
+/// Handling inizialization by PDCCH order, MAC entity or RRC (TS 38.300)
+/// Only one RA procedure is ongoing at any point in time in a MAC entity
+/// the RA procedure on a SCell shall only be initiated by PDCCH order
+/// in the current implementation, RA is contention free only
+
+// WIP
+// todo TS 38.321:
+// - check if carrier to use is explicitly signalled then do (1) RA CARRIER SELECTION (SUL, NUL) (2) set PCMAX
+// - BWP operation (subclause 5.15 TS 38.321)
+// - handle initialization by beam failure recovery
+// - handle initialization by handover
+// - handle transmission on DCCH using PRACH (during handover, or sending SR for example)
+// - take into account MAC CEs in size_sdu (currently hardcoded size to 1 MAC subPDU and 1 padding subheader)
+// - fix rrc data req logic
+// - retrieve TBS
+// - add mac_rrc_nr_data_req_ue, etc ...
+// - add the backoff condition here if we have it from a previous RA reponse which failed (i.e. backoff indicator)
+
+uint8_t nr_ue_get_rach(NR_PRACH_RESOURCES_t *prach_resources,
+                       module_id_t mod_id,
+                       int CC_id,
+                       UE_MODE_t UE_mode,
+                       frame_t frame,
+                       uint8_t gNB_id,
+                       int nr_tti_tx){
+
+  NR_UE_MAC_INST_t *mac = get_mac_inst(mod_id);
+  uint8_t mac_sdus[MAX_NR_ULSCH_PAYLOAD_BYTES];
+  uint8_t lcid = UL_SCH_LCID_CCCH_MSG3, *payload;
+  //uint8_t ra_ResponseWindow;
+  uint16_t size_sdu = 0;
+  unsigned short post_padding;
+  //fapi_nr_config_request_t *cfg = &mac->phy_config.config_req;
+  NR_ServingCellConfigCommon_t *scc = mac->scc;
+  NR_RACH_ConfigCommon_t *setup = scc->uplinkConfigCommon->initialUplinkBWP->rach_ConfigCommon->choice.setup;
+  NR_RACH_ConfigGeneric_t *rach_ConfigGeneric = &setup->rach_ConfigGeneric;
+  //NR_FrequencyInfoDL_t *frequencyInfoDL = scc->downlinkConfigCommon->frequencyInfoDL;
+  NR_RACH_ConfigDedicated_t *rach_ConfigDedicated = mac->rach_ConfigDedicated;
+
+  // int32_t frame_diff = 0;
+
+  uint8_t sdu_lcids[NB_RB_MAX] = {0};
+  uint16_t sdu_lengths[NB_RB_MAX] = {0};
+  int TBS_bytes = 848, header_length_total, num_sdus, offset, preambleTransMax, mac_ce_len;
+
+  AssertFatal(CC_id == 0,"Transmission on secondary CCs is not supported yet\n");
+
+  if (UE_mode == PRACH && prach_resources->init_msg1) {
+
+    LOG_D(MAC, "nr_ue_get_rach, RA_active value: %d", mac->RA_active);
+
+    AssertFatal(setup != NULL, "[UE %d] FATAL nr_rach_ConfigCommon is NULL !!!\n", mod_id);
+
+    if (mac->RA_active == 0) {
+      /* RA not active - checking if RRC is ready to initiate the RA procedure */
+
+      LOG_I(MAC, "RA not active. Starting RA preamble initialization.\n");
+
+      mac->RA_RAPID_found = 0;
+
+      /* Set RA_PREAMBLE_POWER_RAMPING_STEP */
+      switch (rach_ConfigGeneric->powerRampingStep){ // in dB
+       case 0:
+       prach_resources->RA_PREAMBLE_POWER_RAMPING_STEP = 0;
+       break;
+       case 1:
+       prach_resources->RA_PREAMBLE_POWER_RAMPING_STEP = 2;
+       break;
+       case 2:
+       prach_resources->RA_PREAMBLE_POWER_RAMPING_STEP = 4;
+       break;
+       case 3:
+       prach_resources->RA_PREAMBLE_POWER_RAMPING_STEP = 6;
+       break;
+      }
+
+      prach_resources->RA_PREAMBLE_BACKOFF = 0;
+      prach_resources->RA_SCALING_FACTOR_BI = 1;
+      prach_resources->RA_PCMAX = 0; // currently hardcoded to 0
+
+      payload = (uint8_t*) &mac->CCCH_pdu.payload;
+
+      mac_ce_len = 0;
+      num_sdus = 1;
+      post_padding = 1;
+
+      if (0){
+        // initialisation by RRC
+        // CCCH PDU
+        // size_sdu = (uint16_t) mac_rrc_data_req_ue(mod_id,
+        //                                           CC_id,
+        //                                           frame,
+        //                                           CCCH,
+        //                                           1,
+        //                                           mac_sdus,
+        //                                           gNB_id,
+        //                                           0);
+        LOG_D(MAC,"[UE %d] Frame %d: Requested RRCConnectionRequest, got %d bytes\n", mod_id, frame, size_sdu);
+      } else {
+        // fill ulsch_buffer with random data
+        for (int i = 0; i < TBS_bytes; i++){
+          mac_sdus[i] = (unsigned char) (lrand48()&0xff);
+        }
+        //Sending SDUs with size 1
+        //Initialize elements of sdu_lcids and sdu_lengths
+        sdu_lcids[0] = lcid;
+        sdu_lengths[0] = TBS_bytes - 3 - post_padding - mac_ce_len;
+        header_length_total += 2 + (sdu_lengths[0] >= 128);
+        size_sdu += sdu_lengths[0];
+      }
+
+      //mac->RA_tx_frame = frame;
+      //mac->RA_tx_subframe = nr_tti_tx;
+      //mac->RA_backoff_frame = frame;
+      //mac->RA_backoff_subframe = nr_tti_tx;
+
+      if (size_sdu > 0) {
+
+        LOG_I(MAC, "[UE %d] Frame %d: Initialisation Random Access Procedure\n", mod_id, frame);
+
+        mac->RA_PREAMBLE_TRANSMISSION_COUNTER = 1;
+        mac->RA_PREAMBLE_POWER_RAMPING_COUNTER = 1;
+        mac->RA_Msg3_size = size_sdu + sizeof(NR_MAC_SUBHEADER_SHORT) + sizeof(NR_MAC_SUBHEADER_SHORT);
+        mac->RA_prachMaskIndex = 0;
+        // todo: add the backoff condition here
+        mac->RA_backoff_cnt = 0;
+        mac->RA_active = 1;
+        prach_resources->Msg3 = payload;
+
+        nr_get_RA_window(mac);
+
+        // Fill in preamble and PRACH resources
+        if (mac->generate_nr_prach)
+          nr_get_prach_resources(mod_id, CC_id, gNB_id, nr_tti_tx, 1, prach_resources, rach_ConfigDedicated);
+
+        offset = nr_generate_ulsch_pdu((uint8_t *) mac_sdus,              // sdus buffer
+                                       (uint8_t *) payload,               // UL MAC pdu pointer
+                                       num_sdus,                          // num sdus
+                                       sdu_lengths,                       // sdu length
+                                       sdu_lcids,                         // sdu lcid
+                                       0,                                 // power headroom
+                                       0,                                 // crnti
+                                       0,                                 // truncated bsr
+                                       0,                                 // short bsr
+                                       0,                                 // long_bsr
+                                       post_padding,
+                                       0);
+
+        // Padding: fill remainder with 0
+        if (post_padding > 0){
+          for (int j = 0; j < (TBS_bytes - offset); j++)
+            payload[offset + j] = 0; // mac_pdu[offset + j] = 0;
+        }
+      } 
+    } else { // RACH is active
+
+      ////////////////////////////////////////////////////////////////
+      /////* Random Access Response reception (5.1.4 TS 38.321) */////
+      ////////////////////////////////////////////////////////////////
+      // Handling ra_responseWindow, RA_PREAMBLE_TRANSMISSION_COUNTER
+      // and RA_backoff_cnt
+      // todo:
+      // - handle beam failure recovery request
+      // - handle DL assignment on PDCCH for RA-RNTI
+      // - handle backoff and raResponseWindow params
+      // - disabled contention resolution as OAI NSA is contention-free based
+
+      // LOG_D(MAC, "[MAC][UE %d][RAPROC] frame %d, subframe %d: RA Active, window cnt %d (RA_tx_frame %d, RA_tx_subframe %d)\n",
+      //   mod_id, frame, nr_tti_tx, mac->RA_window_cnt, mac->RA_tx_frame, mac->RA_tx_subframe);
+
+      if (mac->RA_BI_found){
+        prach_resources->RA_PREAMBLE_BACKOFF = prach_resources->RA_SCALING_FACTOR_BI * mac->RA_backoff_indicator;
+      } else {
+        prach_resources->RA_PREAMBLE_BACKOFF = 0;
+      }
+
+      if (mac->RA_window_cnt >= 0 && mac->RA_RAPID_found == 1) {
+
+        // mac->ra_state = WAIT_CONTENTION_RESOLUTION;
+        LOG_I(MAC, "[MAC][UE %d][RAPROC] Frame %d: subframe %d: RAR successfully received \n", mod_id, frame, nr_tti_tx);
+
+      } else if (mac->RA_window_cnt == 0 && !mac->RA_RAPID_found) {
+
+        LOG_I(MAC, "[MAC][UE %d][RAPROC] Frame %d: subframe %d: RAR reception failed \n", mod_id, frame, nr_tti_tx);
+
+        mac->ra_state = RA_UE_IDLE;
+        mac->RA_PREAMBLE_TRANSMISSION_COUNTER++;
+
+        preambleTransMax = -1;
+        switch (rach_ConfigGeneric->preambleTransMax) {
+        case 0:
+          preambleTransMax = 3;
+          break;
+        case 1:
+          preambleTransMax = 4;
+          break;
+        case 2:
+          preambleTransMax = 5;
+          break;
+        case 3:
+          preambleTransMax = 6;
+          break;
+        case 4:
+          preambleTransMax = 7;
+          break;
+        case 5:
+          preambleTransMax = 8;
+          break;
+        case 6:
+          preambleTransMax = 10;
+          break;
+        case 7:
+          preambleTransMax = 20;
+          break;
+        case 8:
+          preambleTransMax = 50;
+          break;
+        case 9:
+          preambleTransMax = 100;
+          break;
+        case 10:
+          preambleTransMax = 200;
+          break;
+        }
+
+        // Resetting RA window
+        nr_get_RA_window(mac);
+
+        if (mac->RA_PREAMBLE_TRANSMISSION_COUNTER == preambleTransMax + 1){
+          LOG_D(MAC, "[UE %d] Frame %d: Maximum number of RACH attempts (%d)\n", mod_id, frame, preambleTransMax);
+          mac->RA_backoff_cnt = rand() % (prach_resources->RA_PREAMBLE_BACKOFF + 1);
+          mac->RA_PREAMBLE_TRANSMISSION_COUNTER = 1;
+          prach_resources->RA_PREAMBLE_POWER_RAMPING_STEP += prach_resources->RA_PREAMBLE_POWER_RAMPING_STEP << 1; // 2 dB increment
+          prach_resources->ra_PREAMBLE_RECEIVED_TARGET_POWER = nr_get_Po_NOMINAL_PUSCH(prach_resources, mod_id, CC_id);
+        }
+
+        // compute backoff parameters
+        // if (mac->RA_backoff_cnt > 0){
+        //   frame_diff = (sframe_t) frame - mac->RA_backoff_frame;
+        //   if (frame_diff < 0) frame_diff = -frame_diff;
+        //   mac->RA_backoff_frame = frame;
+        //   mac->RA_backoff_subframe = nr_tti_tx;
+        // }
+        // compute RA window parameters
+        // if (mac->RA_window_cnt > 0){
+        //   frame_diff = (frame_t) frame - mac->RA_tx_frame;
+        //   if (frame_diff < 0) frame_diff = -frame_diff;
+        //   mac->RA_window_cnt -= ((10 * frame_diff) + (nr_tti_tx - mac->RA_tx_subframe));
+        //   LOG_D(MAC, "[MAC][UE %d][RAPROC] Frame %d, subframe %d: RA Active, adjusted window cnt %d\n", mod_id, frame, nr_tti_tx, mac->RA_window_cnt);
+        // }
+
+        // mac->RA_tx_frame = frame;
+        // mac->RA_tx_subframe = nr_tti_tx;
+
+        // Fill in preamble and PRACH resources
+        if (mac->generate_nr_prach)
+          nr_get_prach_resources(mod_id, CC_id, gNB_id, nr_tti_tx, 0, prach_resources, rach_ConfigDedicated);
+
+      } else {
+
+        mac->RA_window_cnt--;
+
+        LOG_I(MAC, "[MAC][UE %d][RAPROC] Frame %d: subframe %d: RAR reception not successful, (RA window count %d) \n",
+          mod_id,
+          frame,
+          nr_tti_tx,
+          mac->RA_window_cnt);
+
+        // Fill in preamble and PRACH resources
+        if (mac->generate_nr_prach)
+          nr_get_prach_resources(mod_id, CC_id, gNB_id, nr_tti_tx, 0, prach_resources, rach_ConfigDedicated);
+
+      }
+    }
+  } else if (UE_mode == PUSCH) {
+    LOG_D(MAC, "[UE %d] FATAL: Should not have checked for RACH in PUSCH yet ...", mod_id);
+    AssertFatal(1 == 0, "");
+  }
+ return mac->generate_nr_prach;
+}
+
+void nr_get_RA_window(NR_UE_MAC_INST_t *mac){
+
+  uint8_t mu, ra_ResponseWindow;
+  NR_ServingCellConfigCommon_t *scc = mac->scc;
+  NR_RACH_ConfigCommon_t *setup = scc->uplinkConfigCommon->initialUplinkBWP->rach_ConfigCommon->choice.setup;
+  NR_RACH_ConfigGeneric_t *rach_ConfigGeneric = &setup->rach_ConfigGeneric;
+  NR_FrequencyInfoDL_t *frequencyInfoDL = scc->downlinkConfigCommon->frequencyInfoDL;
+
+  ra_ResponseWindow = rach_ConfigGeneric->ra_ResponseWindow;
+
+  if (setup->msg1_SubcarrierSpacing)
+    mu = *setup->msg1_SubcarrierSpacing;
+  else
+    mu = frequencyInfoDL->scs_SpecificCarrierList.list.array[0]->subcarrierSpacing;
+
+  mac->RA_window_cnt = mac->RA_offset*nr_slots_per_frame[mu]; // taking into account the 2 frames gap introduced by OAI gNB
+
+  switch (ra_ResponseWindow) {
+    case 0:
+      mac->RA_window_cnt += 1;
+      break;
+    case 1:
+      mac->RA_window_cnt += 2;
+      break;
+    case 2:
+      mac->RA_window_cnt += 4;
+      break;
+    case 3:
+      mac->RA_window_cnt += 8;
+      break;
+    case 4:
+      mac->RA_window_cnt += 10;
+      break;
+    case 5:
+      mac->RA_window_cnt += 20;
+      break;
+    case 6:
+      mac->RA_window_cnt += 40;
+      break;
+    case 7:
+      mac->RA_window_cnt += 80;
+      break;
+  }
+}
diff --git a/openair2/LAYER2/NR_MAC_UE/rar_tools_nrUE.c b/openair2/LAYER2/NR_MAC_UE/rar_tools_nrUE.c
new file mode 100644
index 0000000000000000000000000000000000000000..31a865f3176054d39d6393ee84c89599c6596a3c
--- /dev/null
+++ b/openair2/LAYER2/NR_MAC_UE/rar_tools_nrUE.c
@@ -0,0 +1,209 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file rar_tools_nrUE.c
+ * \brief RA tools for NR UE
+ * \author Guido Casati
+ * \date 2019
+ * \version 1.0
+ * @ingroup _mac
+
+ */
+
+/* Sim */
+#include "SIMULATION/TOOLS/sim.h"
+
+/* Utils */
+#include "common/utils/LOG/log.h"
+#include "OCG.h"
+#include "OCG_extern.h"
+#include "UTIL/OPT/opt.h"
+
+/* Common */
+#include "common/ran_context.h"
+
+/* MAC */
+#include "NR_MAC_UE/mac.h"
+#include "NR_MAC_UE/mac_proto.h"
+#include "NR_MAC_COMMON/nr_mac_extern.h"
+#include <common/utils/nr/nr_common.h>
+
+#define DEBUG_RAR
+
+// table 7.2-1 TS 38.321
+uint16_t table_7_2_1[16] = {
+  5,    // row index 0
+  10,   // row index 1
+  20,   // row index 2
+  30,   // row index 3
+  40,   // row index 4
+  60,   // row index 5
+  80,   // row index 6
+  120,  // row index 7
+  160,  // row index 8
+  240,  // row index 9
+  320,  // row index 10
+  480,  // row index 11
+  960,  // row index 12
+  1920, // row index 13
+};
+
+/////////////////////////////////////
+//    Random Access Response PDU   //
+//         TS 38.213 ch 8.2        //
+//        TS 38.321 ch 6.2.3       //
+/////////////////////////////////////
+//| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |// bit-wise
+//| E | T |       R A P I D       |//
+//| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |//
+//| R |           T A             |//
+//|       T A         |  UL grant |//
+//|            UL grant           |//
+//|            UL grant           |//
+//|            UL grant           |//
+//|         T C - R N T I         |//
+//|         T C - R N T I         |//
+/////////////////////////////////////
+//       UL grant  (27 bits)       //
+/////////////////////////////////////
+//| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |// bit-wise
+//|-------------------|FHF|F_alloc|//
+//|        Freq allocation        |//
+//|    F_alloc    |Time allocation|//
+//|      MCS      |     TPC   |CSI|//
+/////////////////////////////////////
+// WIP todo:
+// - apply UL grant freq alloc & time alloc as per 8.2 TS 38.213
+// - apply tpc command, csi req, mcs
+uint16_t nr_ue_process_rar(module_id_t mod_id,
+                           int CC_id,
+                           frame_t frameP,
+                           uint8_t * dlsch_buffer,
+                           rnti_t * t_crnti,
+                           uint8_t preamble_index,
+                           uint8_t * selected_rar_buffer){
+
+    NR_UE_MAC_INST_t *ue_mac = get_mac_inst(mod_id);
+    NR_RA_HEADER_RAPID *rarh = (NR_RA_HEADER_RAPID *) dlsch_buffer; // RAR subheader pointer
+    NR_MAC_RAR *rar = (NR_MAC_RAR *) (dlsch_buffer + 1);            // RAR subPDU pointer
+    uint8_t n_subPDUs = 0;        // number of RAR payloads
+    uint8_t n_subheaders = 0;     // number of MAC RAR subheaders
+    //uint8_t best_rx_rapid = -1;   // the closest RAPID receive from all RARs
+    unsigned char freq_hopping, msg3_t_alloc, mcs, tpc_command, csi_req;
+    uint16_t ta_command = 0, msg3_f_alloc, bwp_size;
+    int f_alloc, mask;
+
+    AssertFatal(CC_id == 0, "RAR reception on secondary CCs is not supported yet\n");
+
+    while (1) {
+      n_subheaders++;
+      if (rarh->T == 1) {
+        n_subPDUs++;
+        LOG_D(MAC, "[UE %d][RAPROC] Got RAPID RAR subPDU\n", mod_id);
+      } else {
+        n_subPDUs++;
+        ue_mac->RA_backoff_indicator = table_7_2_1[((NR_RA_HEADER_BI *)rarh)->BI];
+        ue_mac->RA_BI_found = 1;
+        LOG_D(MAC, "[UE %d][RAPROC] Got BI RAR subPDU %d\n", mod_id, ue_mac->RA_backoff_indicator);
+      }
+      if (rarh->RAPID == preamble_index) {
+        LOG_D(PHY, "[UE %d][RAPROC] Found RAR with the intended RAPID %d\n", mod_id, rarh->RAPID);
+        rar = (NR_MAC_RAR *) (dlsch_buffer + n_subheaders + (n_subPDUs - 1) * sizeof(NR_MAC_RAR));
+        ue_mac->RA_RAPID_found = 1;
+        break;
+      }
+      if (rarh->E == 0) {
+        LOG_I(PHY, "No RAR found with the intended RAPID. \n");
+        break;
+      } else {
+        rarh += sizeof(NR_MAC_RAR) + 1;
+      }
+    };
+
+    LOG_D(MAC, "number of RAR subheader %d; number of RAR pyloads %d\n", n_subheaders, n_subPDUs);
+
+    // LOG_I(MAC, "[UE %d][RAPROC] Frame %d Received RAR (%02x|%02x.%02x.%02x.%02x.%02x.%02x) for preamble %d/%d\n",
+    //   mod_id, frameP, *(uint8_t *) rarh, rar[0], rar[1], rar[2], rar[3], rar[4], rar[5], rarh->RAPID, preamble_index);
+
+    if (ue_mac->RA_RAPID_found) {
+      // TC-RNTI
+      *t_crnti = rar->TCRNTI_2 + (rar->TCRNTI_1 << 8);
+      ue_mac->t_crnti = *t_crnti;
+      ue_mac->rnti_type = NR_RNTI_TC;
+      // TA command
+      ta_command = rar->TA2 + (rar->TA1 << 5);
+      // CSI
+      csi_req = (unsigned char) (rar->UL_GRANT_4 & 0x01);
+      // TPC
+      tpc_command = (unsigned char) ((rar->UL_GRANT_4 >> 1) & 0x07);
+      switch (tpc_command){
+        case 0:
+          ue_mac->Msg3_TPC = -6;
+          break;
+        case 1:
+          ue_mac->Msg3_TPC = -4;
+          break;
+        case 2:
+          ue_mac->Msg3_TPC = -2;
+          break;
+        case 3:
+          ue_mac->Msg3_TPC = 0;
+          break;
+        case 4:
+          ue_mac->Msg3_TPC = 2;
+          break;
+        case 5:
+          ue_mac->Msg3_TPC = 4;
+          break;
+        case 6:
+          ue_mac->Msg3_TPC = 6;
+          break;
+        case 7:
+          ue_mac->Msg3_TPC = 8;
+          break;
+      }
+      //MCS
+      mcs = (unsigned char) (rar->UL_GRANT_4 >> 4);
+      // time and frequency alloc
+      bwp_size = NRRIV2BW(ue_mac->ULbwp[0]->bwp_Common->genericParameters.locationAndBandwidth,275);
+      msg3_t_alloc = (unsigned char) (rar->UL_GRANT_3 & 0x07);
+      msg3_f_alloc = (uint16_t) ((rar->UL_GRANT_3 >> 4) | (rar->UL_GRANT_2 << 4) | ((rar->UL_GRANT_1 & 0x03) << 12));
+
+      if (bwp_size < 180)
+        mask = (1 << ((int) ceil(log2((bwp_size*(bwp_size+1))>>1)))) - 1;
+      else
+        mask = (1 << (28 - (int)(ceil(log2((bwp_size*(bwp_size+1))>>1))))) - 1;
+
+      f_alloc = msg3_f_alloc & mask;
+
+      // frequency hopping flag
+      freq_hopping = (unsigned char) (rar->UL_GRANT_1 >> 2);
+    } else {
+      ue_mac->t_crnti = 0;
+      ta_command = (0xffff);
+    }
+
+    // move the selected RAR to the front of the RA_PDSCH buffer
+    memcpy((void *) (selected_rar_buffer + 0), (void *) rarh, 1);
+    memcpy((void *) (selected_rar_buffer + 1), (void *) rar, sizeof(NR_MAC_RAR));
+
+    return ta_command;
+}
diff --git a/openair2/RRC/NR/rrc_gNB_GTPV1U.c b/openair2/RRC/NR/rrc_gNB_GTPV1U.c
new file mode 100644
index 0000000000000000000000000000000000000000..9ab1bbf43a0512d5351075bacc7ecc6b62f0ac63
--- /dev/null
+++ b/openair2/RRC/NR/rrc_gNB_GTPV1U.c
@@ -0,0 +1,94 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file rrc_gNB_GTPV1U.c
+ * \brief rrc GTPV1U procedures for gNB
+ * \author Lionel GAUTHIER, Panos MATZAKOS
+ * \version 1.0
+ * \company Eurecom
+ * \email: lionel.gauthier@eurecom.fr, panagiotis.matzakos@eurecom.fr
+ */
+
+# include "rrc_defs.h"
+# include "rrc_extern.h"
+# include "RRC/LTE/MESSAGES/asn1_msg.h"
+# include "rrc_eNB_GTPV1U.h"
+# include "rrc_eNB_UE_context.h"
+# include "msc.h"
+# include "openair2/RRC/NR/rrc_gNB_UE_context.h"
+
+//# if defined(ENABLE_ITTI)
+#   include "asn1_conversions.h"
+#   include "intertask_interface.h"
+//#endif
+
+# include "common/ran_context.h"
+
+extern RAN_CONTEXT_t RC;
+
+int
+rrc_gNB_process_GTPV1U_CREATE_TUNNEL_RESP(
+  const protocol_ctxt_t *const ctxt_pP,
+  const gtpv1u_enb_create_tunnel_resp_t *const create_tunnel_resp_pP,
+  uint8_t                         *inde_list
+) {
+  rnti_t                         rnti;
+  int                            i;
+  struct rrc_gNB_ue_context_s   *ue_context_p = NULL;
+
+  if (create_tunnel_resp_pP) {
+    LOG_D(RRC, PROTOCOL_RRC_CTXT_UE_FMT" RX CREATE_TUNNEL_RESP num tunnels %u \n",
+          PROTOCOL_RRC_CTXT_UE_ARGS(ctxt_pP),
+          create_tunnel_resp_pP->num_tunnels);
+    rnti = create_tunnel_resp_pP->rnti;
+    ue_context_p = rrc_gNB_get_ue_context(
+                     RC.nrrrc[ctxt_pP->module_id],
+                     ctxt_pP->rnti);
+
+    for (i = 0; i < create_tunnel_resp_pP->num_tunnels; i++) {
+      ue_context_p->ue_context.gnb_gtp_teid[inde_list[i]]  = create_tunnel_resp_pP->enb_S1u_teid[i];
+      ue_context_p->ue_context.gnb_gtp_addrs[inde_list[i]] = create_tunnel_resp_pP->enb_addr;
+      ue_context_p->ue_context.gnb_gtp_ebi[inde_list[i]]   = create_tunnel_resp_pP->eps_bearer_id[i];
+      LOG_I(RRC, PROTOCOL_RRC_CTXT_UE_FMT" rrc_eNB_process_GTPV1U_CREATE_TUNNEL_RESP tunnel (%u, %u) bearer UE context index %u, msg index %u, id %u, gtp addr len %d \n",
+            PROTOCOL_RRC_CTXT_UE_ARGS(ctxt_pP),
+            create_tunnel_resp_pP->enb_S1u_teid[i],
+            ue_context_p->ue_context.gnb_gtp_teid[inde_list[i]],
+            inde_list[i],
+	    i,
+            create_tunnel_resp_pP->eps_bearer_id[i],
+	    create_tunnel_resp_pP->enb_addr.length);
+    }
+
+	MSC_LOG_RX_MESSAGE(
+			  MSC_RRC_ENB,
+			  MSC_GTPU_ENB,
+			  NULL,0,
+			  MSC_AS_TIME_FMT" CREATE_TUNNEL_RESP RNTI %"PRIx16" ntuns %u ebid %u enb-s1u teid %u",
+			  0,0,rnti,
+			  create_tunnel_resp_pP->num_tunnels,
+			  ue_context_p->ue_context.gnb_gtp_ebi[0],
+			  ue_context_p->ue_context.gnb_gtp_teid[0]);
+        (void)rnti; /* avoid gcc warning "set but not used" */
+    return 0;
+  } else {
+    return -1;
+  }
+}
diff --git a/openair2/RRC/NR/rrc_gNB_GTPV1U.h b/openair2/RRC/NR/rrc_gNB_GTPV1U.h
new file mode 100644
index 0000000000000000000000000000000000000000..caff825a7a6283b0b5d8f2670909a24f05b804d6
--- /dev/null
+++ b/openair2/RRC/NR/rrc_gNB_GTPV1U.h
@@ -0,0 +1,39 @@
+/*
+ * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file rrc_gNB_GTPV1U.h
+ * \brief rrc GTPV1U procedures for gNB
+ * \author Lionel GAUTHIER, Panos MATZAKOS
+ * \version 1.0
+ * \company Eurecom
+ * \email: lionel.gauthier@eurecom.fr, panagiotis.matzakos@eurecom.fr
+ */
+
+#ifndef RRC_GNB_GTPV1U_H_
+#define RRC_GNB_GTPV1U_H_
+
+
+int
+rrc_gNB_process_GTPV1U_CREATE_TUNNEL_RESP(
+  const protocol_ctxt_t *const ctxt_pP,
+  const gtpv1u_enb_create_tunnel_resp_t *const create_tunnel_resp_pP,
+  uint8_t                         *inde_list
+);
diff --git a/openair3/GTPV1-U/gtpv1u_gNB.c b/openair3/GTPV1-U/gtpv1u_gNB.c
new file mode 100644
index 0000000000000000000000000000000000000000..f13bf13794771324bf32123f84c25c06f5cf370d
--- /dev/null
+++ b/openair3/GTPV1-U/gtpv1u_gNB.c
@@ -0,0 +1,311 @@
+/* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file gtpv1u_gNB.c
+ * \brief
+ * \author Sebastien ROUX, Lionel GAUTHIER, Navid Nikaein, Panos MATZAKOS
+ * \version 1.0
+ * \company Eurecom
+ * \email: lionel.gauthier@eurecom.fr
+ */
+#include <stdio.h>
+#include <errno.h>
+
+#include "mme_config.h"
+#include "intertask_interface.h"
+#include "msc.h"
+
+#include "gtpv1u.h"
+#include "NwGtpv1u.h"
+#include "NwGtpv1uMsg.h"
+#include "NwGtpv1uPrivate.h"
+#include "NwLog.h"
+#include "gtpv1u_eNB_defs.h"
+#include "gtpv1_u_messages_types.h"
+#include "udp_eNB_task.h"
+#include "common/utils/LOG/log.h"
+#include "COMMON/platform_types.h"
+#include "COMMON/platform_constants.h"
+#include "common/utils/LOG/vcd_signal_dumper.h"
+#include "common/ran_context.h"
+#include "gtpv1u_eNB_defs.h"
+#include "gtpv1u_eNB_task.h"
+#include "gtpv1u_gNB_task.h"
+#include "rrc_eNB_GTPV1U.h"
+
+#undef GTP_DUMP_SOCKET
+
+extern unsigned char NB_eNB_INST;
+
+extern RAN_CONTEXT_t RC;
+
+extern NwGtpv1uRcT gtpv1u_eNB_send_udp_msg(
+		  NwGtpv1uUdpHandleT udpHandle,
+		  uint8_t *buffer,
+		  uint32_t buffer_len,
+		  uint32_t buffer_offset,
+		  uint32_t peerIpAddr,
+		  uint16_t peerPort);
+
+extern NwGtpv1uRcT gtpv1u_eNB_log_request(NwGtpv1uLogMgrHandleT hLogMgr,
+        uint32_t logLevel,
+        NwCharT *file,
+        uint32_t line,
+        NwCharT *logStr);
+
+static NwGtpv1uRcT gtpv1u_start_timer_wrapper(
+  NwGtpv1uTimerMgrHandleT tmrMgrHandle,
+  uint32_t                  timeoutSec,
+  uint32_t                  timeoutUsec,
+  uint32_t                  tmrType,
+  void                   *timeoutArg,
+  NwGtpv1uTimerHandleT   *hTmr) {
+  NwGtpv1uRcT rc = NW_GTPV1U_OK;
+  long        timer_id;
+
+  if (tmrType == NW_GTPV1U_TMR_TYPE_ONE_SHOT) {
+    timer_setup(timeoutSec,
+                timeoutUsec,
+                TASK_GTPV1_U,
+                INSTANCE_DEFAULT,
+                TIMER_ONE_SHOT,
+                timeoutArg,
+                &timer_id);
+  } else {
+    timer_setup(timeoutSec,
+                timeoutUsec,
+                TASK_GTPV1_U,
+                INSTANCE_DEFAULT,
+                TIMER_PERIODIC,
+                timeoutArg,
+                &timer_id);
+  }
+
+  return rc;
+}
+
+
+static NwGtpv1uRcT
+gtpv1u_stop_timer_wrapper(
+  NwGtpv1uTimerMgrHandleT tmrMgrHandle,
+  NwGtpv1uTimerHandleT hTmr) {
+  NwGtpv1uRcT rc = NW_GTPV1U_OK;
+  return rc;
+}
+
+/* Callback called when a gtpv1u message arrived on UDP interface */
+NwGtpv1uRcT gtpv1u_gNB_process_stack_req(
+  NwGtpv1uUlpHandleT hUlp,
+  NwGtpv1uUlpApiT   *pUlpApi) {
+  boolean_t           result             = FALSE;
+  teid_t              teid               = 0;
+  hashtable_rc_t      hash_rc            = HASH_TABLE_KEY_NOT_EXISTS;
+  gtpv1u_teid_data_t *gtpv1u_teid_data_p = NULL;
+  protocol_ctxt_t     ctxt;
+  NwGtpv1uRcT         rc;
+
+  switch(pUlpApi->apiType) {
+    /* Here there are two type of messages handled:
+     * - T-PDU
+     * - END-MARKER
+     */
+    case NW_GTPV1U_ULP_API_RECV_TPDU: {
+      uint8_t              buffer[4096];
+      uint32_t             buffer_len;
+      //uint16_t             msgType = NW_GTP_GPDU;
+      //NwGtpv1uMsgT     *pMsg = NULL;
+      /* Nw-gptv1u stack has processed a PDU. we can schedule it to PDCP
+       * for transmission.
+       */
+      teid = pUlpApi->apiInfo.recvMsgInfo.teid;
+      //pMsg = (NwGtpv1uMsgT *) pUlpApi->apiInfo.recvMsgInfo.hMsg;
+      //msgType = pMsg->msgType;
+
+      if (NW_GTPV1U_OK != nwGtpv1uMsgGetTpdu(pUlpApi->apiInfo.recvMsgInfo.hMsg,
+                                             buffer, &buffer_len)) {
+        LOG_E(GTPU, "Error while retrieving T-PDU");
+      }
+
+      itti_free(TASK_UDP, ((NwGtpv1uMsgT *)pUlpApi->apiInfo.recvMsgInfo.hMsg)->msgBuf);
+#if defined(GTP_DUMP_SOCKET) && GTP_DUMP_SOCKET > 0
+      gtpv1u_eNB_write_dump_socket(buffer,buffer_len);
+#endif
+      rc = nwGtpv1uMsgDelete(RC.gtpv1u_data_g->gtpv1u_stack,
+                             pUlpApi->apiInfo.recvMsgInfo.hMsg);
+
+      if (rc != NW_GTPV1U_OK) {
+        LOG_E(GTPU, "nwGtpv1uMsgDelete failed: 0x%x\n", rc);
+      }
+
+      hash_rc = hashtable_get(RC.gtpv1u_data_g->teid_mapping, teid, (void **)&gtpv1u_teid_data_p);
+
+      if (hash_rc == HASH_TABLE_OK) {
+#if defined(LOG_GTPU) && LOG_GTPU > 0
+        LOG_D(GTPU, "Received T-PDU from gtpv1u stack teid  %u size %d -> enb module id %u ue module id %u rab id %u\n",
+              teid,
+              buffer_len,
+              gtpv1u_teid_data_p->enb_id,
+              gtpv1u_teid_data_p->ue_id,
+              gtpv1u_teid_data_p->eps_bearer_id);
+#endif
+        //warning "LG eps bearer mapping to DRB id to do (offset -4)"
+        PROTOCOL_CTXT_SET_BY_MODULE_ID(&ctxt, gtpv1u_teid_data_p->enb_id, ENB_FLAG_YES,  gtpv1u_teid_data_p->ue_id, 0, 0,gtpv1u_teid_data_p->enb_id);
+        MSC_LOG_TX_MESSAGE(
+          MSC_GTPU_ENB,
+          MSC_PDCP_ENB,
+          NULL,0,
+          MSC_AS_TIME_FMT" DATA-REQ rb %u size %u",
+          0,0,
+          (gtpv1u_teid_data_p->eps_bearer_id) ? gtpv1u_teid_data_p->eps_bearer_id - 4: 5-4,
+          buffer_len);
+
+        result = pdcp_data_req(
+                   &ctxt,
+                   SRB_FLAG_NO,
+                   (gtpv1u_teid_data_p->eps_bearer_id) ? gtpv1u_teid_data_p->eps_bearer_id - 4: 5-4,
+                   0, // mui
+                   SDU_CONFIRM_NO, // confirm
+                   buffer_len,
+                   buffer,
+                   PDCP_TRANSMISSION_MODE_DATA,NULL, NULL
+                 );
+
+        if ( result == FALSE ) {
+          if (ctxt.configured == FALSE )
+            LOG_W(GTPU, "gNB node PDCP data request failed, cause: [UE:%x]RB is not configured!\n", ctxt.rnti) ;
+          else
+            LOG_W(GTPU, "PDCP data request failed\n");
+
+          return NW_GTPV1U_FAILURE;
+        }
+      } else {
+        LOG_W(GTPU, "Received T-PDU from gtpv1u stack teid %u unknown size %u", teid, buffer_len);
+      }
+    }
+    break;
+
+    default: {
+      LOG_E(GTPU, "Received undefined UlpApi (%02x) from gtpv1u stack!\n",
+            pUlpApi->apiType);
+    }
+  } // end of switch
+
+  return NW_GTPV1U_OK;
+}
+
+int gtpv1u_gNB_init(void) {
+  NwGtpv1uRcT             rc = NW_GTPV1U_FAILURE;
+  NwGtpv1uUlpEntityT      ulp;
+  NwGtpv1uUdpEntityT      udp;
+  NwGtpv1uLogMgrEntityT   log;
+  NwGtpv1uTimerMgrEntityT tmr;
+  //  enb_properties_p = enb_config_get()->properties[0];
+  RC.gtpv1u_data_g = (gtpv1u_data_t *)calloc(sizeof(gtpv1u_data_t),1);
+  LOG_I(GTPU, "Initializing GTPU stack %p\n",&RC.gtpv1u_data_g);
+  //gtpv1u_data_g.gtpv1u_stack;
+  /* Initialize UE hashtable */
+  RC.gtpv1u_data_g->ue_mapping      = hashtable_create (32, NULL, NULL);
+  AssertFatal(RC.gtpv1u_data_g->ue_mapping != NULL, " ERROR Initializing TASK_GTPV1_U task interface: in hashtable_create returned %p\n", RC.gtpv1u_data_g->ue_mapping);
+  RC.gtpv1u_data_g->teid_mapping    = hashtable_create (256, NULL, NULL);
+  AssertFatal(RC.gtpv1u_data_g->teid_mapping != NULL, " ERROR Initializing TASK_GTPV1_U task interface: in hashtable_create\n");
+  //  RC.gtpv1u_data_g.enb_ip_address_for_S1u_S12_S4_up         = enb_properties_p->enb_ipv4_address_for_S1U;
+  //gtpv1u_data_g.udp_data;
+  RC.gtpv1u_data_g->seq_num         = 0;
+  RC.gtpv1u_data_g->restart_counter = 0;
+
+  /* Initializing GTPv1-U stack */
+  if ((rc = nwGtpv1uInitialize(&RC.gtpv1u_data_g->gtpv1u_stack, GTPU_STACK_ENB)) != NW_GTPV1U_OK) {
+    LOG_E(GTPU, "Failed to setup nwGtpv1u stack %x\n", rc);
+    return -1;
+  }
+
+  if ((rc = nwGtpv1uSetLogLevel(RC.gtpv1u_data_g->gtpv1u_stack,
+                                NW_LOG_LEVEL_DEBG)) != NW_GTPV1U_OK) {
+    LOG_E(GTPU, "Failed to setup loglevel for stack %x\n", rc);
+    return -1;
+  }
+
+  /* Set the ULP API callback. Called once message have been processed by the
+   * nw-gtpv1u stack.
+   */
+  ulp.ulpReqCallback = gtpv1u_gNB_process_stack_req;
+  memset((void *)&(ulp.hUlp), 0, sizeof(NwGtpv1uUlpHandleT));
+
+  if ((rc = nwGtpv1uSetUlpEntity(RC.gtpv1u_data_g->gtpv1u_stack, &ulp)) != NW_GTPV1U_OK) {
+    LOG_E(GTPU, "nwGtpv1uSetUlpEntity: %x", rc);
+    return -1;
+  }
+
+  /* nw-gtpv1u stack requires an udp callback to send data over UDP.
+   * We provide a wrapper to UDP task.
+   */
+  udp.udpDataReqCallback = gtpv1u_eNB_send_udp_msg;
+  memset((void *)&(udp.hUdp), 0, sizeof(NwGtpv1uUdpHandleT));
+
+  if ((rc = nwGtpv1uSetUdpEntity(RC.gtpv1u_data_g->gtpv1u_stack, &udp)) != NW_GTPV1U_OK) {
+    LOG_E(GTPU, "nwGtpv1uSetUdpEntity: %x", rc);
+    return -1;
+  }
+
+  log.logReqCallback = gtpv1u_eNB_log_request;
+  memset((void *)&(log.logMgrHandle), 0, sizeof(NwGtpv1uLogMgrHandleT));
+
+  if ((rc = nwGtpv1uSetLogMgrEntity(RC.gtpv1u_data_g->gtpv1u_stack, &log)) != NW_GTPV1U_OK) {
+    LOG_E(GTPU, "nwGtpv1uSetLogMgrEntity: %x", rc);
+    return -1;
+  }
+
+  /* Timer interface is more complicated as both wrappers doesn't send a message
+   * to the timer task but call the timer API functions start/stop timer.
+   */
+  tmr.tmrMgrHandle     = 0;
+  tmr.tmrStartCallback = gtpv1u_start_timer_wrapper;
+  tmr.tmrStopCallback  = gtpv1u_stop_timer_wrapper;
+
+  if ((rc = nwGtpv1uSetTimerMgrEntity(RC.gtpv1u_data_g->gtpv1u_stack, &tmr)) != NW_GTPV1U_OK) {
+    LOG_E(GTPU, "nwGtpv1uSetTimerMgrEntity: %x", rc);
+    return -1;
+  }
+
+#if defined(GTP_DUMP_SOCKET) && GTP_DUMP_SOCKET > 0
+
+  if ((ret = gtpv1u_eNB_create_dump_socket()) < 0) {
+    return -1;
+  }
+
+#endif
+  LOG_D(GTPU, "Initializing GTPV1U interface for eNB: DONE\n");
+  return 0;
+}
+
+void *gtpv1u_gNB_task(void *args) {
+  int rc = 0;
+  rc = gtpv1u_gNB_init();
+  AssertFatal(rc == 0, "gtpv1u_eNB_init Failed");
+  itti_mark_task_ready(TASK_GTPV1_U);
+  MSC_START_USE();
+
+  while(1) {
+    (void) gtpv1u_eNB_process_itti_msg (NULL);
+  }
+
+  return NULL;
+}
+
diff --git a/openair3/GTPV1-U/gtpv1u_gNB_task.h b/openair3/GTPV1-U/gtpv1u_gNB_task.h
new file mode 100644
index 0000000000000000000000000000000000000000..42fae7a7149d53107d9a7662e1a698ff64664785
--- /dev/null
+++ b/openair3/GTPV1-U/gtpv1u_gNB_task.h
@@ -0,0 +1,37 @@
+/* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The OpenAirInterface Software Alliance licenses this file to You under
+ * the OAI Public License, Version 1.1  (the "License"); you may not use this file
+ * except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.openairinterface.org/?page_id=698
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *-------------------------------------------------------------------------------
+ * For more information about the OpenAirInterface (OAI) Software Alliance:
+ *      contact@openairinterface.org
+ */
+
+/*! \file gtpv1u_gNB_task.h
+* \brief
+* \author Lionel Gauthier Panos Matzakos
+* \company Eurecom
+* \email: lionel.gauthier@eurecom.fr
+*/
+
+#ifndef GTPV1U_GNB_TASK_H_
+#define GTPV1U_GNB_TASK_H_
+
+int   gtpv1u_gNB_init(void);
+
+void *gtpv1u_gNB_task(void *args);
+
+
+#endif /* GTPV1U_GNB_TASK_H_ */
+
diff --git a/patch.diff b/patch.diff
new file mode 100644
index 0000000000000000000000000000000000000000..a85f8df37a68d3dfbead1d729c2f23b581666d18
--- /dev/null
+++ b/patch.diff
@@ -0,0 +1,472 @@
+diff --git a/cmake_targets/build_oai b/cmake_targets/build_oai
+index 88b8811..a7adc33 100755
+--- a/cmake_targets/build_oai
++++ b/cmake_targets/build_oai
+@@ -701,8 +701,8 @@ function main() {
+   if [ "$SIMUS_PHY" = "1" ] ; then
+     echo_info "Compiling physical unitary tests simulators"
+     # TODO: fix: dlsim_tm4 pucchsim prachsim pdcchsim pbchsim mbmssim
+-    simlist="dlsim ulsim ldpctest polartest smallblocktest nr_pbchsim nr_dlschsim nr_ulschsim nr_dlsim nr_ulsim nr_pucchsim nr_prachsim"
+-	# simlist="ldpctest"
++    # simlist="dlsim ulsim ldpctest polartest smallblocktest nr_pbchsim nr_dlschsim nr_ulschsim nr_dlsim nr_ulsim nr_pucchsim nr_prachsim"
++	simlist="ldpctest"
+     for f in $simlist ; do
+       compilations \
+         phy_simulators $f \
+diff --git a/openair1/PHY/CODING/TESTBENCH/ldpctest.c b/openair1/PHY/CODING/TESTBENCH/ldpctest.c
+index 345122c..72d85b1 100644
+--- a/openair1/PHY/CODING/TESTBENCH/ldpctest.c
++++ b/openair1/PHY/CODING/TESTBENCH/ldpctest.c
+@@ -396,17 +396,15 @@ int test_ldpc(short No_iteration,
+       decParams.numMaxIter=No_iteration;
+       decParams.outMode = nrLDPC_outMode_BIT;
+       //decParams.outMode =nrLDPC_outMode_LLRINT8;
+-
+-
++	  set_compact_BG(Zc,BG);
++	  init_LLR_DMA_for_CUDA(&decParams, (int8_t*)channel_output_fixed[j], (int8_t*)estimated_output[j], block_length);
+       for(j=0;j<n_segments;j++) {
+     	  start_meas(time_decoder);
+ #ifdef CUDA_FLAG
+         if(run_cuda){
+-          printf("***********run ldpc by cuda\n");
+           n_iter = nrLDPC_decoder_LYC(&decParams, (int8_t*)channel_output_fixed[j], (int8_t*)estimated_output[j], block_length, time_decoder);
+         }  
+         else{ 
+-          printf("**************run ldpc by cpu\n");  
+         // decode the sequence
+         // decoder supports BG2, Z=128 & 256
+         //esimated_output=ldpc_decoder(channel_output_fixed, block_length, No_iteration, (double)((float)nom_rate/(float)denom_rate));
+@@ -516,6 +514,7 @@ int test_ldpc(short No_iteration,
+ 
+ int main(int argc, char *argv[])
+ {
++  warmup_for_GPU();
+   unsigned int errors, errors_bit, crc_misses;
+   double errors_bit_uncoded;
+   short block_length=8448; // decoder supports length: 1201 -> 1280, 2401 -> 2560
+diff --git a/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.cu b/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.cu
+index 161b362..931d500 100644
+--- a/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.cu
++++ b/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.cu
+@@ -32,7 +32,7 @@
+ #include "bgs/BG2_I6"
+ #include "bgs/BG2_I7"
+ 
+-#define MAX_ITERATION 5
++#define MAX_ITERATION 2
+ #define MC	1
+ 
+ #define cudaCheck(ans) { cudaAssert((ans), __FILE__, __LINE__); }
+@@ -49,13 +49,21 @@ typedef struct{
+   char y;
+   short value;
+ } h_element;
++#include "bgs/BG1_compact_in_C.h"
+ 
++__device__ char dev_const_llr[68*384];
++__device__ char dev_dt [46*68*384];
++__device__ char dev_llr[68*384];
++__device__ unsigned char dev_tmp[68*384];
+ 
+ h_element h_compact1 [46*19] = {};
+ h_element h_compact2 [68*30] = {};
+ 
+-__device__ __constant__ h_element dev_h_compact1[46*19];  // used in kernel 1
+-__device__ __constant__ h_element dev_h_compact2[68*30];  // used in kernel 2
++__device__  h_element dev_h_compact1[46*19];  // used in kernel 1
++__device__  h_element dev_h_compact2[68*30];  // used in kernel 2
++
++// __device__ __constant__ h_element dev_h_compact1[46*19];  // used in kernel 1
++// __device__ __constant__ h_element dev_h_compact2[68*30];  // used in kernel 2
+ 
+ // row and col element count
+ __device__ __constant__ char h_ele_row_bg1_count[46] = {
+@@ -92,9 +100,93 @@ __global__ void warmup()
+ 	// warm up gpu for time measurement
+ }
+ 
++extern "C"
++void warmup_for_GPU(){
++	
++	warmup<<<20,1024 >>>();
++
++}
++
++extern "C"
++void set_compact_BG(int Zc,short BG){
++	
++	int row,col;
++	if(BG == 1){
++		row = 46;
++		col = 68;
++	}
++	else{
++		row = 42;
++		col = 52;
++	}
++	int compact_row = 30; 
++	int compact_col = 19;
++	if(BG==2){compact_row = 10, compact_col = 23;}
++	int memorySize_h_compact1 = row * compact_col * sizeof(h_element);
++	int memorySize_h_compact2 = compact_row * col * sizeof(h_element);
++	int lift_index = 0;
++	short lift_set[][9] = {
++		{2,4,8,16,32,64,128,256},
++		{3,6,12,24,48,96,192,384},
++		{5,10,20,40,80,160,320},
++		{7,14,28,56,112,224},
++		{9,18,36,72,144,288},
++		{11,22,44,88,176,352},
++		{13,26,52,104,208},
++		{15,30,60,120,240},
++		{0}
++	};
++	
++	for(int i = 0; lift_set[i][0] != 0; i++){
++		for(int j = 0; lift_set[i][j] != 0; j++){
++			if(Zc == lift_set[i][j]){
++				lift_index = i;
++				break;
++			}
++		}
++	}
++	printf("\nZc = %d BG = %d\n",Zc,BG);
++	switch(lift_index){
++			case 0:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I0, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I0, memorySize_h_compact2) );
++				break;
++			case 1:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I1, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I1, memorySize_h_compact2) );
++				break;
++			case 2:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I2, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I2, memorySize_h_compact2) );
++				break;
++			case 3:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I3, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I3, memorySize_h_compact2) );
++				break;
++			case 4:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I4, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I4, memorySize_h_compact2) );
++				break;
++			case 5:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I5, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I5, memorySize_h_compact2) );
++				break;
++			case 6:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I6, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I6, memorySize_h_compact2) );
++				break;
++			case 7:
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, host_h_compact1_I7, memorySize_h_compact1) );
++				cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, host_h_compact2_I7, memorySize_h_compact2) );
++				break;
++		}
++	
++	// return 0;
++}
++
+ 
+ // Kernel 1
+-__global__ void ldpc_cnp_kernel_1st_iter(char * dev_llr, char * dev_dt, int BG, int row, int col, int Zc)
++__global__ void ldpc_cnp_kernel_1st_iter(/*char * dev_llr,*/ int BG, int row, int col, int Zc)
+ {
+ //	if(blockIdx.x == 0 && threadIdx.x == 1) printf("cnp %d\n", threadIdx.x);
+ 	int iMCW = blockIdx.y;		// codeword id
+@@ -153,7 +245,7 @@ __global__ void ldpc_cnp_kernel_1st_iter(char * dev_llr, char * dev_dt, int BG,
+ 	for(int i = 0; i < s; i++){
+ 		// v0: Best performance so far. 0.75f is the value of alpha.
+ 		sq = 1 - 2 * ((Q_sign >> i) & 0x01);
+-		R_temp = 0.8 * sign * sq * (i != idx_min ? rmin1 : rmin2);
++		R_temp = 0.75f * sign * sq * (i != idx_min ? rmin1 : rmin2);
+ 		// write results to global memory
+ 		h_element_t = dev_h_compact1[i*row+iBlkRow];
+ 		int addr_temp = offsetR + h_element_t.y * row * Zc;
+@@ -163,7 +255,7 @@ __global__ void ldpc_cnp_kernel_1st_iter(char * dev_llr, char * dev_dt, int BG,
+ }
+ 
+ // Kernel_1
+-__global__ void ldpc_cnp_kernel(char * dev_llr, char * dev_dt, int BG, int row, int col, int Zc)
++__global__ void ldpc_cnp_kernel(/*char * dev_llr, char * dev_dt,*/ int BG, int row, int col, int Zc)
+ {
+ //	if(blockIdx.x == 0 && threadIdx.x == 1) printf("cnp\n");
+ 	int iMCW = blockIdx.y;
+@@ -223,7 +315,7 @@ __global__ void ldpc_cnp_kernel(char * dev_llr, char * dev_dt, int BG, int row,
+ //	The 2nd recursion
+ 	for(int i = 0; i < s; i ++){
+ 		sq = 1 - 2 * ((Q_sign >> i) & 0x01);
+-		R_temp = 0.8 * sign * sq * (i != idx_min ? rmin1 : rmin2);
++		R_temp = 0.75f * sign * sq * (i != idx_min ? rmin1 : rmin2);
+ 		
+ 
+ 		// write results to global memory
+@@ -236,7 +328,7 @@ __global__ void ldpc_cnp_kernel(char * dev_llr, char * dev_dt, int BG, int row,
+ 
+ // Kernel 2: VNP processing
+ __global__ void
+-ldpc_vnp_kernel_normal(char * dev_llr, char * dev_dt, char * dev_const_llr, int BG, int row, int col, int Zc)
++ldpc_vnp_kernel_normal(/*char * dev_llr, char * dev_dt, char * dev_const_llr,*/ int BG, int row, int col, int Zc)
+ {	
+ 	int iMCW = blockIdx.y;
+ 	int iBlkCol = blockIdx.x;
+@@ -276,7 +368,7 @@ ldpc_vnp_kernel_normal(char * dev_llr, char * dev_dt, char * dev_const_llr, int
+ }
+ 
+ 
+-__global__ void pack_decoded_bit(char *dev, unsigned char *host, int col, int Zc)
++__global__ void pack_decoded_bit(/*char *dev, unsigned char *host,*/ int col, int Zc)
+ {
+ 	__shared__ unsigned char tmp[128];
+ 	int iMCW = blockIdx.y;
+@@ -284,15 +376,15 @@ __global__ void pack_decoded_bit(char *dev, unsigned char *host, int col, int Zc
+ 	int btid = threadIdx.x;
+ 	tmp[btid] = 0;
+ 	
+-	if(dev[tid] < 0){
++	if(dev_llr[tid] < 0){
+ 		tmp[btid] = 1 << (7-(btid&7));
+ 	}
+ 	__syncthreads();
+ 	
+ 	if(threadIdx.x < 16){
+-		host[iMCW * col*Zc + blockIdx.x*16+threadIdx.x] = 0;
++		dev_tmp[iMCW * col*Zc + blockIdx.x*16+threadIdx.x] = 0;
+ 		for(int i = 0; i < 8; i++){
+-			host[iMCW * col*Zc + blockIdx.x*16+threadIdx.x] += tmp[threadIdx.x*8+i];
++			dev_tmp[iMCW * col*Zc + blockIdx.x*16+threadIdx.x] += tmp[threadIdx.x*8+i];
+ 		}
+ 	}
+ }
+@@ -369,18 +461,38 @@ void read_BG(int BG, int *h, int row, int col)
+ 	*/
+ }
+ 
++extern "C"
++void init_LLR_DMA_for_CUDA(t_nrLDPC_dec_params* p_decParams, int8_t* p_llr, int8_t* p_out, int block_length){
++	
++	uint16_t Zc          = p_decParams->Z;
++    uint8_t  BG         = p_decParams->BG;
++	uint8_t row,col;
++	if(BG == 1){
++		row = 46;
++		col = 68;
++	}
++	else{
++		row = 42;
++		col = 52;
++	}
++	unsigned char *hard_decision = (unsigned char*)p_out;
++	int memorySize_llr_cuda = col * Zc * sizeof(char) * MC;
++	cudaCheck( cudaMemcpyToSymbol(dev_const_llr, p_llr, memorySize_llr_cuda) );
++	cudaCheck( cudaMemcpyToSymbol(dev_llr, p_llr, memorySize_llr_cuda) );
++	cudaDeviceSynchronize();
++	
++}
+ 
+ extern "C"
+ int32_t nrLDPC_decoder_LYC(t_nrLDPC_dec_params* p_decParams, int8_t* p_llr, int8_t* p_out, int block_length, time_stats_t *time_decoder)
+ {
+-	// alloc mem
+-	//unsigned char *decision = (unsigned char*)p_out;
++
+ 
+     uint16_t Zc          = p_decParams->Z;
+     uint8_t  BG         = p_decParams->BG;
+     uint8_t  numMaxIter = p_decParams->numMaxIter;
+     e_nrLDPC_outMode outMode = p_decParams->outMode;
+-	
++	cudaError_t cudaStatus;
+ 	uint8_t row,col;
+ 	if(BG == 1){
+ 		row = 46;
+@@ -390,96 +502,14 @@ int32_t nrLDPC_decoder_LYC(t_nrLDPC_dec_params* p_decParams, int8_t* p_llr, int8
+ 		row = 42;
+ 		col = 52;
+ 	}
+-	int compact_row = 30, compact_col = 19, lift_index=0;;
+-	if(BG==2){compact_row = 10, compact_col = 23;}
+-	
+-	short lift_set[][9] = {
+-		{2,4,8,16,32,64,128,256},
+-		{3,6,12,24,48,96,192,384},
+-		{5,10,20,40,80,160,320},
+-		{7,14,28,56,112,224},
+-		{9,18,36,72,144,288},
+-		{11,22,44,88,176,352},
+-		{13,26,52,104,208},
+-		{15,30,60,120,240},
+-		{0}
+-	};
+-	
+-	for(int i = 0; lift_set[i][0] != 0; i++){
+-		for(int j = 0; lift_set[i][j] != 0; j++){
+-			if(Zc == lift_set[i][j]){
+-				lift_index = i;
+-				break;
+-			}
+-		}
+-	}
+-	
+-	int *h = NULL;
+-	switch(lift_index){
+-		case 0:
+-			h = (BG == 1)? h_base_0:h_base_8;
+-			break;
+-		case 1:
+-			h = (BG == 1)? h_base_1:h_base_9;
+-			break;
+-		case 2:
+-			h = (BG == 1)? h_base_2:h_base_10;
+-			break;
+-		case 3:
+-			h = (BG == 1)? h_base_3:h_base_11;
+-			break;
+-		case 4:
+-			h = (BG == 1)? h_base_4:h_base_12;
+-			break;
+-		case 5:
+-			h = (BG == 1)? h_base_5:h_base_13;
+-			break;
+-		case 6:
+-			h = (BG == 1)? h_base_6:h_base_14;
+-			break;
+-		case 7:
+-			h = (BG == 1)? h_base_7:h_base_15;
+-			break;
+-	}
+-	/* pack BG in compact graph */
+-	read_BG(BG, h, row, col);
+-	
+-	
+-	int memorySize_h_compact1 = row * compact_col * sizeof(h_element);
+-	int memorySize_h_compact2 = compact_row * col * sizeof(h_element);
+ 
+-//	cpu
+-	int memorySize_hard_decision = col * Zc * sizeof(unsigned char) * MC;
+-	
+-	
+ //	alloc memory
+ 	unsigned char *hard_decision = (unsigned char*)p_out;
+-	
+ //	gpu
+ 	int memorySize_llr_cuda = col * Zc * sizeof(char) * MC;
+-	int memorySize_dt_cuda = row * Zc * col * sizeof(char) * MC;
+-
+-
+-//	alloc memory
+-	char *dev_llr;
+-	char *dev_dt;
+-	char *dev_const_llr;
+-	unsigned char *dev_tmp;
++	cudaCheck( cudaMemcpyToSymbol(dev_const_llr, p_llr, memorySize_llr_cuda) );
++	cudaCheck( cudaMemcpyToSymbol(dev_llr, p_llr, memorySize_llr_cuda) );
+ 	
+-	cudaCheck( cudaMalloc((void **)&dev_tmp, memorySize_hard_decision) );
+-	cudaCheck( cudaMalloc((void **)&dev_llr, memorySize_llr_cuda) );
+-	cudaCheck( cudaMalloc((void **)&dev_const_llr, memorySize_llr_cuda) );
+-	cudaCheck( cudaMalloc((void **)&dev_dt, memorySize_dt_cuda) );
+-	
+-//	memcpy host to device	
+-
+-	cudaCheck( cudaMemcpyToSymbol(dev_h_compact1, h_compact1, memorySize_h_compact1) );
+-	cudaCheck( cudaMemcpyToSymbol(dev_h_compact2, h_compact2, memorySize_h_compact2) );
+-	cudaCheck( cudaMemcpy((void*)dev_const_llr, p_llr, memorySize_llr_cuda, cudaMemcpyHostToDevice) );
+-start_meas(time_decoder);
+-	cudaCheck( cudaMemcpy((void*)dev_llr, p_llr, memorySize_llr_cuda, cudaMemcpyHostToDevice) );
+-	
+-
+ // Define CUDA kernel dimension
+ 	int blockSizeX = Zc;
+ 	dim3 dimGridKernel1(row, MC, 1); 	// dim of the thread blocks
+@@ -488,61 +518,35 @@ start_meas(time_decoder);
+     dim3 dimGridKernel2(col, MC, 1);
+     dim3 dimBlockKernel2(blockSizeX, 1, 1);	
+ 	cudaDeviceSynchronize();
+-	
+-	cudaEvent_t start, end;
+-	float time;
+-
+-	warmup<<<dimGridKernel1, dimBlockKernel1>>>();
+-	warmup<<<dimGridKernel2, dimBlockKernel2>>>();
+ 
+-
+-	cudaEventCreate(&start);
+-	cudaEventCreate(&end);
+-	cudaEventRecord(start, 0);
+-	
+-//	cudaProfilerStart();
+-	
+ // lauch kernel 
++
+ 	for(int ii = 0; ii < MAX_ITERATION; ii++){
+ 		// first kernel	
+ 		if(ii == 0){
+ 			ldpc_cnp_kernel_1st_iter 
+ 			<<<dimGridKernel1, dimBlockKernel1>>>
+-			(dev_llr, dev_dt, BG, row, col, Zc);
++			(/*dev_llr,*/ BG, row, col, Zc);
+ 		}else{
+ 			ldpc_cnp_kernel
+ 			<<<dimGridKernel1, dimBlockKernel1>>>
+-			(dev_llr, dev_dt, BG, row, col, Zc);
++			(/*dev_llr,*/ BG, row, col, Zc);
+ 		}
+-		
+ 		// second kernel
+-		
+-			ldpc_vnp_kernel_normal
+-			<<<dimGridKernel2, dimBlockKernel2>>>
+-			(dev_llr, dev_dt, dev_const_llr, BG, row, col, Zc);
+-		
++		ldpc_vnp_kernel_normal
++		<<<dimGridKernel2, dimBlockKernel2>>>
++		// (dev_llr, dev_const_llr,BG, row, col, Zc);
++		(BG, row, col, Zc);
+ 	}
++	
+ 	int pack = (block_length/128)+1;
+ 	dim3 pack_block(pack, MC, 1);
+-	pack_decoded_bit<<<pack_block,128>>>(dev_llr, dev_tmp, col, Zc);
+-
+-
+-	cudaEventRecord(end, 0);
+-	cudaEventSynchronize(end);
+-	cudaEventElapsedTime(&time, start, end);
++	pack_decoded_bit<<<pack_block,128>>>(/*dev_llr,*/ /*dev_tmp,*/ col, Zc);
+ 	
+-
+-	//cudaCheck( cudaMemcpy((*)hard_decision, (const void*)dev_tmp, memorySize_hard_decision, cudaMemcpyDeviceToHost) );
+-	cudaCheck( cudaMemcpy((void*)hard_decision, (const void*)dev_tmp, (block_length/8)*sizeof(unsigned char), cudaMemcpyDeviceToHost) );
++	cudaCheck( cudaMemcpyFromSymbol((void*)hard_decision, (const void*)dev_tmp, (block_length/8)*sizeof(unsigned char)) );
+ 	cudaDeviceSynchronize();
+-stop_meas(time_decoder);
+-	
+-	cudaCheck( cudaFree(dev_llr) );
+-	cudaCheck( cudaFree(dev_dt) );
+-	cudaCheck( cudaFree(dev_const_llr) );
+-	cudaCheck( cudaFree(dev_tmp) );
+ 	
+-	//free(hard_decision);
++
+ 	return MAX_ITERATION;
+ 	
+ }
+diff --git a/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.h b/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.h
+index 0e78f98..c8868f0 100644
+--- a/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.h
++++ b/openair1/PHY/CODING/nrLDPC_decoder_LYC/nrLDPC_decoder_LYC.h
+@@ -23,4 +23,10 @@
+ 
+ int32_t nrLDPC_decoder_LYC(t_nrLDPC_dec_params* p_decParams, int8_t* p_llr, int8_t* p_out, int block_length, time_stats_t *time_decoder);
+ 
++void init_LLR_DMA_for_CUDA(t_nrLDPC_dec_params* p_decParams, int8_t* p_llr, int8_t* p_out, int block_length);
++
++void warmup_for_GPU(void);
++
++void set_compact_BG(int Zc, short BG);
++
+ #endif
diff --git a/targets/ARCH/rfsimulator/new_channel_sim.c b/targets/ARCH/rfsimulator/new_channel_sim.c
new file mode 100644
index 0000000000000000000000000000000000000000..0501babd2004df7b92b13b7c1e0adb919b57ec4f
--- /dev/null
+++ b/targets/ARCH/rfsimulator/new_channel_sim.c
@@ -0,0 +1,108 @@
+/*
+* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The OpenAirInterface Software Alliance licenses this file to You under
+* the OAI Public License, Version 1.1  (the "License"); you may not use this file
+* except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*      http://www.openairinterface.org/?page_id=698
+*
+* Author and copyright: Laurent Thomas, open-cells.com
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*-------------------------------------------------------------------------------
+* For more information about the OpenAirInterface (OAI) Software Alliance:
+*      contact@openairinterface.org
+*/
+
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <stdbool.h>
+#include <errno.h>
+
+
+#include <common/utils/assertions.h>
+#include <common/utils/LOG/log.h>
+#include <common/config/config_userapi.h>
+#include <openair1/SIMULATION/TOOLS/sim.h>
+#include <targets/ARCH/rfsimulator/rfsimulator.h>
+
+// Ziggurat 
+static double wn[128],fn[128];
+static uint32_t iz,jz,jsr=123456789,kn[128];
+static int32_t hz;
+#define SHR3 (jz=jsr, jsr^=(jsr<<13),jsr^=(jsr>>17),jsr^=(jsr<<5),jz+jsr)
+#define UNI (0.5+(signed) SHR3 * 0.2328306e-9)
+
+double nfix(void) {
+  const double r = 3.442620;
+  static double x, y;
+
+  for (;;) {
+    x=hz *  wn[iz];
+
+    if (iz==0) {
+      do {
+        x = - 0.2904764 * log (UNI);
+        y = - log (UNI);
+      } while (y+y < x*x);
+
+      return (hz>0)? r+x : -r-x;
+    }
+
+    if (fn[iz]+UNI*(fn[iz-1]-fn[iz])<exp(-0.5*x*x)) {
+      return x;
+    }
+
+    hz = SHR3;
+    iz = hz&127;
+
+    if (abs(hz) < kn[iz]) {
+      return ((hz)*wn[iz]);
+    }
+  }
+}
+
+/*!\Procedure to create tables for normal distribution kn,wn and fn. */
+
+void tableNor(unsigned long seed) {
+  jsr=seed;
+  double dn = 3.442619855899;
+  int i;
+  const double m1 = 2147483648.0;
+  double q;
+  double tn = 3.442619855899;
+  const double vn = 9.91256303526217E-03;
+  q = vn/exp(-0.5*dn*dn);
+  kn[0] = ((dn/q)*m1);
+  kn[1] = 0;
+  wn[0] =  ( q / m1 );
+  wn[127] = ( dn / m1 );
+  fn[0] = 1.0;
+  fn[127] = ( exp ( - 0.5 * dn * dn ) );
+
+  for ( i = 126; 1 <= i; i-- ) {
+    dn = sqrt (-2.0 * log ( vn/dn + exp(-0.5*dn*dn)));
+    kn[i+1] = ((dn / tn)*m1);
+    tn = dn;
+    fn[i] = (exp (-0.5*dn*dn));
+    wn[i] = (dn / m1);
+  }
+
+  return;
+}
+
+double gaussZiggurat(double mean, double variance) {
+  hz=SHR3;
+  iz=hz&127;
+  return abs(hz)<kn[iz]? hz*wn[iz] : nfix();
+}
diff --git a/targets/ARCH/rfsimulator/rfsimulator.h b/targets/ARCH/rfsimulator/rfsimulator.h
new file mode 100644
index 0000000000000000000000000000000000000000..292873032e010d7d1443f5e5424fe4c087962f39
--- /dev/null
+++ b/targets/ARCH/rfsimulator/rfsimulator.h
@@ -0,0 +1,37 @@
+/*
+* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The OpenAirInterface Software Alliance licenses this file to You under
+* the OAI Public License, Version 1.1  (the "License"); you may not use this file
+* except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*      http://www.openairinterface.org/?page_id=698
+*
+* Author and copyright: Laurent Thomas, open-cells.com
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*-------------------------------------------------------------------------------
+* For more information about the OpenAirInterface (OAI) Software Alliance:
+*      contact@openairinterface.org
+*/
+
+#ifndef __RFSIMULATOR_H
+#define  __RFSIMULATOR_H
+double gaussZiggurat(double mean, double variance);
+void tableNor(unsigned long seed);
+void rxAddInput( struct complex16 *input_sig,
+                 struct complex16 *after_channel_sig,
+                 int rxAnt,
+                 channel_desc_t *channelDesc,
+                 int nbSamples,
+                 uint64_t TS,
+                 uint32_t CirSize
+               );
+
+#endif
diff --git a/targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.band78.106PRB.slave.conf b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.band78.106PRB.slave.conf
new file mode 100644
index 0000000000000000000000000000000000000000..81796ada2c8407ae1274b389194002cb4c05e564
--- /dev/null
+++ b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.band78.106PRB.slave.conf
@@ -0,0 +1,295 @@
+Active_gNBs = ( "gNB-Eurecom-5GNRBox");
+# Asn1_verbosity, choice in: none, info, annoying
+Asn1_verbosity = "none";
+
+gNBs =
+(
+ {
+    ////////// Identification parameters:
+    gNB_ID    =  0xe00;
+
+    cell_type =  "CELL_MACRO_GNB";
+
+    gNB_name  =  "gNB-Eurecom-5GNRBox";
+
+    // Tracking area code, 0x0000 and 0xfffe are reserved values
+    tracking_area_code  =  1;
+
+    plmn_list = ({mcc = 208; mnc = 93; mnc_length = 2;});	 
+
+    tr_s_preference     = "local_mac"
+
+    ////////// Physical parameters:
+
+    ssb_SubcarrierOffset                                      = 0;
+    pdsch_AntennaPorts                                        = 1;
+	
+    servingCellConfigCommon = (
+    {
+ #spCellConfigCommon
+
+      physCellId                                                    = 0;
+
+#  downlinkConfigCommon
+    #frequencyInfoDL
+      # this is 3600 MHz + 43 PRBs@30kHz SCS (same as initial BWP)
+      absoluteFrequencySSB                                          = 641032;
+      dl_frequencyBand                                                 = 78;
+      # this is 3600 MHz
+      dl_absoluteFrequencyPointA                                       = 640000;
+      #scs-SpecificCarrierList
+        dl_offstToCarrier                                              = 0;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        dl_subcarrierSpacing                                           = 1;
+        dl_carrierBandwidth                                            = 106;
+     #initialDownlinkBWP
+      #genericParameters
+        # this is RBstart=0,L=50 (275*(L-1))+RBstart
+        initialDLBWPlocationAndBandwidth                                        = 6366;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        initialDLBWPsubcarrierSpacing                                           = 1;
+      #pdcch-ConfigCommon
+        initialDLBWPcontrolResourceSetZero                                      = 12;
+        initialDLBWPsearchSpaceZero                                             = 0;
+      #pdsch-ConfigCommon
+        #pdschTimeDomainAllocationList (up to 16 entries)
+             initialDLBWPk0_0                    = 0;
+             #initialULBWPmappingType
+	     #0=typeA,1=typeB
+             initialDLBWPmappingType_0           = 0;
+             #this is SS=1,L=13
+             initialDLBWPstartSymbolAndLength_0  = 40;
+
+             initialDLBWPk0_1                    = 0;
+             initialDLBWPmappingType_1           = 0;
+             #this is SS=2,L=12 
+             initialDLBWPstartSymbolAndLength_1  = 53;
+
+             initialDLBWPk0_2                    = 0;
+             initialDLBWPmappingType_2           = 0;
+             #this is SS=1,L=12 
+             initialDLBWPstartSymbolAndLength_2  = 54;
+
+             initialDLBWPk0_3                    = 0;
+             initialDLBWPmappingType_3           = 0;
+             #this is SS=1,L=4
+             initialDLBWPstartSymbolAndLength_3  = 57;
+
+  #uplinkConfigCommon 
+     #frequencyInfoUL
+      ul_frequencyBand                                                 = 78;
+      #scs-SpecificCarrierList
+      ul_offstToCarrier                                              = 0;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      ul_subcarrierSpacing                                           = 1;
+      ul_carrierBandwidth                                            = 106;
+      pMax                                                          = 20;
+     #initialUplinkBWP
+      #genericParameters
+        initialULBWPlocationAndBandwidth                                        = 6366;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        initialULBWPsubcarrierSpacing                                           = 1;
+      #rach-ConfigCommon
+        #rach-ConfigGeneric
+          prach_ConfigurationIndex                                  = 98;
+#prach_msg1_FDM
+#0 = one, 1=two, 2=four, 3=eight
+          prach_msg1_FDM                                            = 0;
+          prach_msg1_FrequencyStart                                 = 0;
+          zeroCorrelationZoneConfig                                 = 13;
+          preambleReceivedTargetPower                               = -118;
+#preamblTransMax (0...10) = (3,4,5,6,7,8,10,20,50,100,200)
+          preambleTransMax                                          = 6;
+#powerRampingStep
+# 0=dB0,1=dB2,2=dB4,3=dB6
+        powerRampingStep                                            = 1;
+#ra_ReponseWindow
+#1,2,4,8,10,20,40,80
+        ra_ResponseWindow                                           = 4;
+#ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR
+#1=oneeighth,2=onefourth,3=half,4=one,5=two,6=four,7=eight,8=sixteen
+        ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR                = 4;
+#oneHalf (0..15) 4,8,12,16,...60,64
+        ssb_perRACH_OccasionAndCB_PreamblesPerSSB                   = 15;
+#ra_ContentionResolutionTimer
+#(0..7) 8,16,24,32,40,48,56,64
+        ra_ContentionResolutionTimer                                = 7;
+        rsrp_ThresholdSSB                                           = 19;
+#prach-RootSequenceIndex_PR
+#1 = 839, 2 = 139
+        prach_RootSequenceIndex_PR                                  = 2;
+        prach_RootSequenceIndex                                     = 1;
+        # SCS for msg1, can only be 15 for 30 kHz < 6 GHz, takes precendence over the one derived from prach-ConfigIndex
+        #  
+        msg1_SubcarrierSpacing                                      = 1,
+
+# restrictedSetConfig
+# 0=unrestricted, 1=restricted type A, 2=restricted type B
+        restrictedSetConfig                                         = 0,
+      # pusch-ConfigCommon (up to 16 elements)
+        initialULBWPk2_0                      = 2;
+        initialULBWPmappingType_0             = 1
+        # this is SS=0 L=11
+        initialULBWPstartSymbolAndLength_0    = 55;
+ 	
+	initialULBWPk2_1                      = 2;
+        initialULBWPmappingType_1             = 1;
+        # this is SS=0 L=12
+        initialULBWPstartSymbolAndLength_1    = 69;
+
+	initialULBWPk2_2                      = 7;
+        initialULBWPmappingType_2             = 1;
+        # this is SS=10 L=4
+        initialULBWPstartSymbolAndLength_2    = 52;
+
+
+        msg3_DeltaPreamble                                          = 1;
+        p0_NominalWithGrant                                         =-90;
+
+# pucch-ConfigCommon setup :
+# pucchGroupHopping
+# 0 = neither, 1= group hopping, 2=sequence hopping
+        pucchGroupHopping                                           = 0;
+        hoppingId                                                   = 40;
+        p0_nominal                                                  = -90;
+# ssb_PositionsInBurs_BitmapPR
+# 1=short, 2=medium, 3=long
+      ssb_PositionsInBurst_PR                                       = 2;
+      ssb_PositionsInBurst_Bitmap                                   = 1;
+
+# ssb_periodicityServingCell
+# 0 = ms5, 1=ms10, 2=ms20, 3=ms40, 4=ms80, 5=ms160, 6=spare2, 7=spare1 
+      ssb_periodicityServingCell                                    = 2;
+
+# dmrs_TypeA_position
+# 0 = pos2, 1 = pos3
+      dmrs_TypeA_Position                                           = 0;
+
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      subcarrierSpacing                                             = 1;
+
+
+  #tdd-UL-DL-ConfigurationCommon
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      referenceSubcarrierSpacing                                    = 1;
+      # pattern1 
+      # dl_UL_TransmissionPeriodicity
+      # 0=ms0p5, 1=ms0p625, 2=ms1, 3=ms1p25, 4=ms2, 5=ms2p5, 6=ms5, 7=ms10
+      dl_UL_TransmissionPeriodicity                                 = 6;
+      nrofDownlinkSlots                                             = 7;
+      nrofDownlinkSymbols                                           = 6;
+      nrofUplinkSlots                                               = 2;
+      nrofUplinkSymbols                                             = 4;
+
+  ssPBCH_BlockPower                                             = 10;
+  }
+
+  );
+
+
+    # ------- SCTP definitions
+    SCTP :
+    {
+        # Number of streams to use in input/output
+        SCTP_INSTREAMS  = 2;
+        SCTP_OUTSTREAMS = 2;
+    };
+
+
+    ////////// MME parameters:
+    mme_ip_address      = ( { ipv4       = "192.168.12.26";
+                              ipv6       = "192:168:30::17";
+                              active     = "yes";
+                              preference = "ipv4";
+                            }
+                          );
+                          
+    ///X2
+    enable_x2 = "yes";
+    t_reloc_prep      = 1000;      /* unit: millisecond */
+    tx2_reloc_overall = 2000;      /* unit: millisecond */
+    target_enb_x2_ip_address      = (
+                                     { ipv4       = "192.168.12.188";
+                                       ipv6       = "192:168:30::17";
+                                       preference = "ipv4";
+                                     }
+                                    );                       
+
+    NETWORK_INTERFACES :
+    {
+
+        GNB_INTERFACE_NAME_FOR_S1_MME            = "enp0s31f6";
+        GNB_IPV4_ADDRESS_FOR_S1_MME              = "192.168.12.75/24";
+        GNB_INTERFACE_NAME_FOR_S1U               = "eth0";
+        GNB_IPV4_ADDRESS_FOR_S1U                 = "192.168.12.75/24";
+        GNB_PORT_FOR_S1U                         = 2152; # Spec 2152
+        
+        GNB_IPV4_ADDRESS_FOR_X2C                 = "192.168.12.75/23";
+        GNB_PORT_FOR_X2C                         = 36422; # Spec 36422
+    };
+  }
+);
+
+MACRLCs = (
+	{
+	num_cc = 1;
+	tr_s_preference = "local_L1";
+	tr_n_preference = "local_RRC";
+        }  
+);
+
+L1s = (
+    	{
+	num_cc = 1;
+	tr_n_preference = "local_mac";
+        }  
+);
+
+RUs = (
+    {		  
+       local_rf       = "yes"
+         nb_tx          = 1
+         nb_rx          = 1
+         att_tx         = 0
+         att_rx         = 0;
+         bands          = [7];
+         max_pdschReferenceSignalPower = -27;
+         max_rxgain                    = 114;
+         eNB_instances  = [0];
+	 sdr_addrs = "addr=192.168.20.2,mgmt_addr=192.168.20.2";
+         clock_src = "internal";
+    }
+);  
+
+THREAD_STRUCT = (
+  {
+    #three config for level of parallelism "PARALLEL_SINGLE_THREAD", "PARALLEL_RU_L1_SPLIT", or "PARALLEL_RU_L1_TRX_SPLIT"
+    parallel_config    = "PARALLEL_RU_L1_TRX_SPLIT";
+    #two option for worker "WORKER_DISABLE" or "WORKER_ENABLE"
+    worker_config      = "WORKER_ENABLE";
+  }
+);
+
+     log_config :
+     {
+       global_log_level                      ="info";
+       global_log_verbosity                  ="medium";
+       hw_log_level                          ="info";
+       hw_log_verbosity                      ="medium";
+       phy_log_level                         ="info";
+       phy_log_verbosity                     ="medium";
+       mac_log_level                         ="info";
+       mac_log_verbosity                     ="high";
+       rlc_log_level                         ="info";
+       rlc_log_verbosity                     ="medium";
+       pdcp_log_level                        ="info";
+       pdcp_log_verbosity                    ="medium";
+       rrc_log_level                         ="info";
+       rrc_log_verbosity                     ="medium";
+    };
diff --git a/targets/PROJECTS/GENERIC-LTE-EPC/CONF/testing_enb.conf b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/testing_enb.conf
new file mode 100644
index 0000000000000000000000000000000000000000..ea105d86b62abdd255804e375323f0eda99d1a14
--- /dev/null
+++ b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/testing_enb.conf
@@ -0,0 +1,281 @@
+Active_eNBs = ( "eNB-Eurecom-LTEBox");
+# Asn1_verbosity, choice in: none, info, annoying
+Asn1_verbosity = "none";
+
+eNBs =
+(
+ {
+    # real_time choice in {hard, rt-preempt, no}
+    real_time       =  "no";
+    ////////// Identification parameters:
+    eNB_ID    =  0xe01;
+    
+    cell_type =  "CELL_MACRO_ENB";
+    
+    eNB_name  =  "eNB-Eurecom-LTEBox";
+    
+    // Tracking area code, 0x0000 and 0xfffe are reserved values
+    tracking_area_code  =  1;
+    plmn_list = (
+      { mcc = 222; mnc = 01; mnc_length = 2; }
+    );
+    
+    tr_s_preference     = "local_mac"
+
+       ////////// Physical parameters:
+  
+    component_carriers = (
+    		       	 {
+                           node_function = "eNodeB_3GPP";
+                           node_timing = "synch_to_ext_device";
+                           node_synch_ref = 0;
+                           nb_antenna_ports = 1;
+                           ue_TransmissionMode = 1;
+  			   frame_type					      = "FDD";	
+                           tdd_config 					      = 3;
+                           tdd_config_s            			      = 0;
+ 			   prefix_type             			      = "NORMAL";
+  			   eutra_band              			      = 7;
+                           downlink_frequency      			      = 2680000000L; //2655000000L;
+                           uplink_frequency_offset 			      = -120000000;
+  
+  			   Nid_cell					      = 0;
+                           N_RB_DL                 			      = 25; //100;
+                           Nid_cell_mbsfn          			      = 0;
+                           nb_antennas_tx          			      = 1;
+                           nb_antennas_rx          			      = 1; 
+                           prach_root              			      = 0;
+			   tx_gain                                            = 90;
+			   rx_gain                                            = 115;
+                           pbch_repetition                                    = "FALSE";
+                           prach_config_index      			      = 0;
+                           prach_high_speed        			      = "DISABLE";
+  	                   prach_zero_correlation  			      = 1;
+                           prach_freq_offset       			      = 2;
+			   pucch_delta_shift       			      = 1;
+                           pucch_nRB_CQI           			      = 0;
+                           pucch_nCS_AN            			      = 0;
+                           pucch_n1_AN             			      = 0;
+                           pdsch_referenceSignalPower 			      = -29;
+                           pdsch_p_b                  			      = 0;
+                           pusch_n_SB                 			      = 1; 
+                           pusch_enable64QAM          			      = "DISABLE";
+			   pusch_hoppingMode                                  = "interSubFrame";
+			   pusch_hoppingOffset                                = 0;
+     	                   pusch_groupHoppingEnabled  			      = "ENABLE";
+	                   pusch_groupAssignment      			      = 0;
+	                   pusch_sequenceHoppingEnabled		   	      = "DISABLE";
+	                   pusch_nDMRS1                                       = 1;
+	                   phich_duration                                     = "NORMAL";
+	                   phich_resource                                     = "ONESIXTH";
+	                   srs_enable                                         = "DISABLE";
+	               /*  srs_BandwidthConfig                                =;
+	                   srs_SubframeConfig                                 =;
+	                   srs_ackNackST                                      =;
+	                   srs_MaxUpPts                                       =;*/  
+
+	                   pusch_p0_Nominal                                   = -96;
+	                   pusch_alpha                                        = "AL1";
+	                   pucch_p0_Nominal                                   = -96;
+	                   msg3_delta_Preamble                                = 6;
+	                   pucch_deltaF_Format1                               = "deltaF2";
+	                   pucch_deltaF_Format1b                              = "deltaF3";
+	                   pucch_deltaF_Format2                               = "deltaF0";
+	                   pucch_deltaF_Format2a                              = "deltaF0";
+  	                   pucch_deltaF_Format2b		    	      = "deltaF0";
+	
+                           rach_numberOfRA_Preambles                          = 64;
+                           rach_preamblesGroupAConfig                         = "DISABLE";
+/*
+                           rach_sizeOfRA_PreamblesGroupA                      = ;
+                           rach_messageSizeGroupA                             = ;
+                           rach_messagePowerOffsetGroupB                      = ; 
+*/
+                           rach_powerRampingStep                              = 4;
+	                   rach_preambleInitialReceivedTargetPower            = -108;
+                           rach_preambleTransMax                              = 10;
+	                   rach_raResponseWindowSize                          = 10;
+	                   rach_macContentionResolutionTimer                  = 48;
+	                   rach_maxHARQ_Msg3Tx                                = 4;
+
+			   pcch_default_PagingCycle                           = 128;
+			   pcch_nB                                            = "oneT";
+			   bcch_modificationPeriodCoeff			      = 2;
+			   ue_TimersAndConstants_t300			      = 1000;
+			   ue_TimersAndConstants_t301			      = 1000;
+			   ue_TimersAndConstants_t310			      = 1000;
+			   ue_TimersAndConstants_t311			      = 10000;
+			   ue_TimersAndConstants_n310			      = 20;
+			   ue_TimersAndConstants_n311			      = 1;
+
+      //Parameters for SIB18
+      rxPool_sc_CP_Len                                       = "normal"; 
+      rxPool_sc_Period                                       = "sf40";  
+      rxPool_data_CP_Len                                     = "normal";  
+      rxPool_ResourceConfig_prb_Num                          = 20;
+      rxPool_ResourceConfig_prb_Start                        = 5;
+      rxPool_ResourceConfig_prb_End                          = 44;
+      rxPool_ResourceConfig_offsetIndicator_present          = "prSmall";
+      rxPool_ResourceConfig_offsetIndicator_choice           = 0;      
+      rxPool_ResourceConfig_subframeBitmap_present           = "prBs40";
+      rxPool_ResourceConfig_subframeBitmap_choice_bs_buf              = "00000000000000000000";
+      rxPool_ResourceConfig_subframeBitmap_choice_bs_size             = 5;
+      rxPool_ResourceConfig_subframeBitmap_choice_bs_bits_unused      = 0;
+/*    rxPool_dataHoppingConfig_hoppingParameter                       = 0;
+      rxPool_dataHoppingConfig_numSubbands                            = "ns1";
+      rxPool_dataHoppingConfig_rbOffset                               = 0;
+      rxPool_commTxResourceUC-ReqAllowed                              = "TRUE";
+*/    
+      // Parameters for SIB19
+      discRxPool_cp_Len                                               = "normal"
+      discRxPool_discPeriod                                           = "rf32"
+      discRxPool_numRetx                                              = 1;   
+      discRxPool_numRepetition                                        = 2;
+      discRxPool_ResourceConfig_prb_Num                               = 5;  
+      discRxPool_ResourceConfig_prb_Start                             = 3;
+      discRxPool_ResourceConfig_prb_End                               = 21;
+      discRxPool_ResourceConfig_offsetIndicator_present               = "prSmall";
+      discRxPool_ResourceConfig_offsetIndicator_choice                = 0;      
+      discRxPool_ResourceConfig_subframeBitmap_present                = "prBs40";
+      discRxPool_ResourceConfig_subframeBitmap_choice_bs_buf          = "f0ffffffff";
+      discRxPool_ResourceConfig_subframeBitmap_choice_bs_size         = 5;
+      discRxPool_ResourceConfig_subframeBitmap_choice_bs_bits_unused  = 0;
+
+			 }
+			 );
+
+    srb1_parameters :
+    {
+        # timer_poll_retransmit = (ms) [5, 10, 15, 20,... 250, 300, 350, ... 500]
+        timer_poll_retransmit    = 80;
+
+        # timer_reordering = (ms) [0,5, ... 100, 110, 120, ... ,200]
+        timer_reordering         = 35;
+
+        # timer_reordering = (ms) [0,5, ... 250, 300, 350, ... ,500]
+        timer_status_prohibit    = 0;
+
+        # poll_pdu = [4, 8, 16, 32 , 64, 128, 256, infinity(>10000)]
+        poll_pdu                 =  4;
+
+        # poll_byte = (kB) [25,50,75,100,125,250,375,500,750,1000,1250,1500,2000,3000,infinity(>10000)]
+        poll_byte                =  99999;
+
+        # max_retx_threshold = [1, 2, 3, 4 , 6, 8, 16, 32]
+        max_retx_threshold       =  4;
+    }
+
+    # ------- SCTP definitions
+    SCTP :
+    {
+        # Number of streams to use in input/output
+        SCTP_INSTREAMS  = 2;
+        SCTP_OUTSTREAMS = 2;
+    };
+
+    enable_measurement_reports = "yes";
+
+    ////////// MME parameters:
+    mme_ip_address      = ( { ipv4       = "192.168.18.99";
+                              ipv6       = "192:168:30::17";
+                              active     = "yes";
+                              preference = "ipv4";
+                            }
+                          );
+
+    ///X2
+    enable_x2 = "yes";
+    t_reloc_prep      = 1000;      /* unit: millisecond */
+    tx2_reloc_overall = 2000;      /* unit: millisecond */
+
+    NETWORK_INTERFACES : 
+    {
+        ENB_INTERFACE_NAME_FOR_S1_MME            = "eth1";
+        ENB_IPV4_ADDRESS_FOR_S1_MME              = "192.168.18.199/24";
+
+        ENB_INTERFACE_NAME_FOR_S1U               = "eth1";
+        ENB_IPV4_ADDRESS_FOR_S1U                 = "192.168.18.199/24";
+        ENB_PORT_FOR_S1U                         = 2152; # Spec 2152
+
+        ENB_IPV4_ADDRESS_FOR_X2C                 = "192.168.18.199/24";
+        ENB_PORT_FOR_X2C                         = 36422; # Spec 36422
+    };
+    
+    log_config : 
+    {
+	global_log_level                      ="info"; 
+    	global_log_verbosity                  ="high";
+	hw_log_level                          ="info"; 
+    	hw_log_verbosity                      ="medium";
+	phy_log_level                         ="info"; 
+    	phy_log_verbosity                     ="medium";
+	mac_log_level                         ="info"; 
+    	mac_log_verbosity                     ="high";
+	rlc_log_level                         ="debug"; 
+    	rlc_log_verbosity                     ="high";
+	pdcp_log_level                        ="info"; 
+    	pdcp_log_verbosity                    ="high";
+	rrc_log_level                         ="info"; 
+    	rrc_log_verbosity                     ="medium";
+   };	
+   
+  }
+);
+
+MACRLCs = (
+        {
+        num_cc = 1;
+        tr_s_preference = "local_L1";
+        tr_n_preference = "local_RRC";
+        phy_test_mode = 0;
+        puSch10xSnr     =  160;
+        puCch10xSnr     =  160;
+        }  
+);
+
+THREAD_STRUCT = (
+  {
+    parallel_config = "PARALLEL_RU_L1_TRX_SPLITaaaaaa";
+    worker_config = "ENABLE";
+  }
+);
+
+L1s = (
+        {
+        num_cc = 1;
+        tr_n_preference = "local_mac";
+        }  
+);
+
+RUs = (
+    {             
+       local_rf       = "yes"
+         nb_tx          = 1
+         nb_rx          = 1
+         att_tx         = 0
+         att_rx         = 0;
+         bands          = [7];
+         max_pdschReferenceSignalPower = -27;
+         max_rxgain                    = 118;
+         eNB_instances  = [0];
+         clock_src = "external";
+    }
+);  
+
+    log_config : 
+    {
+	global_log_level                      ="info"; 
+    	global_log_verbosity                  ="high";
+	hw_log_level                          ="info"; 
+    	hw_log_verbosity                      ="medium";
+	phy_log_level                         ="info"; 
+    	phy_log_verbosity                     ="medium";
+	mac_log_level                         ="info"; 
+    	mac_log_verbosity                     ="high";
+	rlc_log_level                         ="info"; 
+    	rlc_log_verbosity                     ="high";
+	pdcp_log_level                        ="info"; 
+    	pdcp_log_verbosity                    ="high";
+	rrc_log_level                         ="info"; 
+    	rrc_log_verbosity                     ="medium";
+   };	
diff --git a/targets/PROJECTS/GENERIC-LTE-EPC/CONF/testing_gnb.conf b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/testing_gnb.conf
new file mode 100644
index 0000000000000000000000000000000000000000..b63939add2be238eeee83d1d0f710a793e30ba2b
--- /dev/null
+++ b/targets/PROJECTS/GENERIC-LTE-EPC/CONF/testing_gnb.conf
@@ -0,0 +1,293 @@
+Active_gNBs = ( "gNB-Eurecom-5GNRBox");
+# Asn1_verbosity, choice in: none, info, annoying
+Asn1_verbosity = "none";
+
+gNBs =
+(
+ {
+    ////////// Identification parameters:
+    gNB_ID    =  0xe00;
+
+    cell_type =  "CELL_MACRO_GNB";
+
+    gNB_name  =  "gNB-Eurecom-5GNRBox";
+
+    // Tracking area code, 0x0000 and 0xfffe are reserved values
+    tracking_area_code  =  1;
+
+    plmn_list = ({mcc = 222; mnc = 01; mnc_length = 2;});	 
+
+    tr_s_preference     = "local_mac"
+
+    ////////// Physical parameters:
+
+    ssb_SubcarrierOffset                                      = 31; //0;
+    pdsch_AntennaPorts                                        = 1;
+	
+    servingCellConfigCommon = (
+    {
+ #spCellConfigCommon
+
+      physCellId                                                    = 0;
+
+#  downlinkConfigCommon
+    #frequencyInfoDL
+      # this is 3600 MHz + 84 PRBs@30kHz SCS (same as initial BWP)
+      absoluteFrequencySSB                                          = 641272; //641032;      #641968; 641968=start of ssb at 3600MHz + 82 RBs    641032=center of SSB at center of cell
+      dl_frequencyBand                                                 = 78;
+      # this is 3600 MHz
+      dl_absoluteFrequencyPointA                                       = 640000;
+      #scs-SpecificCarrierList
+        dl_offstToCarrier                                              = 0;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        dl_subcarrierSpacing                                           = 1;
+        dl_carrierBandwidth                                            = 106;
+     #initialDownlinkBWP
+      #genericParameters
+        # this is RBstart=84,L=13 (275*(L-1))+RBstart
+        initialDLBWPlocationAndBandwidth                                        = 6366; //28875; //6366; #6407; #3384;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        initialDLBWPsubcarrierSpacing                                           = 1;
+      #pdcch-ConfigCommon
+        initialDLBWPcontrolResourceSetZero                                      = 0;
+        initialDLBWPsearchSpaceZero                                             = 0;
+      #pdsch-ConfigCommon
+        #pdschTimeDomainAllocationList (up to 16 entries)
+             initialDLBWPk0_0                    = 0;
+             #initialULBWPmappingType
+	     #0=typeA,1=typeB
+             initialDLBWPmappingType_0           = 0;
+             #this is SS=1,L=13
+             initialDLBWPstartSymbolAndLength_0  = 40;
+
+             initialDLBWPk0_1                    = 0;
+             initialDLBWPmappingType_1           = 0;
+             #this is SS=2,L=12 
+             initialDLBWPstartSymbolAndLength_1  = 53;
+
+             initialDLBWPk0_2                    = 0;
+             initialDLBWPmappingType_2           = 0;
+             #this is SS=1,L=12 
+             initialDLBWPstartSymbolAndLength_2  = 54;
+
+             initialDLBWPk0_3                    = 0;
+             initialDLBWPmappingType_3           = 0;
+             #this is SS=1,L=4 //5 (4 is for 43, 5 is for 57)
+             initialDLBWPstartSymbolAndLength_3  = 57; //43; //57;
+  #uplinkConfigCommon 
+     #frequencyInfoUL
+      ul_frequencyBand                                                 = 78;
+      #scs-SpecificCarrierList
+      ul_offstToCarrier                                              = 0;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      ul_subcarrierSpacing                                           = 1;
+      ul_carrierBandwidth                                            = 106;
+      pMax                                                          = 20;
+     #initialUplinkBWP
+      #genericParameters
+        initialULBWPlocationAndBandwidth                                        = 6366; //28875; //6366; #6407; #3384;
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+        initialULBWPsubcarrierSpacing                                           = 1;
+      #rach-ConfigCommon
+        #rach-ConfigGeneric
+          prach_ConfigurationIndex                                  = 98;
+#prach_msg1_FDM
+#0 = one, 1=two, 2=four, 3=eight
+          prach_msg1_FDM                                            = 0;
+          prach_msg1_FrequencyStart                                 = 0;
+          zeroCorrelationZoneConfig                                 = 13;
+          preambleReceivedTargetPower                               = -100;
+#preamblTransMax (0...10) = (3,4,5,6,7,8,10,20,50,100,200)
+          preambleTransMax                                          = 6;
+#powerRampingStep
+# 0=dB0,1=dB2,2=dB4,3=dB6
+        powerRampingStep                                            = 1;
+#ra_ReponseWindow
+#1,2,4,8,10,20,40,80
+        ra_ResponseWindow                                           = 5;
+#ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR
+#1=oneeighth,2=onefourth,3=half,4=one,5=two,6=four,7=eight,8=sixteen
+        ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR                = 4;
+#oneHalf (0..15) 4,8,12,16,...60,64
+        ssb_perRACH_OccasionAndCB_PreamblesPerSSB                   = 14; //15;
+#ra_ContentionResolutionTimer
+#(0..7) 8,16,24,32,40,48,56,64
+        ra_ContentionResolutionTimer                                = 7;
+        rsrp_ThresholdSSB                                           = 19;
+#prach-RootSequenceIndex_PR
+#1 = 839, 2 = 139
+        prach_RootSequenceIndex_PR                                  = 2;
+        prach_RootSequenceIndex                                     = 1;
+        # SCS for msg1, can only be 15 for 30 kHz < 6 GHz, takes precendence over the one derived from prach-ConfigIndex
+        #  
+        msg1_SubcarrierSpacing                                      = 1,
+
+# restrictedSetConfig
+# 0=unrestricted, 1=restricted type A, 2=restricted type B
+        restrictedSetConfig                                         = 0,
+      # pusch-ConfigCommon (up to 16 elements)
+        initialULBWPk2_0                      = 2;
+        initialULBWPmappingType_0             = 1
+        # this is SS=0 L=11
+        initialULBWPstartSymbolAndLength_0    = 55;
+ 	
+	initialULBWPk2_1                      = 2;
+        initialULBWPmappingType_1             = 1;
+        # this is SS=0 L=12
+        initialULBWPstartSymbolAndLength_1    = 69;
+
+        initialULBWPk2_2                      = 7;
+        initialULBWPmappingType_2             = 1;
+        # this is SS=10 L=4
+        initialULBWPstartSymbolAndLength_2    = 52;
+
+        msg3_DeltaPreamble                                          = 1;
+        p0_NominalWithGrant                                         =-90;
+
+# pucch-ConfigCommon setup :
+# pucchGroupHopping
+# 0 = neither, 1= group hopping, 2=sequence hopping
+        pucchGroupHopping                                           = 0;
+        hoppingId                                                   = 40;
+        p0_nominal                                                  = -90;
+# ssb_PositionsInBurs_BitmapPR
+# 1=short, 2=medium, 3=long
+      ssb_PositionsInBurst_PR                                       = 2;
+      ssb_PositionsInBurst_Bitmap                                   = 1; #0x80;
+
+# ssb_periodicityServingCell
+# 0 = ms5, 1=ms10, 2=ms20, 3=ms40, 4=ms80, 5=ms160, 6=spare2, 7=spare1 
+      ssb_periodicityServingCell                                    = 2;
+
+# dmrs_TypeA_position
+# 0 = pos2, 1 = pos3
+      dmrs_TypeA_Position                                           = 0;
+
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      subcarrierSpacing                                             = 1;
+
+
+  #tdd-UL-DL-ConfigurationCommon
+# subcarrierSpacing
+# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120  
+      referenceSubcarrierSpacing                                    = 1;
+      # pattern1 
+      # dl_UL_TransmissionPeriodicity
+      # 0=ms0p5, 1=ms0p625, 2=ms1, 3=ms1p25, 4=ms2, 5=ms2p5, 6=ms5, 7=ms10
+      dl_UL_TransmissionPeriodicity                                 = 6;
+      nrofDownlinkSlots                                             = 7; //8; //7;
+      nrofDownlinkSymbols                                           = 6; //0; //6;
+      nrofUplinkSlots                                               = 2;
+      nrofUplinkSymbols                                             = 4; //0; //4;
+
+  ssPBCH_BlockPower                                             = -25;
+  }
+
+  );
+
+
+    # ------- SCTP definitions
+    SCTP :
+    {
+        # Number of streams to use in input/output
+        SCTP_INSTREAMS  = 2;
+        SCTP_OUTSTREAMS = 2;
+    };
+
+
+    ////////// MME parameters:
+    mme_ip_address      = ( { ipv4       = "192.168.18.99";
+                              ipv6       = "192:168:30::17";
+                              active     = "yes";
+                              preference = "ipv4";
+                            }
+                          );
+
+    ///X2
+    enable_x2 = "yes";
+    t_reloc_prep      = 1000;      /* unit: millisecond */
+    tx2_reloc_overall = 2000;      /* unit: millisecond */
+    target_enb_x2_ip_address      = (
+                                     { ipv4       = "192.168.18.199";
+                                       ipv6       = "192:168:30::17";
+                                       preference = "ipv4";
+                                     }
+                                    );
+
+    NETWORK_INTERFACES :
+    {
+
+        GNB_INTERFACE_NAME_FOR_S1_MME            = "eth0";
+        GNB_IPV4_ADDRESS_FOR_S1_MME              = "192.168.18.198/24";
+        GNB_INTERFACE_NAME_FOR_S1U               = "eth0";
+        GNB_IPV4_ADDRESS_FOR_S1U                 = "192.168.18.198/24";
+        GNB_PORT_FOR_S1U                         = 2152; # Spec 2152
+        GNB_IPV4_ADDRESS_FOR_X2C                 = "192.168.18.198/24";
+        GNB_PORT_FOR_X2C                         = 36422; # Spec 36422
+    };
+  }
+);
+
+MACRLCs = (
+	{
+	num_cc = 1;
+	tr_s_preference = "local_L1";
+	tr_n_preference = "local_RRC";
+        }  
+);
+
+L1s = (
+    	{
+	num_cc = 1;
+	tr_n_preference = "local_mac";
+        }  
+);
+
+RUs = (
+    {		  
+       local_rf       = "yes"
+         nb_tx          = 1
+         nb_rx          = 1
+         att_tx         = 0
+         att_rx         = 0;
+         bands          = [7];
+         max_pdschReferenceSignalPower = -27;
+         max_rxgain                    = 114;
+         eNB_instances  = [0];
+         clock_src = "external";
+    }
+);  
+
+THREAD_STRUCT = (
+  {
+    #three config for level of parallelism "PARALLEL_SINGLE_THREAD", "PARALLEL_RU_L1_SPLIT", or "PARALLEL_RU_L1_TRX_SPLIT"
+    //parallel_config    = "PARALLEL_RU_L1_TRX_SPLIT";
+    parallel_config    = "PARALLEL_SINGLE_THREAD";
+    #two option for worker "WORKER_DISABLE" or "WORKER_ENABLE"
+    worker_config      = "WORKER_ENABLE";
+  }
+);
+
+     log_config :
+     {
+       global_log_level                      ="info";
+       global_log_verbosity                  ="medium";
+       hw_log_level                          ="info";
+       hw_log_verbosity                      ="medium";
+       phy_log_level                         ="info";
+       phy_log_verbosity                     ="medium";
+       mac_log_level                         ="info";
+       mac_log_verbosity                     ="high";
+       rlc_log_level                         ="info";
+       rlc_log_verbosity                     ="medium";
+       pdcp_log_level                        ="info";
+       pdcp_log_verbosity                    ="medium";
+       rrc_log_level                         ="info";
+       rrc_log_verbosity                     ="medium";
+    };
+