| 
					
				 | 
			
			
				@@ -1516,6 +1516,9 @@ function xmlToTracks(xmlString: string) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   const partNames = Array.from(xmlParse.getElementsByTagName('part-name')); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   return partNames.reduce((arr: string[], item) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     const textContent = item?.textContent?.trim() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    if (textContent?.toLocaleLowerCase() === "common") { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      (window as any).HasCommonTrack = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     if (textContent != "COMMON" && textContent != "common" && textContent) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       arr.push(textContent) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 |