|  | @@ -715,6 +715,13 @@ const gclGatherModel = (function () {
 | 
	
		
			
				|  |  |                  gatherfields(glx, lx, ancillaryGclGatherFields);
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  | +        gcl.gatherAncGcl.sort((a, b) => {
 | 
	
		
			
				|  |  | +            if (a.is_aux === b.is_aux) {
 | 
	
		
			
				|  |  | +                return a.name < b.name ? -1 : 1;
 | 
	
		
			
				|  |  | +            } else {
 | 
	
		
			
				|  |  | +                return a.is_aux - b.is_aux;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      function reGatherAncillaryGcl(fields) {
 |