Jump to content

[KSP 1.10.0] Kerbal Simpit: A KSP serial mod for hardware controllers (1.4.1)


stibbons

Recommended Posts

Minor 0.3 release has just been uploaded. This tweaks the stage action so that sending multiple bytes will work how you'd expect - each byte performs a separate action. It also adds a stageEvent() function to the arduino library, so you can indeed just do mySimPit.stageEvent() to activate the next stage. The stage demo example sketch has been updated to use it.

More documentation, including a real change log, to come very soon.

Link to comment
Share on other sites

Hej.

The compiler tells me this:

 

#include "KerbalSimPit.h"

void KerbalSimPit::stageEvent()
{
  send(STAGE_PACKET, [0x01, 0x02], 2);
}

 

exit status 1
expected identifier before numeric constant

Link to comment
Share on other sites

Some more problems I ran into, using the "old" version16(?).

I was trying out the Altitude example. Most of the time it doesn't seem to work for me. The log is spammed with this:


[ERR 18:02:14.788] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[ERR 18:02:14.789] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null


[LOG 18:02:14.790] KerbalSimPit: ActionGroupsExtended installed: False
[LOG 18:02:14.818] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:14.819] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 18:02:14.898] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:14.899] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 18:02:14.979] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:14.980] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 18:02:15.061] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:15.062] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 18:02:15.064] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:15.064] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 18:02:15.144] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:15.146] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 18:02:15.147] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:15.149] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 18:02:15.392] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 18:02:15.394] KerbalSimPit: Serial port 0 subscribing to channel 4

RX keeps blinking but the builtin LED doesn't light up once I reach 5000m. Sometimes, very rare, it works. And on other times RX stops blinking before I even reach 5000m. Restarting the arduino gets confusing results. Sometimes the LED lights up or it doesn't light up. RX and TX are blinking or they don't. Very chaotic results there.

Do you have a procedure I could try, that would help debug this?

 

 

And on a third matter. I tried to merge the staging and the altitude metering. But once I register to the data stream

<mySimPit.registerChannel(ALTITUDE_PACKET);>

the staging button doesn't work anymore. TX blinks/sends data when I press the button. But KSP does nothing.

Do I have to split receiving and sending Arduinos? Is it meant to be this way?

Link to comment
Share on other sites

Erk, sorry. The constant handshaking implies that the Arduino is continually resetting. That would seem to indicate either a bug in the code that subscribes to events, or the code that is receiving and parsing the altitude data. Seeing as the staging sketch works, that rules out the event subscribing. 

OK, I do have a spare mega at home and can replicate what you're doing to see how it could be going wrong. But debugging this sort of stuff is pretty annoying. I usually end up using status LEDs to fire at different points in the arduino code so I know they're executing successfully.

10 hours ago, Benji said:

rbalSimPit.h"

void KerbalSimPit::stageEvent()
{
  send(STAGE_PACKET, [0x01, 0x02], 2);
}

 

exit status 1
expected identifier before numeric constant

Also, I'm a massive idiot and shipped code I hadn't actually run at all. Will definitely do the fix for that properly.

Link to comment
Share on other sites

On 30.1.2017 at 6:07 PM, stibbons said:

 

  • Custom action group commands, with full support for Action Groups Extended actions.

I assume executing the ActionGroups works this way?:


      mySimPit.send(CAGACTIVATE_PACKET, ....etc.

What goes in the etc.-part ? How do I choose the ACG (0-9) I want to trigger. (activate, deactivate?)

 

I also see CAGDEACTIVATE_PACKET in the header-file. How does this work KSP-internally?

Does activating and deactivating CAG in the arduino-code correspond to activating, deactivating an antenna, when it's action is assigned to toggle in the VAB-ACG-Menu?

Edited by Benji
Link to comment
Share on other sites

Sorry, still having some issues.

I'm using this code:

#include "KerbalSimPit.h"

//Establishing a connection to the Plugin
KerbalSimPit SimPit(115200);


//Setting up the object to handle altitude data
struct altitudeStruct
{
  float alt;
  float surfalt;
} Altitude;
//altitudeStruct Altitude;

//Where are the buttons connected to?
const int button_stage = 2;

//Where are the meters?
const int meter_alt = 7; //analogWrite valus from 0 to 157

//Command states to know when to send something to KSP
bool cmd_stage;

//The last time something was sent to KSP
long lastSendTime = 0;


//Starting the Arduino
void setup()
{
//Setting up the buttons
  pinMode(button_stage, INPUT_PULLUP);
  pinMode(button_abort, INPUT_PULLUP);

//Setting up the meters
  pinMode(meter_alt, OUTPUT);
  analogWrite(meter_alt, 0);

//Setting up the LED on the Arduino
  pinMode(LED_BUILTIN, OUTPUT);
  digitalWrite(LED_BUILTIN, HIGH);
  analogWrite(meter_alt, 157);

//Stay in this loop as long as no connection established
  while(!SimPit.init())
  {
  }
//Once a connection is established, light up the LED on the Arduino
  digitalWrite(LED_BUILTIN, LOW);
  analogWrite(meter_alt, 0);

//Initializing all about packets
  SimPit.inboundHandler(packetHandler);
//Registering to the altitude data stream
  SimPit.registerChannel(ALTITUDE_PACKET);
}


//Looping
void loop()
{

  SimPit.update();

//Checking if the BUTTON TO STAGE is pressed
  if (!digitalRead(button_stage))
  {
    cmd_stage = true;
  }
//Only send something if the last time we sended was more than 50 milliseconds ago
  if (lastSendTime+50 < millis())
  {
//Set the last time we sent something to now
    lastSendTime = millis();
    
//Send the COMMAND TO STAGE
    if (cmd_stage)
    {
      SimPit.stageEvent();
      cmd_stage = false;
    }
  }
}

void packetHandler(byte packetType, byte *msg, byte msgSize)
{
  switch(packetType)
  {
  case ALTITUDE_PACKET:
    if (msgSize == sizeof(Altitude))
    {
      altitudeHandler(msg);
    }
    break;
  }
}

void altitudeHandler(byte *msg)
{
  memcpy(&Altitude, msg, sizeof(Altitude));

  if (Altitude.surfalt < 3001)
    analogWrite(meter_alt, (int)(Altitude.surfalt / 19.1));
  else
    analogWrite(meter_alt, 160);
}

So, now my Altitude meter is working. It's a voltmeter, working within 3 V, so I'm dividing 3000m above ground into 157 steps. Sometimes the needle gets stuck and the RX-LED stops. After pressing my stage button it works some-few-mpre seconds. Than the needle hangs again. Staging gets the RX blinking again. And while pressing Stage, TX is blinking, but the rocket doesn't stage. All this is producing this log:

[LOG 23:14:06.461] ******* Log Initiated for Kerbal Space Program - 1.2.2.1622 (WindowsPlayer x64) *******
Kerbal Space Program - 1.2.2.1622 (WindowsPlayer x64)


OS: Windows 7 Service Pack 1 (6.1.7601) 64bit
CPU: AMD FX-8370 Eight-Core Processor  (8)
RAM: 16341
GPU: NVIDIA GeForce GTX 970 (4008MB)
SM: 30 (Direct3D 9.0c [nvd3dumx.dll 22.21.13.8165])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, Default, ARGB2101010, DefaultHDR, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8


Log started: Mon, Apr 10, 2017 23:14:06


[WRN 23:14:07.735] [SpaceNavigatorWindows]: Could not initialize device.

[LOG 23:14:07.737] MainCanvas MASK: 3458764513820540928
[LOG 23:14:08.646] Load(Assembly): KerbalSimPit/KerbalSimPit
[LOG 23:14:08.674] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\KerbalSimPit\KerbalSimPit.dll
[LOG 23:14:08.846] AssemblyLoader: KSPAssembly 'KerbalSimPit' V0.3
[LOG 23:14:08.847] Load(Assembly): KerbalSimPit/SerialPortLib2
[LOG 23:14:08.848] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\KerbalSimPit\SerialPortLib2.dll
[LOG 23:14:08.852] Load(Assembly): Squad/Plugins/KSPSteamCtrlr
[LOG 23:14:08.853] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\Plugins\KSPSteamCtrlr.dll
[LOG 23:14:08.855] Load(Assembly): Squad/Plugins/Steamworks.NET
[LOG 23:14:08.856] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\Plugins\Steamworks.NET.dll
[LOG 23:14:08.861] AssemblyLoader: Loading assemblies
[LOG 23:14:08.919] VesselModules: Found VesselModule of type CommNetVessel with order 999
[LOG 23:14:08.923] VesselModules: Found VesselModule of type FlightIntegrator with order 0
[LOG 23:14:08.926] VesselModules: Found 2 VesselModule types
[LOG 23:14:08.935] 
************************************************************************

Environment Info
Win32NT 7FFFFFFFFFFFFFFF  Args: KSP_x64.exe 

Mod DLLs found:
Stock assembly: Assembly-CSharp v1.0.0.0
KerbalSimPit v0.3.0.0
SerialPortLib2 v1.0.2.0
Stock assembly: KSPSteamCtrlr v0.0.1.35
Stock assembly: Steamworks.NET v9.0.0.0 / v9.0.0

Folders and files in GameData:
KerbalSimPit
Stock folder: Squad


************************************************************************

[LOG 23:14:08.946] [AddonLoader]: Instantiating addon 'KerbalSimPit' from assembly 'KerbalSimPit'
[LOG 23:14:08.948] [AddonLoader]: Instantiating addon 'KSPSteamController' from assembly 'KSPSteamCtrlr'
[ERR 23:14:09.190] <color=orange><b>[KSPSteamController]:</b> Failed to initialize Steam API!</color>

[LOG 23:14:09.583] Load(Audio): Squad/Sounds/editorLoop01
[LOG 23:14:09.590] PhysicsGlobals: Loading database
[LOG 23:14:09.604] AppCanvas MASK: 3458764513820540928
[LOG 23:14:09.605] ActionCanvas MASK: 3458764513820540928
[LOG 23:14:09.612] KerbalSimPit: Settings loaded.
[LOG 23:14:09.614] KerbalSimPit: Found 1 serial ports
[LOG 23:14:09.629] KerbalSimPit: Opened COM4
[LOG 23:14:09.629] KerbalSimPit: Starting read thread for port COM4
[LOG 23:14:09.630] KerbalSimPit: Started.
[LOG 23:14:09.630] KerbalSimPit: Starting event dispatch loop
[LOG 23:14:09.646] KerbalSimPit: SYN received on port COM4. Replying.
[LOG 23:14:09.649] KerbalSimPit: SYN received on port COM4. Replying.
[LOG 23:14:09.657] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 23:14:09.659] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:14:09.948] Load(Audio): Squad/Sounds/elev_loop
[LOG 23:14:09.986] Load(Audio): Squad/Sounds/elev_start
[LOG 23:14:09.998] Load(Audio): Squad/Sounds/elev_stop
[LOG 23:14:10.017] Load(Audio): Squad/Sounds/sound_ambience_nature
[LOG 23:14:10.035] Load(Audio): Squad/Sounds/sound_click_flick
[LOG 23:14:10.047] Load(Audio): Squad/Sounds/sound_click_latch
[LOG 23:14:10.058] Load(Audio): Squad/Sounds/sound_click_sharp
[LOG 23:14:10.070] Load(Audio): Squad/Sounds/sound_click_tick
[LOG 23:14:10.082] Load(Audio): Squad/Sounds/sound_click_tock
[LOG 23:14:10.093] Load(Audio): Squad/Sounds/sound_decoupler_fire
[LOG 23:14:10.105] Load(Audio): Squad/Sounds/sound_delete_bin
[LOG 23:14:10.116] Load(Audio): Squad/Sounds/sound_explosion_debris1
[LOG 23:14:10.131] Load(Audio): Squad/Sounds/sound_explosion_debris2
[LOG 23:14:10.145] Load(Audio): Squad/Sounds/sound_explosion_large
[LOG 23:14:10.159] Load(Audio): Squad/Sounds/sound_rocket_mini
[LOG 23:14:10.171] Load(Audio): Squad/Sounds/sound_rocket_spurts
[LOG 23:14:10.186] Load(Audio): Squad/Sounds/sound_servomotor
[LOG 23:14:10.199] Load(Audio): Squad/Sounds/sound_tab_extend
[LOG 23:14:10.209] Load(Audio): Squad/Sounds/sound_tab_retreat
[LOG 23:14:10.219] Load(Texture): Squad/Agencies/C7AerospaceDivision
[LOG 23:14:10.226] Load(Texture): Squad/Agencies/C7AerospaceDivision_scaled
[LOG 23:14:10.235] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium
[LOG 23:14:10.240] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium_scaled
[LOG 23:14:10.246] Load(Texture): Squad/Agencies/ExperimentalEngineering
[LOG 23:14:10.251] Load(Texture): Squad/Agencies/ExperimentalEngineering_scaled
[LOG 23:14:10.256] Load(Texture): Squad/Agencies/FlooydResearchLab
[LOG 23:14:10.261] Load(Texture): Squad/Agencies/FlooydResearchLab_scaled
[LOG 23:14:10.266] Load(Texture): Squad/Agencies/GoliathNationalProducts
[LOG 23:14:10.270] Load(Texture): Squad/Agencies/GoliathNationalProducts_scaled
[LOG 23:14:10.275] Load(Texture): Squad/Agencies/IntegratedIntegrals
[LOG 23:14:10.280] Load(Texture): Squad/Agencies/IntegratedIntegrals_scaled
[LOG 23:14:10.285] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics
[LOG 23:14:10.290] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics_scaled
[LOG 23:14:10.295] Load(Texture): Squad/Agencies/JebsJunkyard
[LOG 23:14:10.300] Load(Texture): Squad/Agencies/JebsJunkyard_scaled
[LOG 23:14:10.305] Load(Texture): Squad/Agencies/KerbalMotion
[LOG 23:14:10.310] Load(Texture): Squad/Agencies/KerbalMotion_scaled
[LOG 23:14:10.315] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety
[LOG 23:14:10.320] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety_scaled
[LOG 23:14:10.325] Load(Texture): Squad/Agencies/Kerbodyne
[LOG 23:14:10.330] Load(Texture): Squad/Agencies/Kerbodyne_scaled
[LOG 23:14:10.335] Load(Texture): Squad/Agencies/Kerlington
[LOG 23:14:10.339] Load(Texture): Squad/Agencies/Kerlington_scaled
[LOG 23:14:10.343] Load(Texture): Squad/Agencies/MaxoConstructionToys
[LOG 23:14:10.348] Load(Texture): Squad/Agencies/MaxoConstructionToys_scaled
[LOG 23:14:10.353] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup
[LOG 23:14:10.358] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup_scaled
[LOG 23:14:10.363] Load(Texture): Squad/Agencies/OMBDemolition
[LOG 23:14:10.368] Load(Texture): Squad/Agencies/OMBDemolition_scaled
[LOG 23:14:10.373] Load(Texture): Squad/Agencies/PeriapsisCo
[LOG 23:14:10.377] Load(Texture): Squad/Agencies/PeriapsisCo_scaled
[LOG 23:14:10.382] Load(Texture): Squad/Agencies/Probodobodyne
[LOG 23:14:10.387] Load(Texture): Squad/Agencies/Probodobodyne_scaled
[LOG 23:14:10.391] Load(Texture): Squad/Agencies/R&D
[LOG 23:14:10.396] Load(Texture): Squad/Agencies/R&D_scaled
[LOG 23:14:10.401] Load(Texture): Squad/Agencies/ReactionSystemsLtd
[LOG 23:14:10.406] Load(Texture): Squad/Agencies/ReactionSystemsLtd_scaled
[LOG 23:14:10.411] Load(Texture): Squad/Agencies/Rockomax
[LOG 23:14:10.415] Load(Texture): Squad/Agencies/Rockomax_scaled
[LOG 23:14:10.420] Load(Texture): Squad/Agencies/Rokea
[LOG 23:14:10.425] Load(Texture): Squad/Agencies/Rokea_scaled
[LOG 23:14:10.430] Load(Texture): Squad/Agencies/SeansCannery
[LOG 23:14:10.435] Load(Texture): Squad/Agencies/SeansCannery_scaled
[LOG 23:14:10.439] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps
[LOG 23:14:10.444] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps_scaled
[LOG 23:14:10.449] Load(Texture): Squad/Agencies/StrutCo
[LOG 23:14:10.454] Load(Texture): Squad/Agencies/StrutCo_scaled
[LOG 23:14:10.458] Load(Texture): Squad/Agencies/Vac-Co
[LOG 23:14:10.463] Load(Texture): Squad/Agencies/Vac-Co_scaled
[LOG 23:14:10.468] Load(Texture): Squad/Agencies/WinterOwl
[LOG 23:14:10.473] Load(Texture): Squad/Agencies/WinterOwl_scaled
[LOG 23:14:10.478] Load(Texture): Squad/Agencies/ZaltonicElectronics
[LOG 23:14:10.483] Load(Texture): Squad/Agencies/ZaltonicElectronics_scaled
[LOG 23:14:10.487] Load(Texture): Squad/Contracts/Icons/balloon
[LOG 23:14:10.492] Load(Texture): Squad/Contracts/Icons/custom
[LOG 23:14:10.497] Load(Texture): Squad/Contracts/Icons/default
[LOG 23:14:10.502] Load(Texture): Squad/Contracts/Icons/dish
[LOG 23:14:10.507] Load(Texture): Squad/Contracts/Icons/eva
[LOG 23:14:10.511] Load(Texture): Squad/Contracts/Icons/gravity
[LOG 23:14:10.515] Load(Texture): Squad/Contracts/Icons/marker
[LOG 23:14:10.520] Load(Texture): Squad/Contracts/Icons/pressure
[LOG 23:14:10.524] Load(Texture): Squad/Contracts/Icons/report
[LOG 23:14:10.529] Load(Texture): Squad/Contracts/Icons/sample
[LOG 23:14:10.533] Load(Texture): Squad/Contracts/Icons/seismic
[LOG 23:14:10.538] Load(Texture): Squad/Contracts/Icons/thermometer
[LOG 23:14:10.542] Load(Texture): Squad/Contracts/Icons/vessel
[LOG 23:14:10.547] Load(Texture): Squad/Flags/09
[LOG 23:14:10.565] Load(Texture): Squad/Flags/blorbs
[LOG 23:14:10.578] Load(Texture): Squad/Flags/bullseye
[LOG 23:14:10.590] Load(Texture): Squad/Flags/capsule
[LOG 23:14:10.603] Load(Texture): Squad/Flags/circles
[LOG 23:14:10.617] Load(Texture): Squad/Flags/default
[LOG 23:14:10.631] Load(Texture): Squad/Flags/esa_dark_blue
[LOG 23:14:10.645] Load(Texture): Squad/Flags/hexagon
[LOG 23:14:10.657] Load(Texture): Squad/Flags/hexagonCircles
[LOG 23:14:10.670] Load(Texture): Squad/Flags/kerbal1
[LOG 23:14:10.683] Load(Texture): Squad/Flags/kerbal2
[LOG 23:14:10.696] Load(Texture): Squad/Flags/kerbin
[LOG 23:14:10.711] Load(Texture): Squad/Flags/kerbinmunflag
[LOG 23:14:10.723] Load(Texture): Squad/Flags/line
[LOG 23:14:10.736] Load(Texture): Squad/Flags/minimalistic
[LOG 23:14:10.751] Load(Texture): Squad/Flags/NASA
[LOG 23:14:10.767] Load(Texture): Squad/Flags/orbit
[LOG 23:14:10.781] Load(Texture): Squad/Flags/orbs
[LOG 23:14:10.793] Load(Texture): Squad/Flags/retro
[LOG 23:14:10.807] Load(Texture): Squad/Flags/rings
[LOG 23:14:10.820] Load(Texture): Squad/Flags/rocketScience
[LOG 23:14:10.835] Load(Texture): Squad/Flags/satellite
[LOG 23:14:10.848] Load(Texture): Squad/Flags/spheres
[LOG 23:14:10.861] Load(Texture): Squad/Flags/squadLogo
[LOG 23:14:10.874] Load(Texture): Squad/Flags/squadLogo2
[LOG 23:14:10.887] Load(Texture): Squad/Flags/stripes
[LOG 23:14:10.900] Load(Texture): Squad/Flags/trees
[LOG 23:14:10.913] Load(Texture): Squad/Flags/trippy
[LOG 23:14:10.931] Load(Texture): Squad/Flags/uk_space_agency
[LOG 23:14:10.945] Load(Texture): Squad/FX/DiamondBlue
[LOG 23:14:10.950] Load(Texture): Squad/FX/FlameBlueOrange
[LOG 23:14:10.954] Load(Texture): Squad/FX/FlamePurple
[LOG 23:14:10.958] Load(Texture): Squad/FX/FlameRed
[LOG 23:14:10.963] Load(Texture): Squad/FX/FlameRedOrange
[LOG 23:14:10.967] Load(Texture): Squad/FX/Monoprop
[LOG 23:14:10.972] Load(Texture): Squad/FX/plasma2
[LOG 23:14:10.976] Load(Texture): Squad/FX/rocketplume2
[LOG 23:14:10.981] Load(Texture): Squad/FX/shockDiamond2
[LOG 23:14:10.986] Load(Texture): Squad/FX/smokepuff1
[LOG 23:14:10.990] Load(Texture): Squad/PartList/SimpleIcons/cs_main
[LOG 23:14:11.003] Load(Texture): Squad/PartList/SimpleIcons/cs_mk2
[LOG 23:14:11.015] Load(Texture): Squad/PartList/SimpleIcons/cs_mk3
[LOG 23:14:11.028] Load(Texture): Squad/PartList/SimpleIcons/cs_size0
[LOG 23:14:11.039] Load(Texture): Squad/PartList/SimpleIcons/cs_size1
[LOG 23:14:11.052] Load(Texture): Squad/PartList/SimpleIcons/cs_size2
[LOG 23:14:11.064] Load(Texture): Squad/PartList/SimpleIcons/cs_size3
[LOG 23:14:11.076] Load(Texture): Squad/PartList/SimpleIcons/cs_surface
[LOG 23:14:11.088] Load(Texture): Squad/PartList/SimpleIcons/fuels_monopropellant
[LOG 23:14:11.102] Load(Texture): Squad/PartList/SimpleIcons/fuels_ore
[LOG 23:14:11.115] Load(Texture): Squad/PartList/SimpleIcons/fuels_oxidizer
[LOG 23:14:11.128] Load(Texture): Squad/PartList/SimpleIcons/fuels_solidfuel
[LOG 23:14:11.141] Load(Texture): Squad/PartList/SimpleIcons/fuels_xenongas
[LOG 23:14:11.153] Load(Texture): Squad/PartList/SimpleIcons/number1
[LOG 23:14:11.166] Load(Texture): Squad/PartList/SimpleIcons/number2
[LOG 23:14:11.178] Load(Texture): Squad/PartList/SimpleIcons/number3
[LOG 23:14:11.190] Load(Texture): Squad/PartList/SimpleIcons/number4
[LOG 23:14:11.202] Load(Texture): Squad/PartList/SimpleIcons/number5
[LOG 23:14:11.215] Load(Texture): Squad/PartList/SimpleIcons/number6
[LOG 23:14:11.227] Load(Texture): Squad/PartList/SimpleIcons/number7
[LOG 23:14:11.239] Load(Texture): Squad/PartList/SimpleIcons/number8
[LOG 23:14:11.252] Load(Texture): Squad/PartList/SimpleIcons/number9
[LOG 23:14:11.264] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advaerodynamics
[LOG 23:14:11.276] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advancedmotors
[LOG 23:14:11.289] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advconstruction
[LOG 23:14:11.302] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advelectrics
[LOG 23:14:11.314] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advexploration
[LOG 23:14:11.326] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advflightcontrol
[LOG 23:14:11.338] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advlanding
[LOG 23:14:11.351] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advmetalworks
[LOG 23:14:11.363] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advrocketry
[LOG 23:14:11.375] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advsciencetech
[LOG 23:14:11.387] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advunmanned
[LOG 23:14:11.400] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerodynamicsystems
[LOG 23:14:11.413] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerospacetech
[LOG 23:14:11.425] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_automation
[LOG 23:14:11.438] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicprobes
[LOG 23:14:11.450] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicrocketry
[LOG 23:14:11.463] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_composites
[LOG 23:14:11.475] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electrics
[LOG 23:14:11.487] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electronics
[LOG 23:14:11.500] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_evatech
[LOG 23:14:11.513] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalaerodynamics
[LOG 23:14:11.525] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalelectrics
[LOG 23:14:11.537] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalmotors
[LOG 23:14:11.549] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalrocketry
[LOG 23:14:11.562] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalscience
[LOG 23:14:11.574] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fieldscience
[LOG 23:14:11.587] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_flightcontrol
[LOG 23:14:11.596] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fuelsystems
[LOG 23:14:11.605] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalconstruction
[LOG 23:14:11.614] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalrocketry
[LOG 23:14:11.623] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generic
[LOG 23:14:11.632] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavierrocketry
[LOG 23:14:11.642] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyaerodynamics
[LOG 23:14:11.652] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyrocketry
[LOG 23:14:11.661] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudeflight
[LOG 23:14:11.670] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudepropulsion
[LOG 23:14:11.679] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_hypersonicflight
[LOG 23:14:11.688] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_ionpropulsion
[LOG 23:14:11.698] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_landing
[LOG 23:14:11.707] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largecontrol
[LOG 23:14:11.716] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeelectrics
[LOG 23:14:11.725] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeprobes
[LOG 23:14:11.735] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_metamaterials
[LOG 23:14:11.744] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nanolathing
[LOG 23:14:11.753] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nuclearpropulsion
[LOG 23:14:11.762] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_precisionengineering
[LOG 23:14:11.771] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_robotics
[LOG 23:14:11.780] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_sciencetech
[LOG 23:14:11.788] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedconstruction
[LOG 23:14:11.798] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedcontrol
[LOG 23:14:11.807] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedelectrics
[LOG 23:14:11.816] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_stability
[LOG 23:14:11.825] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_start
[LOG 23:14:11.834] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_supersonicflight
[LOG 23:14:11.845] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_survivability
[LOG 23:14:11.854] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_unmannedtech
[LOG 23:14:11.864] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_veryheavyrocketry
[LOG 23:14:11.873] Load(Texture): Squad/PartList/SimpleIcons/RDicon_aerospaceTech2
[LOG 23:14:11.882] Load(Texture): Squad/PartList/SimpleIcons/RDicon_commandmodules
[LOG 23:14:11.891] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-advanced
[LOG 23:14:11.900] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-highPerformance
[LOG 23:14:11.910] Load(Texture): Squad/PartList/SimpleIcons/RDicon_largeVolumeContainment
[LOG 23:14:11.919] Load(Texture): Squad/PartList/SimpleIcons/RDicon_miniaturization
[LOG 23:14:11.931] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsion-precision
[LOG 23:14:11.940] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsionSystems
[LOG 23:14:11.949] Load(Texture): Squad/PartList/SimpleIcons/RDicon_telescope
[LOG 23:14:11.959] Load(Texture): Squad/Parts/Aero/aerodynamicNoseCone/Nosecone
[LOG 23:14:11.961] Load(Texture): Squad/Parts/Aero/airbrake/Airbrake
[LOG 23:14:11.976] Load(Texture): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 23:14:11.981] Load(Texture): Squad/Parts/Aero/airlinerWings/AirlinerWings
[LOG 23:14:12.015] Load(Texture): Squad/Parts/Aero/airplaneFins/AirplaneFins
[LOG 23:14:12.026] Load(Texture): Squad/Parts/Aero/basicFin/BasicFin
[LOG 23:14:12.029] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes
[LOG 23:14:12.032] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes_Heat
[LOG 23:14:12.034] Load(Texture): Squad/Parts/Aero/cones/Cones
[LOG 23:14:12.038] Load(Texture): Squad/Parts/Aero/cones/Cones_Heat
[LOG 23:14:12.041] Load(Texture): Squad/Parts/Aero/fairings/AutoTruss
[LOG 23:14:12.056] Load(Texture): Squad/Parts/Aero/fairings/FairingBase
[LOG 23:14:12.059] Load(Texture): Squad/Parts/Aero/fairings/fairings_diff
[LOG 23:14:12.064] Load(Texture): Squad/Parts/Aero/HeatShield/Fairing
[LOG 23:14:12.067] Load(Texture): Squad/Parts/Aero/HeatShield/heatshield
[LOG 23:14:12.071] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 23:14:12.079] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShieldFairing
[LOG 23:14:12.082] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield_NRM
[LOG 23:14:12.090] Load(Texture): Squad/Parts/Aero/intakeRadialLong/Radial_long
[LOG 23:14:12.092] Load(Texture): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 23:14:12.095] Load(Texture): Squad/Parts/Aero/protectiveRocketNoseMk7/model000
[LOG 23:14:12.098] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 23:14:12.102] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake_Heat
[LOG 23:14:12.105] Load(Texture): Squad/Parts/Aero/shuttleWings/ShuttleWings
[LOG 23:14:12.138] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model000
[LOG 23:14:12.154] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model001
[LOG 23:14:12.158] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model000
[LOG 23:14:12.161] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model001
[LOG 23:14:12.165] Load(Texture): Squad/Parts/Aero/wingletDeltaDeluxe/model000
[LOG 23:14:12.168] Load(Texture): Squad/Parts/Aero/wings/Wings
[LOG 23:14:12.176] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model000
[LOG 23:14:12.179] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model001
[LOG 23:14:12.182] Load(Texture): Squad/Parts/Command/cupola/cupola_Emissive
[LOG 23:14:12.187] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_diff
[LOG 23:14:12.195] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_normal
[LOG 23:14:12.203] Load(Texture): Squad/Parts/Command/cupola/window
[LOG 23:14:12.205] Load(Texture): Squad/Parts/Command/externalCommandSeat/model000
[LOG 23:14:12.212] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin
[LOG 23:14:12.233] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_Illum
[LOG 23:14:12.237] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_n
[LOG 23:14:12.245] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/window
[LOG 23:14:12.247] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model000
[LOG 23:14:12.250] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model001
[LOG 23:14:12.255] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model000
[LOG 23:14:12.258] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model001
[LOG 23:14:12.261] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model002
[LOG 23:14:12.263] Load(Texture): Squad/Parts/Command/Mk1-2Pod/ladder
[LOG 23:14:12.265] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch NRM
[LOG 23:14:12.273] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch
[LOG 23:14:12.279] Load(Texture): Squad/Parts/Command/Mk1-2Pod/Mk1-2_illum
[LOG 23:14:12.281] Load(Texture): Squad/Parts/Command/Mk1-2Pod/walls
[LOG 23:14:12.286] Load(Texture): Squad/Parts/Command/Mk1-2Pod/window
[LOG 23:14:12.288] Load(Texture): Squad/Parts/Command/mk1Cockpits/GLOW
[LOG 23:14:12.293] Load(Texture): Squad/Parts/Command/mk1Cockpits/Mk1Cockpit
[LOG 23:14:12.301] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_diff
[LOG 23:14:12.321] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_normal
[LOG 23:14:12.325] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_psd_illum
[LOG 23:14:12.328] Load(Texture): Squad/Parts/Command/mk1pod/hatch
[LOG 23:14:12.330] Load(Texture): Squad/Parts/Command/mk1pod/ladderrung
[LOG 23:14:12.333] Load(Texture): Squad/Parts/Command/mk1pod/outer shell NRM
[LOG 23:14:12.336] Load(Texture): Squad/Parts/Command/mk1pod/outer shell
[LOG 23:14:12.339] Load(Texture): Squad/Parts/Command/mk1pod/window
[LOG 23:14:12.341] Load(Texture): Squad/Parts/Command/mk1pod/window_illum
[LOG 23:14:12.343] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_A
[LOG 23:14:12.351] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_Emissive
[LOG 23:14:12.357] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_normal
[LOG 23:14:12.365] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit
[LOG 23:14:12.382] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_Lum
[LOG 23:14:12.387] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_NRM
[LOG 23:14:12.413] Load(Texture): Squad/Parts/Command/mk2DroneCore/mk2Dronecore
[LOG 23:14:12.417] Load(Texture): Squad/Parts/Command/mk2LanderCan/Illum
[LOG 23:14:12.419] Load(Texture): Squad/Parts/Command/mk2LanderCan/ladder
[LOG 23:14:12.421] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell
[LOG 23:14:12.429] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell_n
[LOG 23:14:12.434] Load(Texture): Squad/Parts/Command/mk2LanderCan/window
[LOG 23:14:12.436] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle
[LOG 23:14:12.444] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle_LUM
[LOG 23:14:12.447] Load(Texture): Squad/Parts/Command/probeCoreCube/model000
[LOG 23:14:12.450] Load(Texture): Squad/Parts/Command/probeCoreCube/model001
[LOG 23:14:12.453] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_diff
[LOG 23:14:12.460] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_normal
[LOG 23:14:12.464] Load(Texture): Squad/Parts/Command/probeCoreOcto/model000
[LOG 23:14:12.479] Load(Texture): Squad/Parts/Command/probeCoreOcto/model001
[LOG 23:14:12.482] Load(Texture): Squad/Parts/Command/probeCoreOcto2/model000
[LOG 23:14:12.485] Load(Texture): Squad/Parts/Command/probeRoverBody/model000
[LOG 23:14:12.488] Load(Texture): Squad/Parts/Command/probeRoverBody/model001
[LOG 23:14:12.492] Load(Texture): Squad/Parts/Command/probeStackLarge/model000
[LOG 23:14:12.500] Load(Texture): Squad/Parts/Command/probeStackLarge/model001
[LOG 23:14:12.508] Load(Texture): Squad/Parts/Command/probeStackSmall/model000
[LOG 23:14:12.516] Load(Texture): Squad/Parts/Command/probeStackSmall/model001
[LOG 23:14:12.524] Load(Texture): Squad/Parts/Command/probeStackSphere/model000
[LOG 23:14:12.528] Load(Texture): Squad/Parts/Command/probeStackSphere/model001
[LOG 23:14:12.531] Load(Texture): Squad/Parts/CompoundParts/fuelLine/model000
[LOG 23:14:12.534] Load(Texture): Squad/Parts/CompoundParts/strutConnector/EAS-4 Strut Connector
[LOG 23:14:12.536] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model000
[LOG 23:14:12.539] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model001
[LOG 23:14:12.542] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model002
[LOG 23:14:12.545] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model000
[LOG 23:14:12.547] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model001
[LOG 23:14:12.550] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model002
[LOG 23:14:12.553] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model000
[LOG 23:14:12.556] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model001
[LOG 23:14:12.575] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model002
[LOG 23:14:12.578] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model000
[LOG 23:14:12.580] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model001
[LOG 23:14:12.584] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model002
[LOG 23:14:12.587] Load(Texture): Squad/Parts/Electrical/gigantorXlSolarArray/panel
[LOG 23:14:12.591] Load(Texture): Squad/Parts/Electrical/radialFlatSolarPanel/model000
[LOG 23:14:12.594] Load(Texture): Squad/Parts/Electrical/RTG/model000
[LOG 23:14:12.597] Load(Texture): Squad/Parts/Electrical/z-100Battery/model000
[LOG 23:14:12.599] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model000
[LOG 23:14:12.602] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model001
[LOG 23:14:12.605] Load(Texture): Squad/Parts/Electrical/z-200Battery/ksp_m_batteryPack_diff
[LOG 23:14:12.608] Load(Texture): Squad/Parts/Electrical/z-400Battery/model000
[LOG 23:14:12.611] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_diff
[LOG 23:14:12.615] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_normal
[LOG 23:14:12.619] Load(Texture): Squad/Parts/Engine/ionEngine/model000
[LOG 23:14:12.622] Load(Texture): Squad/Parts/Engine/jetEngines/Jet Engines
[LOG 23:14:12.631] Load(Texture): Squad/Parts/Engine/jetEngines/Jet_Heat
[LOG 23:14:12.636] Load(Texture): Squad/Parts/Engine/liquidEngine24-77/model000
[LOG 23:14:12.638] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_diff
[LOG 23:14:12.643] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_norm
[LOG 23:14:12.647] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_norm
[LOG 23:14:12.651] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_psd
[LOG 23:14:12.654] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike
[LOG 23:14:12.657] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike_Heat
[LOG 23:14:12.659] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/alternatebracket
[LOG 23:14:12.661] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/engine
[LOG 23:14:12.664] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1R/ksp_r_microEngine_diff
[LOG 23:14:12.666] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/bigfairing
[LOG 23:14:12.669] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3
[LOG 23:14:12.673] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_emissive
[LOG 23:14:12.676] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_n
[LOG 23:14:12.680] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model000
[LOG 23:14:12.684] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model001
[LOG 23:14:12.687] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model002
[LOG 23:14:12.702] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model003
[LOG 23:14:12.708] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model000
[LOG 23:14:12.710] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model001
[LOG 23:14:12.714] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model002
[LOG 23:14:12.717] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model000
[LOG 23:14:12.721] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model001
[LOG 23:14:12.723] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model002
[LOG 23:14:12.726] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model003
[LOG 23:14:12.730] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model000
[LOG 23:14:12.733] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model001
[LOG 23:14:12.736] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model002
[LOG 23:14:12.739] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model003
[LOG 23:14:12.743] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model004
[LOG 23:14:12.745] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 23:14:12.749] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud_Heat
[LOG 23:14:12.752] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model000
[LOG 23:14:12.755] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model001
[LOG 23:14:12.757] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model002
[LOG 23:14:12.761] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model003
[LOG 23:14:12.763] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_diff
[LOG 23:14:12.768] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_emissive
[LOG 23:14:12.774] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_diff
[LOG 23:14:12.780] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_norm
[LOG 23:14:12.788] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_normal
[LOG 23:14:12.806] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 23:14:12.809] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_GLOW
[LOG 23:14:12.811] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_NRM
[LOG 23:14:12.814] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_cm
[LOG 23:14:12.819] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_em
[LOG 23:14:12.822] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_nm
[LOG 23:14:12.827] Load(Texture): Squad/Parts/Engine/miniJet/SmallJet
[LOG 23:14:12.830] Load(Texture): Squad/Parts/Engine/OMSEngine/engineoms 1
[LOG 23:14:12.832] Load(Texture): Squad/Parts/Engine/rapierEngine/rapierDiffuse
[LOG 23:14:12.837] Load(Texture): Squad/Parts/Engine/rapierEngine/rapieremit
[LOG 23:14:12.839] Load(Texture): Squad/Parts/Engine/Size2LFB/Size2LFBEmissive
[LOG 23:14:12.842] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_cm
[LOG 23:14:12.851] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_nm
[LOG 23:14:12.860] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/decoupler_and_adaptor_cm
[LOG 23:14:12.870] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineDiffuse
[LOG 23:14:12.891] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineEmissive
[LOG 23:14:12.893] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineNormal
[LOG 23:14:12.897] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/ClusterEngineEmit
[LOG 23:14:12.900] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_cm
[LOG 23:14:12.908] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_nm
[LOG 23:14:12.918] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model000
[LOG 23:14:12.922] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model001
[LOG 23:14:12.926] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model002
[LOG 23:14:12.929] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model000
[LOG 23:14:12.937] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model001
[LOG 23:14:12.941] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model002
[LOG 23:14:12.944] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5
[LOG 23:14:12.948] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5_N_NRM
[LOG 23:14:12.952] Load(Texture): Squad/Parts/Engine/solidBoosterSep/model000
[LOG 23:14:12.954] Load(Texture): Squad/Parts/Engine/vernorEngine/vernierEngine3UV
[LOG 23:14:12.957] Load(Texture): Squad/Parts/FuelTank/adapterTanks/Mk3Adapters
[LOG 23:14:12.985] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model000
[LOG 23:14:12.990] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model001
[LOG 23:14:12.996] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model000
[LOG 23:14:12.998] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model001
[LOG 23:14:13.001] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank
[LOG 23:14:13.006] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank_n
[LOG 23:14:13.010] Load(Texture): Squad/Parts/FuelTank/fuelTankT100/tank4
[LOG 23:14:13.015] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3
[LOG 23:14:13.019] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3_n
[LOG 23:14:13.022] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model000
[LOG 23:14:13.026] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model001
[LOG 23:14:13.035] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model000
[LOG 23:14:13.039] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model001
[LOG 23:14:13.045] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model000
[LOG 23:14:13.049] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model001
[LOG 23:14:13.054] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model000
[LOG 23:14:13.058] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model001
[LOG 23:14:13.062] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model000
[LOG 23:14:13.082] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model001
[LOG 23:14:13.086] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model000
[LOG 23:14:13.095] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model001
[LOG 23:14:13.099] Load(Texture): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 23:14:13.102] Load(Texture): Squad/Parts/FuelTank/mk2Adapters/mk2adapters1m
[LOG 23:14:13.110] Load(Texture): Squad/Parts/FuelTank/mk2FuselageLong/mk2Fuselage
[LOG 23:14:13.118] Load(Texture): Squad/Parts/FuelTank/mk2FuselageShort/mk2FuselageShort
[LOG 23:14:13.127] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage
[LOG 23:14:13.156] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage_LUM
[LOG 23:14:13.159] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model000
[LOG 23:14:13.162] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model001
[LOG 23:14:13.166] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_diff
[LOG 23:14:13.170] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_normal
[LOG 23:14:13.173] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model000
[LOG 23:14:13.176] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model001
[LOG 23:14:13.179] Load(Texture): Squad/Parts/FuelTank/RCSTankRadial/model000
[LOG 23:14:13.182] Load(Texture): Squad/Parts/FuelTank/RCStankRadialLong/ksp_r_rcsCylTank_diff
[LOG 23:14:13.186] Load(Texture): Squad/Parts/FuelTank/Size3Tanks/fueltTanks_cm
[LOG 23:14:13.193] Load(Texture): Squad/Parts/FuelTank/xenonTank/model000
[LOG 23:14:13.197] Load(Texture): Squad/Parts/FuelTank/xenonTank/model001
[LOG 23:14:13.201] Load(Texture): Squad/Parts/FuelTank/xenonTankLarge/tank
[LOG 23:14:13.205] Load(Texture): Squad/Parts/FuelTank/xenonTankRadial/ksp_r_xenonTank_diff
[LOG 23:14:13.209] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat
[LOG 23:14:13.215] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_glow
[LOG 23:14:13.217] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_N_NRM
[LOG 23:14:13.224] Load(Texture): Squad/Parts/Misc/AsteroidDay/default
[LOG 23:14:13.227] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe
[LOG 23:14:13.230] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe_NORM_NRM
[LOG 23:14:13.246] Load(Texture): Squad/Parts/Resources/FuelCell/FCLamp
[LOG 23:14:13.248] Load(Texture): Squad/Parts/Resources/FuelCell/FuelCellRack
[LOG 23:14:13.251] Load(Texture): Squad/Parts/Resources/FuelCell/fuellcell
[LOG 23:14:13.254] Load(Texture): Squad/Parts/Resources/ISRU/Processor_Large
[LOG 23:14:13.258] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_diff
[LOG 23:14:13.265] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_norm
[LOG 23:14:13.275] Load(Texture): Squad/Parts/Resources/MiniDrill/DustParticle
[LOG 23:14:13.277] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_diff
[LOG 23:14:13.285] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_PSD
[LOG 23:14:13.293] Load(Texture): Squad/Parts/Resources/MiniISRU/ksp_s_processorSmall_diff
[LOG 23:14:13.298] Load(Texture): Squad/Parts/Resources/OrbitalScanner/detector
[LOG 23:14:13.301] Load(Texture): Squad/Parts/Resources/RadialDrill/DustParticle
[LOG 23:14:13.304] Load(Texture): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 23:14:13.308] Load(Texture): Squad/Parts/Resources/RadialTank/ksp_r_resourceContainer_psd_2
[LOG 23:14:13.312] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_diff
[LOG 23:14:13.331] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_normal
[LOG 23:14:13.340] Load(Texture): Squad/Parts/Resources/SurfaceScanner/ksp_r_samplerAir_diff
[LOG 23:14:13.348] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish
[LOG 23:14:13.353] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish_n
[LOG 23:14:13.361] Load(Texture): Squad/Parts/Science/AtmosphereSensor/ksp_r_hydroscoop_diff
[LOG 23:14:13.367] Load(Texture): Squad/Parts/Science/GooExperiment/A_GooExperiment_diff
[LOG 23:14:13.375] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab
[LOG 23:14:13.384] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab_glow
[LOG 23:14:13.415] Load(Texture): Squad/Parts/Science/LargeCrewedLab/window
[LOG 23:14:13.417] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 23:14:13.425] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_emit
[LOG 23:14:13.429] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_nrm
[LOG 23:14:13.433] Load(Texture): Squad/Parts/Science/MaterialBay/wires
[LOG 23:14:13.437] Load(Texture): Squad/Parts/Science/ScienceBox/Container
[LOG 23:14:13.440] Load(Texture): Squad/Parts/Science/sensorAccelerometer/model000
[LOG 23:14:13.442] Load(Texture): Squad/Parts/Science/sensorBarometer/model000
[LOG 23:14:13.444] Load(Texture): Squad/Parts/Science/sensorGravimeter/model000
[LOG 23:14:13.447] Load(Texture): Squad/Parts/Science/sensorThermometer/model000
[LOG 23:14:13.449] Load(Texture): Squad/Parts/Structural/adapterLargeSmallBi/ksp_l_biAdapter_diff
[LOG 23:14:13.454] Load(Texture): Squad/Parts/Structural/adapterLargeSmallQuad/ksp_l_quadAdapter_diff
[LOG 23:14:13.460] Load(Texture): Squad/Parts/Structural/adapterLargeSmallTri/ksp_l_triAdapter_diff
[LOG 23:14:13.466] Load(Texture): Squad/Parts/Structural/adapterSmallMiniShort/ksp_s_adapterShort_diff
[LOG 23:14:13.469] Load(Texture): Squad/Parts/Structural/adapterSmallMiniTall/ksp_s_adapterLong_diff
[LOG 23:14:13.486] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1Structural
[LOG 23:14:13.494] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1StructuralHeat
[LOG 23:14:13.503] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_cm
[LOG 23:14:13.513] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_nm
[LOG 23:14:13.520] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_cm
[LOG 23:14:13.530] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_nm
[LOG 23:14:13.538] Load(Texture): Squad/Parts/Structural/stationHub/model000
[LOG 23:14:13.554] Load(Texture): Squad/Parts/Structural/stationHub/model001
[LOG 23:14:13.558] Load(Texture): Squad/Parts/Structural/structuralIBeam200/model000
[LOG 23:14:13.561] Load(Texture): Squad/Parts/Structural/structuralIBeam200Pocket/model000
[LOG 23:14:13.564] Load(Texture): Squad/Parts/Structural/structuralIBeam650/model000
[LOG 23:14:13.567] Load(Texture): Squad/Parts/Structural/structuralMicronode/model000
[LOG 23:14:13.570] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model000
[LOG 23:14:13.573] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model001
[LOG 23:14:13.576] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model000
[LOG 23:14:13.579] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model001
[LOG 23:14:13.582] Load(Texture): Squad/Parts/Structural/structuralPylons/Pylons
[LOG 23:14:13.586] Load(Texture): Squad/Parts/Structural/strutCubicOcto/cubestrut
[LOG 23:14:13.588] Load(Texture): Squad/Parts/Structural/strutOcto/model000
[LOG 23:14:13.590] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model000
[LOG 23:14:13.593] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model001
[LOG 23:14:13.596] Load(Texture): Squad/Parts/Structural/trussGirderL/model000
[LOG 23:14:13.601] Load(Texture): Squad/Parts/Structural/trussGirderXL/model000
[LOG 23:14:13.607] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator
[LOG 23:14:13.611] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator_N_NRM
[LOG 23:14:13.619] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel
[LOG 23:14:13.625] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel_N_NRM
[LOG 23:14:13.633] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_array
[LOG 23:14:13.649] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_v2_diff
[LOG 23:14:13.653] Load(Texture): Squad/Parts/Utility/commDish88-88/model000
[LOG 23:14:13.656] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 23:14:13.665] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna_Emit
[LOG 23:14:13.668] Load(Texture): Squad/Parts/Utility/commsDish16/model000
[LOG 23:14:13.670] Load(Texture): Squad/Parts/Utility/decouplerRadialHDM/model000
[LOG 23:14:13.673] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model000
[LOG 23:14:13.675] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model001
[LOG 23:14:13.678] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-70/model000
[LOG 23:14:13.681] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model000
[LOG 23:14:13.685] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model001
[LOG 23:14:13.689] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-2C/model000
[LOG 23:14:13.691] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-XL/model000
[LOG 23:14:13.695] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model000
[LOG 23:14:13.699] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model001
[LOG 23:14:13.702] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model000
[LOG 23:14:13.705] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model001
[LOG 23:14:13.708] Load(Texture): Squad/Parts/Utility/decouplerStackTR-2V/model000
[LOG 23:14:13.711] Load(Texture): Squad/Parts/Utility/DirectAntennas/MiniAntenna
[LOG 23:14:13.714] Load(Texture): Squad/Parts/Utility/dockingPort/model000
[LOG 23:14:13.718] Load(Texture): Squad/Parts/Utility/dockingPort/model001
[LOG 23:14:13.721] Load(Texture): Squad/Parts/Utility/dockingPortInline/model000
[LOG 23:14:13.724] Load(Texture): Squad/Parts/Utility/dockingPortInline/model001
[LOG 23:14:13.729] Load(Texture): Squad/Parts/Utility/dockingPortInline/model002
[LOG 23:14:13.732] Load(Texture): Squad/Parts/Utility/dockingPortJr/model000
[LOG 23:14:13.735] Load(Texture): Squad/Parts/Utility/dockingPortJr/model001
[LOG 23:14:13.738] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model000
[LOG 23:14:13.742] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model001
[LOG 23:14:13.746] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model002
[LOG 23:14:13.748] Load(Texture): Squad/Parts/Utility/dockingPortSr/model000
[LOG 23:14:13.756] Load(Texture): Squad/Parts/Utility/dockingPortSr/model001
[LOG 23:14:13.777] Load(Texture): Squad/Parts/Utility/GrapplingDevice/grabberDiffuse
[LOG 23:14:13.781] Load(Texture): Squad/Parts/Utility/GrapplingDevice/window
[LOG 23:14:13.783] Load(Texture): Squad/Parts/Utility/ladderRadial/model000
[LOG 23:14:13.785] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model000
[LOG 23:14:13.791] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model001
[LOG 23:14:13.800] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model002
[LOG 23:14:13.805] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model000
[LOG 23:14:13.814] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model001
[LOG 23:14:13.822] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 23:14:13.826] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 23:14:13.829] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 23:14:13.832] Load(Texture): Squad/Parts/Utility/landingLegLT-5/model000
[LOG 23:14:13.834] Load(Texture): Squad/Parts/Utility/largeAdapter/model000
[LOG 23:14:13.838] Load(Texture): Squad/Parts/Utility/largeAdapterShort/model000
[LOG 23:14:13.853] Load(Texture): Squad/Parts/Utility/launchClamp1/model000
[LOG 23:14:13.856] Load(Texture): Squad/Parts/Utility/launchClamp1/model001
[LOG 23:14:13.859] Load(Texture): Squad/Parts/Utility/launchEscapeSystem/LES_Diffuse
[LOG 23:14:13.868] Load(Texture): Squad/Parts/Utility/linearRCS/rcs
[LOG 23:14:13.870] Load(Texture): Squad/Parts/Utility/mk2CargoBay/mk2CargoBay
[LOG 23:14:13.878] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin
[LOG 23:14:13.883] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin_LUM
[LOG 23:14:13.886] Load(Texture): Squad/Parts/Utility/mk2DockingPort/mk2DockingPort
[LOG 23:14:13.893] Load(Texture): Squad/Parts/Utility/mk3CargoBay/Mk3CargoBay
[LOG 23:14:13.902] Load(Texture): Squad/Parts/Utility/parachuteMk1/model000
[LOG 23:14:13.906] Load(Texture): Squad/Parts/Utility/parachuteMk1/model001
[LOG 23:14:13.910] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model000
[LOG 23:14:13.914] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model001
[LOG 23:14:13.917] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model000
[LOG 23:14:13.920] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model001
[LOG 23:14:13.984] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model000
[LOG 23:14:13.987] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model001
[LOG 23:14:13.990] Load(Texture): Squad/Parts/Utility/parachuteMk25/model000
[LOG 23:14:13.993] Load(Texture): Squad/Parts/Utility/parachuteMk25/model001
[LOG 23:14:13.995] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model000
[LOG 23:14:13.999] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model001
[LOG 23:14:14.002] Load(Texture): Squad/Parts/Utility/rcsBlockRV-105/rcs
[LOG 23:14:14.004] Load(Texture): Squad/Parts/Utility/RelayAntennas/DishAntenna
[LOG 23:14:14.009] Load(Texture): Squad/Parts/Utility/RelayAntennas/MiniAntenna
[LOG 23:14:14.012] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay
[LOG 23:14:14.016] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay_N_NRM
[LOG 23:14:14.020] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1
[LOG 23:14:14.023] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1_em
[LOG 23:14:14.026] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2
[LOG 23:14:14.029] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2_em
[LOG 23:14:14.031] Load(Texture): Squad/Parts/Utility/stackBiCoupler/model000
[LOG 23:14:14.034] Load(Texture): Squad/Parts/Utility/stackQuadCoupler/ksp_s_quadCoupler_diff
[LOG 23:14:14.039] Load(Texture): Squad/Parts/Utility/stackTriCoupler/model000
[LOG 23:14:14.042] Load(Texture): Squad/Parts/Wheel/LandingGear/Flare
[LOG 23:14:14.045] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear
[LOG 23:14:14.053] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear_Emissive
[LOG 23:14:14.055] Load(Texture): Squad/Parts/Wheel/roverWheelM1/model000
[LOG 23:14:14.058] Load(Texture): Squad/Parts/Wheel/roverWheelM1/roverwheel1
[LOG 23:14:14.080] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model000
[LOG 23:14:14.082] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model001
[LOG 23:14:14.086] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2
[LOG 23:14:14.094] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2_n
[LOG 23:14:14.113] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_diff
[LOG 23:14:14.215] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_normal
[LOG 23:14:14.285] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_diff
[LOG 23:14:14.370] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_normal
[LOG 23:14:14.437] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model000
[LOG 23:14:14.447] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model001
[LOG 23:14:14.455] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model002
[LOG 23:14:14.464] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model003
[LOG 23:14:14.472] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model000
[LOG 23:14:14.481] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model001
[LOG 23:14:14.485] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model002
[LOG 23:14:14.487] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model003
[LOG 23:14:14.491] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount
[LOG 23:14:14.578] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount_n
[LOG 23:14:14.592] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel
[LOG 23:14:14.603] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel_n
[LOG 23:14:14.612] Load(Texture): Squad/Props/AltimeterThreeHands/model000
[LOG 23:14:14.628] Load(Texture): Squad/Props/AltimeterThreeHands/model001
[LOG 23:14:14.630] Load(Texture): Squad/Props/AtmosphereDepth/model000
[LOG 23:14:14.633] Load(Texture): Squad/Props/AtmosphereDepth/model001
[LOG 23:14:14.636] Load(Texture): Squad/Props/AxisIndicator/model000
[LOG 23:14:14.638] Load(Texture): Squad/Props/buttonsGeneric/ButtonsAndSwitches
[LOG 23:14:14.641] Load(Texture): Squad/Props/ButtonSquare/model000
[LOG 23:14:14.646] Load(Texture): Squad/Props/circularButton/model000
[LOG 23:14:14.648] Load(Texture): Squad/Props/Compass/model000
[LOG 23:14:14.652] Load(Texture): Squad/Props/directionalKnob/model000
[LOG 23:14:14.655] Load(Texture): Squad/Props/directionalKnob2/model000
[LOG 23:14:14.657] Load(Texture): Squad/Props/IndicatorPanel/model000
[LOG 23:14:14.660] Load(Texture): Squad/Props/IndicatorPanel/model001
[LOG 23:14:14.663] Load(Texture): Squad/Props/IVANavBall/Arrows8dir
[LOG 23:14:14.665] Load(Texture): Squad/Props/IVANavBall/IVANavBall
[LOG 23:14:14.667] Load(Texture): Squad/Props/IVANavBall/IVANavBall_Glow
[LOG 23:14:14.670] Load(Texture): Squad/Props/IVANavBall/ManeuverNode_vectors
[LOG 23:14:14.672] Load(Texture): Squad/Props/IVANavBall/navball2
[LOG 23:14:14.675] Load(Texture): Squad/Props/IVANavBall/navBall_DV_IVA
[LOG 23:14:14.678] Load(Texture): Squad/Props/IVANavBall/navBall_vectors_IVA
[LOG 23:14:14.680] Load(Texture): Squad/Props/ledPanelSpeed/model000
[LOG 23:14:14.683] Load(Texture): Squad/Props/ledPanelSpeed/model001
[LOG 23:14:14.685] Load(Texture): Squad/Props/Monitor/Emissives
[LOG 23:14:14.688] Load(Texture): Squad/Props/Monitor/Emissives_glow
[LOG 23:14:14.690] Load(Texture): Squad/Props/Monitor/Monitor
[LOG 23:14:14.694] Load(Texture): Squad/Props/NavBall/model000
[LOG 23:14:14.696] Load(Texture): Squad/Props/NavBall/model001
[LOG 23:14:14.699] Load(Texture): Squad/Props/NavBall/model002
[LOG 23:14:14.702] Load(Texture): Squad/Props/NavBall/model003
[LOG 23:14:14.705] Load(Texture): Squad/Props/PropsGeneric/propsGeneric
[LOG 23:14:14.713] Load(Texture): Squad/Props/pullSwitch/model000
[LOG 23:14:14.715] Load(Texture): Squad/Props/pullSwitch/model001
[LOG 23:14:14.717] Load(Texture): Squad/Props/radarAltitude/model000
[LOG 23:14:14.721] Load(Texture): Squad/Props/squareButton/model000
[LOG 23:14:14.723] Load(Texture): Squad/Props/standingSwitch/model000
[LOG 23:14:14.726] Load(Texture): Squad/Props/standingSwitch/model001
[LOG 23:14:14.729] Load(Texture): Squad/Props/switch/model000
[LOG 23:14:14.731] Load(Texture): Squad/Props/switchGuard/model000
[LOG 23:14:14.734] Load(Texture): Squad/Props/switchWithGuards/model000
[LOG 23:14:14.736] Load(Texture): Squad/Props/switchWithGuards/model001
[LOG 23:14:14.739] Load(Texture): Squad/Props/switchWithGuards/model002
[LOG 23:14:14.742] Load(Texture): Squad/Props/throttle/model000
[LOG 23:14:14.744] Load(Texture): Squad/Props/throttle/model001
[LOG 23:14:14.752] Load(Texture): Squad/Props/VSI/model000
[LOG 23:14:14.755] Load(Texture): Squad/Spaces/crewCabinInternals/model000
[LOG 23:14:14.757] Load(Texture): Squad/Spaces/crewCabinInternals/model001
[LOG 23:14:14.773] Load(Texture): Squad/Spaces/crewCabinInternals/model002
[LOG 23:14:14.778] Load(Texture): Squad/Spaces/crewCabinInternals/model003
[LOG 23:14:14.797] Load(Texture): Squad/Spaces/crewCabinInternals/model004
[LOG 23:14:14.799] Load(Texture): Squad/Spaces/crewCabinInternals/model005
[LOG 23:14:14.807] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_diff
[LOG 23:14:14.841] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_normal
[LOG 23:14:14.875] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_windows_alpha
[LOG 23:14:14.895] Load(Texture): Squad/Spaces/cupolaInternal/pilot Seat
[LOG 23:14:14.904] Load(Texture): Squad/Spaces/GenericSpace1/model000
[LOG 23:14:14.913] Load(Texture): Squad/Spaces/GenericSpace1/model001
[LOG 23:14:14.922] Load(Texture): Squad/Spaces/GenericSpace1/model002
[LOG 23:14:14.932] Load(Texture): Squad/Spaces/GenericSpace1/model003
[LOG 23:14:14.940] Load(Texture): Squad/Spaces/GenericSpace1/model004
[LOG 23:14:14.949] Load(Texture): Squad/Spaces/GenericSpace1/model005
[LOG 23:14:14.958] Load(Texture): Squad/Spaces/GenericSpace3/model000
[LOG 23:14:14.967] Load(Texture): Squad/Spaces/GenericSpace3/model001
[LOG 23:14:14.982] Load(Texture): Squad/Spaces/GenericSpace3/model002
[LOG 23:14:14.991] Load(Texture): Squad/Spaces/GenericSpace3/model003
[LOG 23:14:14.999] Load(Texture): Squad/Spaces/GenericSpace3/model004
[LOG 23:14:15.008] Load(Texture): Squad/Spaces/GenericSpace3/model005
[LOG 23:14:15.015] Load(Texture): Squad/Spaces/GenericSpace3/model006
[LOG 23:14:15.020] Load(Texture): Squad/Spaces/GenericSpace3/model007
[LOG 23:14:15.028] Load(Texture): Squad/Spaces/landerCabinInternals/model000
[LOG 23:14:15.038] Load(Texture): Squad/Spaces/landerCabinInternals/model001
[LOG 23:14:15.046] Load(Texture): Squad/Spaces/landerCabinInternals/model002
[LOG 23:14:15.055] Load(Texture): Squad/Spaces/landerCabinInternals/model003
[LOG 23:14:15.082] Load(Texture): Squad/Spaces/landerCabinInternals/model004
[LOG 23:14:15.090] Load(Texture): Squad/Spaces/landerCabinInternals/model005
[LOG 23:14:15.093] Load(Texture): Squad/Spaces/landerCabinInternals/model006
[LOG 23:14:15.100] Load(Texture): Squad/Spaces/landerCabinInternals/model007
[LOG 23:14:15.102] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_diff
[LOG 23:14:15.135] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_normal
[LOG 23:14:15.168] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_window_alpha
[LOG 23:14:15.189] Load(Texture): Squad/Spaces/landerCabinSmallInternal/pilot Seat
[LOG 23:14:15.198] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/Glass
[LOG 23:14:15.202] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int
[LOG 23:14:15.232] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int_n_NRM
[LOG 23:14:15.238] Load(Texture): Squad/Spaces/mk1CabinInternal/Cabin_Lightmap
[LOG 23:14:15.242] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric
[LOG 23:14:15.244] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric_NRM
[LOG 23:14:15.247] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric
[LOG 23:14:15.249] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric_NRM
[LOG 23:14:15.251] Load(Texture): Squad/Spaces/mk1CockpitInternal/IVAMAP
[LOG 23:14:15.259] Load(Texture): Squad/Spaces/mk1CockpitInternal/Windows
[LOG 23:14:15.261] Load(Texture): Squad/Spaces/mk1InlineInternal/Canopy
[LOG 23:14:15.269] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric
[LOG 23:14:15.272] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric_NRM
[LOG 23:14:15.274] Load(Texture): Squad/Spaces/mk1InlineInternal/Mk1Inline_Lightmap
[LOG 23:14:15.290] Load(Texture): Squad/Spaces/mk1PodCockpit/model000
[LOG 23:14:15.300] Load(Texture): Squad/Spaces/mk1PodCockpit/model001
[LOG 23:14:15.308] Load(Texture): Squad/Spaces/mk1PodCockpit/model002
[LOG 23:14:15.318] Load(Texture): Squad/Spaces/mk1PodCockpit/model003
[LOG 23:14:15.326] Load(Texture): Squad/Spaces/mk1PodCockpit/model004
[LOG 23:14:15.341] Load(Texture): Squad/Spaces/mk1PodCockpit/model005
[LOG 23:14:15.344] Load(Texture): Squad/Spaces/mk1PodCockpit/model006
[LOG 23:14:15.352] Load(Texture): Squad/Spaces/mk1PodCockpit/model007
[LOG 23:14:15.354] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/CargoBagA
[LOG 23:14:15.357] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Mk2StandardIVA
[LOG 23:14:15.361] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Pilotseat
[LOG 23:14:15.365] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Windows
[LOG 23:14:15.368] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/CargoBagA
[LOG 23:14:15.371] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Glass
[LOG 23:14:15.375] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Mk2StandardIVA
[LOG 23:14:15.380] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Pilotseat
[LOG 23:14:15.397] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric
[LOG 23:14:15.406] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric_NRM
[LOG 23:14:15.414] Load(Texture): Squad/Spaces/mk2InlineInternal/Mk2InlineLightmap
[LOG 23:14:15.422] Load(Texture): Squad/Spaces/mk2InlineInternal/propsGeneric
[LOG 23:14:15.431] Load(Texture): Squad/Spaces/MK3CockpitInternal/Glass
[LOG 23:14:15.435] Load(Texture): Squad/Spaces/MK3CockpitInternal/Mk2StandardIVA
[LOG 23:14:15.444] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Glass
[LOG 23:14:15.448] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/GlassMK3CC
[LOG 23:14:15.451] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Mk2StandardIVA
[LOG 23:14:15.456] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 23:14:15.465] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int_n
[LOG 23:14:15.469] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Pilotseat
[LOG 23:14:15.473] Load(Texture): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 23:14:15.475] Load(Texture): Squad/Spaces/PodCockpit/model000
[LOG 23:14:15.483] Load(Texture): Squad/Spaces/PodCockpit/model001
[LOG 23:14:15.505] Load(Texture): Squad/Spaces/PodCockpit/model002
[LOG 23:14:15.514] Load(Texture): Squad/Spaces/PodCockpit/model003
[LOG 23:14:15.522] Load(Texture): Squad/Spaces/PodCockpit/model004
[LOG 23:14:15.530] Load(Texture): Squad/Spaces/PodCockpit/model005
[LOG 23:14:15.539] Load(Texture): Squad/Spaces/PodCockpit/model006
[LOG 23:14:15.544] Load(Texture): Squad/Spaces/PodCockpit/model007
[LOG 23:14:15.552] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric
[LOG 23:14:15.560] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric_NRM
[LOG 23:14:15.569] Load(Texture): Squad/Strategies/Icons/AggressiveNegotiations
[LOG 23:14:15.579] Load(Texture): Squad/Strategies/Icons/AppreciationCampaign
[LOG 23:14:15.590] Load(Texture): Squad/Strategies/Icons/BailOutGrant
[LOG 23:14:15.602] Load(Texture): Squad/Strategies/Icons/FundraisingCampaign
[LOG 23:14:15.613] Load(Texture): Squad/Strategies/Icons/LeadershipInitiative
[LOG 23:14:15.623] Load(Texture): Squad/Strategies/Icons/OpenSourceTechProgram
[LOG 23:14:15.636] Load(Texture): Squad/Strategies/Icons/OutsourcedResearch
[LOG 23:14:15.649] Load(Texture): Squad/Strategies/Icons/PatentsLicensing
[LOG 23:14:15.663] Load(Texture): Squad/Strategies/Icons/RecoveryTransponderFitting
[LOG 23:14:15.677] Load(Texture): Squad/Strategies/Icons/ResearchRightsSellOut
[LOG 23:14:15.692] Load(Texture): Squad/Strategies/Icons/UnpaidResearchProgram
[LOG 23:14:15.706] Load(Texture): Squad/Tutorials/ChuteColors
[LOG 23:14:15.720] Load(Texture): Squad/Tutorials/EditorCoM
[LOG 23:14:15.736] Load(Texture): Squad/Tutorials/EditorSnap
[LOG 23:14:15.752] Load(Texture): Squad/Tutorials/EditorSnap4x
[LOG 23:14:15.768] Load(Texture): Squad/Tutorials/EditorSymm
[LOG 23:14:15.782] Load(Texture): Squad/Tutorials/StagingStack
[LOG 23:14:15.798] Load(Model): Squad/FX/afterburner_flame
[LOG 23:14:15.810] Load(Model): Squad/FX/afterburner_shock
[LOG 23:14:15.814] Load(Model): Squad/FX/diamondBlue
[LOG 23:14:15.817] Load(Model): Squad/FX/exhaustFlames_blue
[LOG 23:14:15.821] Load(Model): Squad/FX/hydroLOXFlame
[LOG 23:14:15.824] Load(Model): Squad/FX/IonPlume
[LOG 23:14:15.827] Load(Model): Squad/FX/ks1_Exhaust
[LOG 23:14:15.830] Load(Model): Squad/FX/ks25_Exhaust
[LOG 23:14:15.834] Load(Model): Squad/FX/ksX_Exhaust
[LOG 23:14:15.837] Load(Model): Squad/FX/LES_Thruster
[LOG 23:14:15.840] Load(Model): Squad/FX/Monoprop_big
[LOG 23:14:15.843] Load(Model): Squad/FX/Monoprop_medium
[LOG 23:14:15.846] Load(Model): Squad/FX/Monoprop_small
[LOG 23:14:15.850] Load(Model): Squad/FX/shockExhaust_blue
[LOG 23:14:15.853] Load(Model): Squad/FX/shockExhaust_blue_small
[LOG 23:14:15.856] Load(Model): Squad/FX/shockExhaust_red_small
[LOG 23:14:15.859] Load(Model): Squad/FX/SRB_Large
[LOG 23:14:15.862] Load(Model): Squad/FX/SRB_LargeSparks
[LOG 23:14:15.866] Load(Model): Squad/Parts/Aero/aerodynamicNoseCone/model
[LOG 23:14:15.879] Load(Model): Squad/Parts/Aero/airbrake/Airbrake
[LOG 23:14:15.888] Load(Model): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 23:14:15.893] Load(Model): Squad/Parts/Aero/airlinerWings/ControlSurface
[LOG 23:14:15.897] Load(Model): Squad/Parts/Aero/airlinerWings/MainWing
[LOG 23:14:15.903] Load(Model): Squad/Parts/Aero/airlinerWings/TailFin
[LOG 23:14:15.913] Load(Model): Squad/Parts/Aero/airplaneFins/AdvCanard
[LOG 23:14:15.917] Load(Model): Squad/Parts/Aero/airplaneFins/Canard
[LOG 23:14:15.922] Load(Model): Squad/Parts/Aero/airplaneFins/Swept
[LOG 23:14:15.927] Load(Model): Squad/Parts/Aero/airplaneFins/TailFin
[LOG 23:14:15.932] Load(Model): Squad/Parts/Aero/basicFin/basicFin
[LOG 23:14:15.936] Load(Model): Squad/Parts/Aero/circularIntake/CircularIntake
[LOG 23:14:15.947] Load(Model): Squad/Parts/Aero/circularIntake/ConeIntake
[LOG 23:14:15.952] Load(Model): Squad/Parts/Aero/cones/AvioCone
[LOG 23:14:15.957] Load(Model): Squad/Parts/Aero/cones/ConeA
[LOG 23:14:15.962] Load(Model): Squad/Parts/Aero/cones/ConeB
[LOG 23:14:15.968] Load(Model): Squad/Parts/Aero/cones/NCS
[LOG 23:14:15.973] Load(Model): Squad/Parts/Aero/cones/TailA
[LOG 23:14:15.978] Load(Model): Squad/Parts/Aero/cones/TailB
[LOG 23:14:15.983] Load(Model): Squad/Parts/Aero/cones/TinyCone
[LOG 23:14:15.988] Load(Model): Squad/Parts/Aero/fairings/AutoTruss
[LOG 23:14:15.998] Load(Model): Squad/Parts/Aero/fairings/fairingSize1
[LOG 23:14:16.003] Load(Model): Squad/Parts/Aero/fairings/fairingSize2
[LOG 23:14:16.009] Load(Model): Squad/Parts/Aero/fairings/fairingSize3
[LOG 23:14:16.015] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield0
[LOG 23:14:16.021] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield1
[LOG 23:14:16.028] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield2
[LOG 23:14:16.035] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield3
[LOG 23:14:16.055] Load(Model): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 23:14:16.071] Load(Model): Squad/Parts/Aero/intakeRadialLong/IntakeRadial
[LOG 23:14:16.075] Load(Model): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 23:14:16.080] Load(Model): Squad/Parts/Aero/protectiveRocketNoseMk7/model
[LOG 23:14:16.086] Load(Model): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 23:14:16.091] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleDeltaWing
[LOG 23:14:16.096] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonA
[LOG 23:14:16.100] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonB
[LOG 23:14:16.105] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleRudder
[LOG 23:14:16.109] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleStrake
[LOG 23:14:16.114] Load(Model): Squad/Parts/Aero/wingletAV-R8/model
[LOG 23:14:16.118] Load(Model): Squad/Parts/Aero/wingletAV-T1/model
[LOG 23:14:16.121] Load(Model): Squad/Parts/Aero/wingletDeltaDeluxe/model
[LOG 23:14:16.125] Load(Model): Squad/Parts/Aero/wings/connector1
[LOG 23:14:16.129] Load(Model): Squad/Parts/Aero/wings/connector2
[LOG 23:14:16.132] Load(Model): Squad/Parts/Aero/wings/connector3
[LOG 23:14:16.136] Load(Model): Squad/Parts/Aero/wings/connector4
[LOG 23:14:16.139] Load(Model): Squad/Parts/Aero/wings/connector5
[LOG 23:14:16.142] Load(Model): Squad/Parts/Aero/wings/delta
[LOG 23:14:16.146] Load(Model): Squad/Parts/Aero/wings/delta_small
[LOG 23:14:16.149] Load(Model): Squad/Parts/Aero/wings/elevon1
[LOG 23:14:16.153] Load(Model): Squad/Parts/Aero/wings/elevon2
[LOG 23:14:16.156] Load(Model): Squad/Parts/Aero/wings/elevon3
[LOG 23:14:16.160] Load(Model): Squad/Parts/Aero/wings/elevon4
[LOG 23:14:16.163] Load(Model): Squad/Parts/Aero/wings/elevon5
[LOG 23:14:16.166] Load(Model): Squad/Parts/Aero/wings/strake
[LOG 23:14:16.170] Load(Model): Squad/Parts/Aero/wings/structural1
[LOG 23:14:16.173] Load(Model): Squad/Parts/Aero/wings/structural2
[LOG 23:14:16.177] Load(Model): Squad/Parts/Aero/wings/structural3
[LOG 23:14:16.181] Load(Model): Squad/Parts/Aero/wings/structural4
[LOG 23:14:16.185] Load(Model): Squad/Parts/Aero/wings/swept1
[LOG 23:14:16.188] Load(Model): Squad/Parts/Aero/wings/swept2
[LOG 23:14:16.192] Load(Model): Squad/Parts/Command/advancedSasModuleLarge/model
[LOG 23:14:16.202] Load(Model): Squad/Parts/Command/cupola/model
[LOG 23:14:16.215] Load(Model): Squad/Parts/Command/externalCommandSeat/model
[LOG 23:14:16.233] Load(Model): Squad/Parts/Command/hitchhikerStorageContainer/model
[LOG 23:14:16.241] Load(Model): Squad/Parts/Command/inlineAdvancedStabilizer/model
[LOG 23:14:16.246] Load(Model): Squad/Parts/Command/inlineReactionWheel/model
[LOG 23:14:16.251] Load(Model): Squad/Parts/Command/Mk1-2Pod/model
[LOG 23:14:16.259] Load(Model): Squad/Parts/Command/mk1Cockpits/Cabin
[LOG 23:14:16.264] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitInline
[LOG 23:14:16.271] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitStandard
[LOG 23:14:16.281] Load(Model): Squad/Parts/Command/mk1LanderCan/model
[LOG 23:14:16.287] Load(Model): Squad/Parts/Command/mk1pod/model
[LOG 23:14:16.294] Load(Model): Squad/Parts/Command/mk2CockpitInline/model
[LOG 23:14:16.301] Load(Model): Squad/Parts/Command/mk2CockpitStandard/model
[LOG 23:14:16.308] Load(Model): Squad/Parts/Command/mk2DroneCore/model
[LOG 23:14:16.315] Load(Model): Squad/Parts/Command/mk2LanderCan/model
[LOG 23:14:16.327] Load(Model): Squad/Parts/Command/mk3CockpitShuttle/model
[LOG 23:14:16.335] Load(Model): Squad/Parts/Command/probeCoreCube/model
[LOG 23:14:16.339] Load(Model): Squad/Parts/Command/probeCoreHex/model
[LOG 23:14:16.343] Load(Model): Squad/Parts/Command/probeCoreOcto/model
[LOG 23:14:16.348] Load(Model): Squad/Parts/Command/probeCoreOcto2/model
[LOG 23:14:16.353] Load(Model): Squad/Parts/Command/probeRoverBody/model
[LOG 23:14:16.357] Load(Model): Squad/Parts/Command/probeStackLarge/model
[LOG 23:14:16.362] Load(Model): Squad/Parts/Command/probeStackSmall/model
[LOG 23:14:16.368] Load(Model): Squad/Parts/Command/probeStackSphere/model
[LOG 23:14:16.373] Load(Model): Squad/Parts/CompoundParts/fuelLine/model
[LOG 23:14:16.378] Load(Model): Squad/Parts/CompoundParts/strutConnector/model
[LOG 23:14:16.382] Load(Model): Squad/Parts/Electrical/1x6ShroudSolarPanels/model
[LOG 23:14:16.388] Load(Model): Squad/Parts/Electrical/1x6SolarPanels/model
[LOG 23:14:16.394] Load(Model): Squad/Parts/Electrical/3x2ShroudSolarPanels/model
[LOG 23:14:16.400] Load(Model): Squad/Parts/Electrical/3x2SolarPanels/model
[LOG 23:14:16.406] Load(Model): Squad/Parts/Electrical/gigantorXlSolarArray/model
[LOG 23:14:16.411] Load(Model): Squad/Parts/Electrical/radialFlatSolarPanel/model
[LOG 23:14:16.414] Load(Model): Squad/Parts/Electrical/RTG/model
[LOG 23:14:16.419] Load(Model): Squad/Parts/Electrical/z-100Battery/model
[LOG 23:14:16.426] Load(Model): Squad/Parts/Electrical/z-1kBattery/model
[LOG 23:14:16.431] Load(Model): Squad/Parts/Electrical/z-200Battery/model
[LOG 23:14:16.436] Load(Model): Squad/Parts/Electrical/z-400Battery/model
[LOG 23:14:16.440] Load(Model): Squad/Parts/Electrical/z-4kBattery/model
[LOG 23:14:16.445] Load(Model): Squad/Parts/Engine/ionEngine/model
[LOG 23:14:16.451] Load(Model): Squad/Parts/Engine/jetEngines/turbineInside
[LOG 23:14:16.456] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize1
[LOG 23:14:16.463] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize2
[LOG 23:14:16.473] Load(Model): Squad/Parts/Engine/jetEngines/turboJet
[LOG 23:14:16.480] Load(Model): Squad/Parts/Engine/jetEngines/turboRamJet
[LOG 23:14:16.489] Load(Model): Squad/Parts/Engine/liquidEngine24-77/model
[LOG 23:14:16.493] Load(Model): Squad/Parts/Engine/liquidEngine48-7S/model
[LOG 23:14:16.500] Load(Model): Squad/Parts/Engine/liquidEngineAerospike/AeroSpike
[LOG 23:14:16.506] Load(Model): Squad/Parts/Engine/liquidEngineLV-1/model
[LOG 23:14:16.510] Load(Model): Squad/Parts/Engine/liquidEngineLV-1R/model
[LOG 23:14:16.515] Load(Model): Squad/Parts/Engine/liquidEngineLV-909/model
[LOG 23:14:16.522] Load(Model): Squad/Parts/Engine/liquidEngineLV-N/model
[LOG 23:14:16.530] Load(Model): Squad/Parts/Engine/liquidEngineLV-T30/model
[LOG 23:14:16.538] Load(Model): Squad/Parts/Engine/liquidEngineLV-T45/model
[LOG 23:14:16.547] Load(Model): Squad/Parts/Engine/liquidEngineMainsail/model
[LOG 23:14:16.556] Load(Model): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 23:14:16.561] Load(Model): Squad/Parts/Engine/liquidEnginePoodle/model
[LOG 23:14:16.569] Load(Model): Squad/Parts/Engine/liquidEngineSkipper/model
[LOG 23:14:16.578] Load(Model): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 23:14:16.587] Load(Model): Squad/Parts/Engine/MassiveSRB/MassiveSRB
[LOG 23:14:16.594] Load(Model): Squad/Parts/Engine/miniJet/SmallJet
[LOG 23:14:16.599] Load(Model): Squad/Parts/Engine/OMSEngine/NewModel
[LOG 23:14:16.604] Load(Model): Squad/Parts/Engine/rapierEngine/rapier
[LOG 23:14:16.612] Load(Model): Squad/Parts/Engine/Size2LFB/Size2LFB
[LOG 23:14:16.623] Load(Model): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngine
[LOG 23:14:16.632] Load(Model): Squad/Parts/Engine/Size3EngineCluster/Size3EngineCluster
[LOG 23:14:16.644] Load(Model): Squad/Parts/Engine/solidBoosterBACC/model
[LOG 23:14:16.649] Load(Model): Squad/Parts/Engine/solidBoosterRT-10/model
[LOG 23:14:16.656] Load(Model): Squad/Parts/Engine/solidBoosterRT-5/SRB_RT5
[LOG 23:14:16.664] Load(Model): Squad/Parts/Engine/solidBoosterSep/model
[LOG 23:14:16.667] Load(Model): Squad/Parts/Engine/vernorEngine/NewModel
[LOG 23:14:16.673] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2
[LOG 23:14:16.679] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2
[LOG 23:14:16.684] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant
[LOG 23:14:16.690] Load(Model): Squad/Parts/FuelTank/adapterTanks/ShuttleAdapter
[LOG 23:14:16.695] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Mk2
[LOG 23:14:16.700] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1
[LOG 23:14:16.705] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant
[LOG 23:14:16.710] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size3-Mk3
[LOG 23:14:16.714] Load(Model): Squad/Parts/FuelTank/fuelTankJumbo-64/model
[LOG 23:14:16.722] Load(Model): Squad/Parts/FuelTank/fuelTankOscarB/model
[LOG 23:14:16.726] Load(Model): Squad/Parts/FuelTank/fuelTankT100/model
[LOG 23:14:16.732] Load(Model): Squad/Parts/FuelTank/fuelTankT200/model
[LOG 23:14:16.737] Load(Model): Squad/Parts/FuelTank/fuelTankT400/model
[LOG 23:14:16.743] Load(Model): Squad/Parts/FuelTank/fuelTankT800/model
[LOG 23:14:16.748] Load(Model): Squad/Parts/FuelTank/fuelTankToroidal/model
[LOG 23:14:16.757] Load(Model): Squad/Parts/FuelTank/fuelTankX200-16/model
[LOG 23:14:16.763] Load(Model): Squad/Parts/FuelTank/fuelTankX200-32/model
[LOG 23:14:16.769] Load(Model): Squad/Parts/FuelTank/fuelTankX200-8/model
[LOG 23:14:16.774] Load(Model): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 23:14:16.779] Load(Model): Squad/Parts/FuelTank/mk2Adapters/bicoupler
[LOG 23:14:16.785] Load(Model): Squad/Parts/FuelTank/mk2Adapters/long
[LOG 23:14:16.790] Load(Model): Squad/Parts/FuelTank/mk2Adapters/standard
[LOG 23:14:16.796] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLFO
[LOG 23:14:16.800] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLiquid
[LOG 23:14:16.805] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLFO
[LOG 23:14:16.810] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLiquid
[LOG 23:14:16.815] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortMono
[LOG 23:14:16.819] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/CREW
[LOG 23:14:16.826] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_100
[LOG 23:14:16.830] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_25
[LOG 23:14:16.834] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_50
[LOG 23:14:16.839] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_100
[LOG 23:14:16.843] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_25
[LOG 23:14:16.847] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_50
[LOG 23:14:16.851] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/MONO
[LOG 23:14:16.855] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR1/model
[LOG 23:14:16.860] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR10/model
[LOG 23:14:16.865] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR25/model
[LOG 23:14:16.870] Load(Model): Squad/Parts/FuelTank/RCSTankRadial/model
[LOG 23:14:16.875] Load(Model): Squad/Parts/FuelTank/RCStankRadialLong/model
[LOG 23:14:16.879] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3LargeTank
[LOG 23:14:16.886] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3MediumTank
[LOG 23:14:16.892] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3SmallTank
[LOG 23:14:16.898] Load(Model): Squad/Parts/FuelTank/xenonTank/model
[LOG 23:14:16.903] Load(Model): Squad/Parts/FuelTank/xenonTankLarge/model
[LOG 23:14:16.911] Load(Model): Squad/Parts/FuelTank/xenonTankRadial/model
[LOG 23:14:16.915] Load(Model): Squad/Parts/Misc/AsteroidDay/HECS2
[LOG 23:14:16.920] Load(Model): Squad/Parts/Misc/AsteroidDay/HighGainAntenna
[LOG 23:14:16.928] Load(Model): Squad/Parts/Misc/AsteroidDay/LgRadialSolar
[LOG 23:14:16.932] Load(Model): Squad/Parts/Misc/PotatoRoid/Cube
[LOG 23:14:16.936] Load(Model): Squad/Parts/Resources/FuelCell/FuelCell
[LOG 23:14:16.940] Load(Model): Squad/Parts/Resources/FuelCell/FuelCellArray
[LOG 23:14:16.949] Load(Model): Squad/Parts/Resources/ISRU/ISRU
[LOG 23:14:16.960] Load(Model): Squad/Parts/Resources/LargeTank/LargeTank
[LOG 23:14:16.966] Load(Model): Squad/Parts/Resources/MiniDrill/MiniDrill
[LOG 23:14:16.973] Load(Model): Squad/Parts/Resources/MiniISRU/MiniISRU
[LOG 23:14:16.981] Load(Model): Squad/Parts/Resources/OrbitalScanner/OrbitalScanner
[LOG 23:14:16.987] Load(Model): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 23:14:17.002] Load(Model): Squad/Parts/Resources/RadialTank/RadialOreTank
[LOG 23:14:17.006] Load(Model): Squad/Parts/Resources/SmallTank/SmallTank
[LOG 23:14:17.011] Load(Model): Squad/Parts/Resources/SurfaceScanner/SurfaceScanner
[LOG 23:14:17.016] Load(Model): Squad/Parts/Resources/SurveyScanner/SurveyScanner
[LOG 23:14:17.022] Load(Model): Squad/Parts/Science/AtmosphereSensor/model
[LOG 23:14:17.027] Load(Model): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 23:14:17.032] Load(Model): Squad/Parts/Science/LargeCrewedLab/large_crewed_lab
[LOG 23:14:17.046] Load(Model): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 23:14:17.055] Load(Model): Squad/Parts/Science/ScienceBox/ScienceBox
[LOG 23:14:17.059] Load(Model): Squad/Parts/Science/sensorAccelerometer/model
[LOG 23:14:17.062] Load(Model): Squad/Parts/Science/sensorBarometer/model
[LOG 23:14:17.066] Load(Model): Squad/Parts/Science/sensorGravimeter/model
[LOG 23:14:17.069] Load(Model): Squad/Parts/Science/sensorThermometer/model
[LOG 23:14:17.073] Load(Model): Squad/Parts/Structural/adapterLargeSmallBi/model
[LOG 23:14:17.078] Load(Model): Squad/Parts/Structural/adapterLargeSmallQuad/model
[LOG 23:14:17.083] Load(Model): Squad/Parts/Structural/adapterLargeSmallTri/model
[LOG 23:14:17.089] Load(Model): Squad/Parts/Structural/adapterSmallMiniShort/model
[LOG 23:14:17.094] Load(Model): Squad/Parts/Structural/adapterSmallMiniTall/model
[LOG 23:14:17.099] Load(Model): Squad/Parts/Structural/mk1Parts/Fuselage
[LOG 23:14:17.104] Load(Model): Squad/Parts/Structural/mk1Parts/IntakeFuselage
[LOG 23:14:17.110] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle1
[LOG 23:14:17.114] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle2
[LOG 23:14:17.120] Load(Model): Squad/Parts/Structural/mk1Parts/Structural
[LOG 23:14:17.125] Load(Model): Squad/Parts/Structural/mk1Parts/StructuralHollow
[LOG 23:14:17.129] Load(Model): Squad/Parts/Structural/Size3Decoupler/size3Decoupler
[LOG 23:14:17.136] Load(Model): Squad/Parts/Structural/Size3To2Adapter/Size3Adapter
[LOG 23:14:17.142] Load(Model): Squad/Parts/Structural/stationHub/model
[LOG 23:14:17.150] Load(Model): Squad/Parts/Structural/structuralIBeam200/model
[LOG 23:14:17.153] Load(Model): Squad/Parts/Structural/structuralIBeam200Pocket/model
[LOG 23:14:17.157] Load(Model): Squad/Parts/Structural/structuralIBeam650/model
[LOG 23:14:17.161] Load(Model): Squad/Parts/Structural/structuralMicronode/model
[LOG 23:14:17.165] Load(Model): Squad/Parts/Structural/structuralPanel1x1/model
[LOG 23:14:17.176] Load(Model): Squad/Parts/Structural/structuralPanel2x2/model
[LOG 23:14:17.182] Load(Model): Squad/Parts/Structural/structuralPylons/PylonBig
[LOG 23:14:17.187] Load(Model): Squad/Parts/Structural/structuralPylons/PylonSmall
[LOG 23:14:17.192] Load(Model): Squad/Parts/Structural/strutCubicOcto/model
[LOG 23:14:17.196] Load(Model): Squad/Parts/Structural/strutOcto/model
[LOG 23:14:17.202] Load(Model): Squad/Parts/Structural/trussGirderAdapter/model
[LOG 23:14:17.207] Load(Model): Squad/Parts/Structural/trussGirderL/model
[LOG 23:14:17.211] Load(Model): Squad/Parts/Structural/trussGirderXL/model
[LOG 23:14:17.217] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge
[LOG 23:14:17.245] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadMed
[LOG 23:14:17.259] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall
[LOG 23:14:17.272] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelEdge
[LOG 23:14:17.275] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelLg
[LOG 23:14:17.281] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelSm
[LOG 23:14:17.286] Load(Model): Squad/Parts/Utility/commDish88-88/model
[LOG 23:14:17.332] Load(Model): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 23:14:17.340] Load(Model): Squad/Parts/Utility/commsDish16/model
[LOG 23:14:17.345] Load(Model): Squad/Parts/Utility/decouplerRadialHDM/model
[LOG 23:14:17.349] Load(Model): Squad/Parts/Utility/decouplerRadialTT-38K/model
[LOG 23:14:17.354] Load(Model): Squad/Parts/Utility/decouplerRadialTT-70/model
[LOG 23:14:17.359] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-18D/model
[LOG 23:14:17.364] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-2C/model
[LOG 23:14:17.369] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-XL/model
[LOG 23:14:17.374] Load(Model): Squad/Parts/Utility/decouplerStack2m/model
[LOG 23:14:17.381] Load(Model): Squad/Parts/Utility/decouplerStackTR-18A/model
[LOG 23:14:17.386] Load(Model): Squad/Parts/Utility/decouplerStackTR-2V/model
[LOG 23:14:17.391] Load(Model): Squad/Parts/Utility/DirectAntennas/HGAntenna
[LOG 23:14:17.400] Load(Model): Squad/Parts/Utility/DirectAntennas/SurfAntenna
[LOG 23:14:17.404] Load(Model): Squad/Parts/Utility/dockingPort/model
[LOG 23:14:17.410] Load(Model): Squad/Parts/Utility/dockingPortInline/model
[LOG 23:14:17.419] Load(Model): Squad/Parts/Utility/dockingPortJr/model
[LOG 23:14:17.424] Load(Model): Squad/Parts/Utility/dockingPortShielded/model
[LOG 23:14:17.433] Load(Model): Squad/Parts/Utility/dockingPortSr/model
[LOG 23:14:17.440] Load(Model): Squad/Parts/Utility/GrapplingDevice/GrapplingArm
[LOG 23:14:17.474] Load(Model): Squad/Parts/Utility/ladderRadial/model
[LOG 23:14:17.477] Load(Model): Squad/Parts/Utility/ladderTelescopic/model
[LOG 23:14:17.487] Load(Model): Squad/Parts/Utility/ladderTelescopicBay/model
[LOG 23:14:17.501] Load(Model): Squad/Parts/Utility/landingLegLT-1/model
[LOG 23:14:17.508] Load(Model): Squad/Parts/Utility/landingLegLT-2/model
[LOG 23:14:17.514] Load(Model): Squad/Parts/Utility/landingLegLT-5/model
[WRN 23:14:17.520] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.520] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.522] Load(Model): Squad/Parts/Utility/largeAdapter/model
[LOG 23:14:17.527] Load(Model): Squad/Parts/Utility/largeAdapterShort/model
[LOG 23:14:17.532] Load(Model): Squad/Parts/Utility/launchClamp1/model
[LOG 23:14:17.538] Load(Model): Squad/Parts/Utility/launchEscapeSystem/LaunchEscapeSystem
[LOG 23:14:17.549] Load(Model): Squad/Parts/Utility/linearRCS/model
[LOG 23:14:17.552] Load(Model): Squad/Parts/Utility/mk2CargoBay/BayLarge
[LOG 23:14:17.560] Load(Model): Squad/Parts/Utility/mk2CargoBay/BaySmall
[LOG 23:14:17.567] Load(Model): Squad/Parts/Utility/mk2CrewCabin/model
[LOG 23:14:17.573] Load(Model): Squad/Parts/Utility/mk2DockingPort/model
[LOG 23:14:17.582] Load(Model): Squad/Parts/Utility/mk3CargoBay/long
[LOG 23:14:17.592] Load(Model): Squad/Parts/Utility/mk3CargoBay/medium
[LOG 23:14:17.598] Load(Model): Squad/Parts/Utility/mk3CargoBay/ramp
[LOG 23:14:17.613] Load(Model): Squad/Parts/Utility/mk3CargoBay/short
[LOG 23:14:17.619] Load(Model): Squad/Parts/Utility/parachuteMk1/model
[LOG 23:14:17.630] Load(Model): Squad/Parts/Utility/parachuteMk12-R/model
[LOG 23:14:17.635] Load(Model): Squad/Parts/Utility/parachuteMk16-XL/model
[LOG 23:14:17.641] Load(Model): Squad/Parts/Utility/parachuteMk2-R/model
[LOG 23:14:17.646] Load(Model): Squad/Parts/Utility/parachuteMk25/model
[LOG 23:14:17.652] Load(Model): Squad/Parts/Utility/radialAttachmentPoint/model
[LOG 23:14:17.657] Load(Model): Squad/Parts/Utility/rcsBlockRV-105/model
[LOG 23:14:17.661] Load(Model): Squad/Parts/Utility/RelayAntennas/HGAntenna
[LOG 23:14:17.669] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-100
[LOG 23:14:17.674] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-5
[LOG 23:14:17.678] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-50
[LOG 23:14:17.682] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_125
[LOG 23:14:17.696] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_250
[LOG 23:14:17.708] Load(Model): Squad/Parts/Utility/spotLightMk1/model
[LOG 23:14:17.712] Load(Model): Squad/Parts/Utility/spotLightMk2/model
[LOG 23:14:17.719] Load(Model): Squad/Parts/Utility/stackBiCoupler/model
[LOG 23:14:17.722] Load(Model): Squad/Parts/Utility/stackQuadCoupler/model
[LOG 23:14:17.727] Load(Model): Squad/Parts/Utility/stackTriCoupler/model
[LOG 23:14:17.732] Load(Model): Squad/Parts/Wheel/LandingGear/GearExtraLarge
[WRN 23:14:17.744] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.745] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.748] Load(Model): Squad/Parts/Wheel/LandingGear/GearFixed
[WRN 23:14:17.751] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.752] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.753] Load(Model): Squad/Parts/Wheel/LandingGear/GearFree
[WRN 23:14:17.756] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.756] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.759] Load(Model): Squad/Parts/Wheel/LandingGear/GearLarge
[WRN 23:14:17.761] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.761] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.768] Load(Model): Squad/Parts/Wheel/LandingGear/GearMedium
[WRN 23:14:17.774] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.775] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.776] Load(Model): Squad/Parts/Wheel/LandingGear/GearSmall
[WRN 23:14:17.779] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.779] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.783] Load(Model): Squad/Parts/Wheel/roverWheelM1/model
[WRN 23:14:17.789] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.790] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.791] Load(Model): Squad/Parts/Wheel/roverWheelS2/model
[WRN 23:14:17.794] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.794] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.799] Load(Model): Squad/Parts/Wheel/roverWheelTR-2L/model
[WRN 23:14:17.806] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.806] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.808] Load(Model): Squad/Parts/Wheel/roverWheelXL3/model
[WRN 23:14:17.823] WheelCollider requires an attached Rigidbody to function.
[WRN 23:14:17.823] WheelCollider requires an attached Rigidbody to function.
[LOG 23:14:17.825] Load(Model): Squad/Props/AltimeterThreeHands/model
[LOG 23:14:17.828] Load(Model): Squad/Props/AtmosphereDepth/model
[LOG 23:14:17.831] Load(Model): Squad/Props/AxisIndicator/model
[LOG 23:14:17.833] Load(Model): Squad/Props/buttonsGeneric/circularButton
[LOG 23:14:17.836] Load(Model): Squad/Props/buttonsGeneric/clusterButtons
[LOG 23:14:17.840] Load(Model): Squad/Props/buttonsGeneric/clusterButtons2
[LOG 23:14:17.844] Load(Model): Squad/Props/buttonsGeneric/clusterKnob
[LOG 23:14:17.848] Load(Model): Squad/Props/buttonsGeneric/clusterKnob2
[LOG 23:14:17.853] Load(Model): Squad/Props/buttonsGeneric/clusterMixed
[LOG 23:14:17.857] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches01
[LOG 23:14:17.868] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches02
[LOG 23:14:17.874] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches03
[LOG 23:14:17.881] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches04
[LOG 23:14:17.885] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches05
[LOG 23:14:17.890] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches06
[LOG 23:14:17.894] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches07
[LOG 23:14:17.898] Load(Model): Squad/Props/buttonsGeneric/directionalKnob
[LOG 23:14:17.901] Load(Model): Squad/Props/buttonsGeneric/directionalKnob2
[LOG 23:14:17.904] Load(Model): Squad/Props/buttonsGeneric/pullSwitch
[LOG 23:14:17.907] Load(Model): Squad/Props/buttonsGeneric/squareButton
[LOG 23:14:17.910] Load(Model): Squad/Props/buttonsGeneric/standingSwitch
[LOG 23:14:17.912] Load(Model): Squad/Props/buttonsGeneric/switch
[LOG 23:14:17.915] Load(Model): Squad/Props/buttonsGeneric/switchWithGuards
[LOG 23:14:17.918] Load(Model): Squad/Props/ButtonSquare/model
[LOG 23:14:17.921] Load(Model): Squad/Props/circularButton/model
[LOG 23:14:17.924] Load(Model): Squad/Props/Compass/model
[LOG 23:14:17.927] Load(Model): Squad/Props/directionalKnob/model
[LOG 23:14:17.930] Load(Model): Squad/Props/directionalKnob2/model
[LOG 23:14:17.933] Load(Model): Squad/Props/IndicatorPanel/model
[LOG 23:14:17.938] Load(Model): Squad/Props/IVANavBall/model
[LOG 23:14:17.947] Load(Model): Squad/Props/ledPanelSpeed/model
[LOG 23:14:17.950] Load(Model): Squad/Props/Monitor/MonitorDockingMode
[LOG 23:14:17.954] Load(Model): Squad/Props/NavBall/model
[LOG 23:14:17.960] Load(Model): Squad/Props/PropsGeneric/Button_DockingMode
[LOG 23:14:17.962] Load(Model): Squad/Props/PropsGeneric/CargoBagA
[LOG 23:14:17.969] Load(Model): Squad/Props/PropsGeneric/CargoBagB
[LOG 23:14:17.972] Load(Model): Squad/Props/PropsGeneric/CargoBagC
[LOG 23:14:17.975] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane
[LOG 23:14:17.978] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Curve90
[LOG 23:14:17.982] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Frame
[LOG 23:14:17.985] Load(Model): Squad/Props/PropsGeneric/Seat_Passenger
[LOG 23:14:17.988] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot
[LOG 23:14:17.993] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot_Helmet
[LOG 23:14:17.997] Load(Model): Squad/Props/PropsGeneric/SideStick
[LOG 23:14:18.000] Load(Model): Squad/Props/pullSwitch/model
[LOG 23:14:18.003] Load(Model): Squad/Props/radarAltitude/model
[LOG 23:14:18.006] Load(Model): Squad/Props/squareButton/model
[LOG 23:14:18.009] Load(Model): Squad/Props/standingSwitch/model
[LOG 23:14:18.011] Load(Model): Squad/Props/switch/model
[LOG 23:14:18.014] Load(Model): Squad/Props/switchGuard/model
[LOG 23:14:18.017] Load(Model): Squad/Props/switchWithGuards/model
[LOG 23:14:18.021] Load(Model): Squad/Props/throttle/model
[LOG 23:14:18.024] Load(Model): Squad/Props/VSI/model
[LOG 23:14:18.028] Load(Model): Squad/Spaces/crewCabinInternals/model
[LOG 23:14:18.047] Load(Model): Squad/Spaces/cupolaInternal/model
[LOG 23:14:18.058] Load(Model): Squad/Spaces/GenericSpace1/model
[LOG 23:14:18.074] Load(Model): Squad/Spaces/GenericSpace3/model
[LOG 23:14:18.096] Load(Model): Squad/Spaces/landerCabinInternals/model
[LOG 23:14:18.109] Load(Model): Squad/Spaces/landerCabinSmallInternal/model
[LOG 23:14:18.132] Load(Model): Squad/Spaces/LargeCrewedLabInternals/Large_Crewed_lab_Int
[LOG 23:14:18.157] Load(Model): Squad/Spaces/mk1CabinInternal/mk1cabin
[LOG 23:14:18.165] Load(Model): Squad/Spaces/mk1CockpitInternal/Mk1StandardIVA
[LOG 23:14:18.175] Load(Model): Squad/Spaces/mk1InlineInternal/Mk1InlineIVA
[LOG 23:14:18.186] Load(Model): Squad/Spaces/mk1PodCockpit/model
[LOG 23:14:18.199] Load(Model): Squad/Spaces/mk2CockpitStandardInternal/model
[LOG 23:14:18.212] Load(Model): Squad/Spaces/Mk2CrewCabinInternal/MK2_CrewCab_Int
[LOG 23:14:18.234] Load(Model): Squad/Spaces/mk2InlineInternal/mk2InlineIVA
[LOG 23:14:18.257] Load(Model): Squad/Spaces/MK3CockpitInternal/MK3_Cockpit_Int
[LOG 23:14:18.270] Load(Model): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 23:14:18.322] Load(Model): Squad/Spaces/OverlayMasks/CupolaMask
[LOG 23:14:18.326] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerBorder
[LOG 23:14:18.330] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerMask
[LOG 23:14:18.334] Load(Model): Squad/Spaces/OverlayMasks/LargeLabBorder
[LOG 23:14:18.338] Load(Model): Squad/Spaces/OverlayMasks/LargeLabMask
[LOG 23:14:18.341] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinBorder
[LOG 23:14:18.344] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinMask
[LOG 23:14:18.347] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask
[LOG 23:14:18.351] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask2
[LOG 23:14:18.353] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder2
[LOG 23:14:18.356] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder3
[LOG 23:14:18.359] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask
[LOG 23:14:18.362] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask2
[LOG 23:14:18.365] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask3
[LOG 23:14:18.368] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinBorder
[LOG 23:14:18.371] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinMask
[LOG 23:14:18.374] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineBorder
[LOG 23:14:18.377] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineMask
[LOG 23:14:18.381] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardBorder
[LOG 23:14:18.383] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardMask
[LOG 23:14:18.387] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinBorder
[LOG 23:14:18.390] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask
[LOG 23:14:18.392] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask2
[LOG 23:14:18.396] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleBorder
[LOG 23:14:18.399] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleMask
[LOG 23:14:18.403] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderBorder
[LOG 23:14:18.406] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderMask
[LOG 23:14:18.409] Load(Model): Squad/Spaces/OverlayMasks/Size1PodBorder
[LOG 23:14:18.412] Load(Model): Squad/Spaces/OverlayMasks/Size1PodMask
[LOG 23:14:18.414] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderBorder
[LOG 23:14:18.418] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderMask
[LOG 23:14:18.422] Load(Model): Squad/Spaces/OverlayMasks/Size2PodBorder
[LOG 23:14:18.426] Load(Model): Squad/Spaces/OverlayMasks/Size2PodMask
[LOG 23:14:18.429] Load(Model): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 23:14:18.434] Load(Model): Squad/Spaces/PodCockpit/model
[LOG 23:14:18.462] Loading Asset Bundle Definitions
[LOG 23:14:18.466] AssetLoader: Loading bundle definitions
[LOG 23:14:18.885] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\squadcore.ksp'
[LOG 23:14:18.959] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\squadcorefx.ksp'
[LOG 23:14:18.972] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia.ksp'
[LOG 23:14:18.983] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aeroforces.ksp'
[LOG 23:14:19.395] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraft.ksp'
[LOG 23:14:19.630] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasics.ksp'
[LOG 23:14:19.782] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance.ksp'
[LOG 23:14:19.942] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance2.ksp'
[LOG 23:14:20.084] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscol.ksp'
[LOG 23:14:20.236] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrol.ksp'
[LOG 23:14:20.378] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrolsurfaces.ksp'
[LOG 23:14:20.553] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsdrag.ksp'
[LOG 23:14:20.694] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsengines.ksp'
[LOG 23:14:20.790] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsforces.ksp'
[LOG 23:14:20.940] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsintakes.ksp'
[LOG 23:14:21.064] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicslandinggear.ksp'
[LOG 23:14:21.193] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicslift.ksp'
[LOG 23:14:21.409] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_career.ksp'
[LOG 23:14:21.510] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscontracts.ksp'
[LOG 23:14:21.646] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscrew.ksp'
[LOG 23:14:21.721] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscurrencies.ksp'
[LOG 23:14:21.793] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsexperience.ksp'
[LOG 23:14:21.971] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsfacilities.ksp'
[LOG 23:14:22.087] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsstrategies.ksp'
[LOG 23:14:22.168] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicstechnology.ksp'
[LOG 23:14:22.332] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ac.ksp'
[LOG 23:14:22.515] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-admin.ksp'
[LOG 23:14:22.697] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ksc.ksp'
[LOG 23:14:22.824] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-mc.ksp'
[LOG 23:14:22.942] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-sciencearchives.ksp'
[LOG 23:14:23.036] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-techtree.ksp'
[LOG 23:14:23.171] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ts.ksp'
[LOG 23:14:23.487] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui.ksp'
[LOG 23:14:23.642] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnet.ksp'
[LOG 23:14:23.799] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetbasics.ksp'
[LOG 23:14:23.811] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetbuildingeffectivenetworks.ksp'
[LOG 23:14:23.821] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcalculatingrange.ksp'
[LOG 23:14:23.832] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrollevels.ksp'
[LOG 23:14:23.922] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrollinks.ksp'
[LOG 23:14:23.934] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrolpoints.ksp'
[LOG 23:14:24.040] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui.ksp'
[LOG 23:14:24.050] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui01.ksp'
[LOG 23:14:24.061] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui02.ksp'
[LOG 23:14:24.148] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetrange.ksp'
[LOG 23:14:24.256] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetrelays.ksp'
[LOG 23:14:24.266] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetsciencetransmission.ksp'
[LOG 23:14:24.277] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetsignalstrength.ksp'
[LOG 23:14:24.401] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnettransmission.ksp'
[LOG 23:14:24.541] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-actiongroups.ksp'
[LOG 23:14:24.682] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-applauncher.ksp'
[LOG 23:14:24.816] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-crew.ksp'
[LOG 23:14:24.984] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-engineersreport.ksp'
[LOG 23:14:25.110] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-gizmos.ksp'
[LOG 23:14:25.209] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-infos.ksp'
[LOG 23:14:25.319] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-partdetails.ksp'
[LOG 23:14:25.446] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-parts.ksp'
[LOG 23:14:25.555] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-symmetry.ksp'
[LOG 23:14:25.673] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-vesseldetails.ksp'
[LOG 23:14:25.947] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui.ksp'
[LOG 23:14:26.056] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-dockingmode.ksp'
[LOG 23:14:26.134] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-editor.ksp'
[LOG 23:14:26.261] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-editorgizmos.ksp'
[LOG 23:14:26.414] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-eva.ksp'
[LOG 23:14:26.523] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flight.ksp'
[LOG 23:14:26.600] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flightactivities.ksp'
[LOG 23:14:26.721] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flightdirections.ksp'
[LOG 23:14:26.800] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-general.ksp'
[LOG 23:14:26.880] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mapandtime.ksp'
[LOG 23:14:26.958] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mouseconstruction.ksp'
[LOG 23:14:27.034] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mouseflight.ksp'
[LOG 23:14:27.140] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-rcs.ksp'
[LOG 23:14:27.463] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls.ksp'
[LOG 23:14:27.617] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_eastereggs.ksp'
[LOG 23:14:27.838] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ac.ksp'
[LOG 23:14:28.054] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-admin.ksp'
[LOG 23:14:28.250] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-context.ksp'
[LOG 23:14:28.526] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ksc.ksp'
[LOG 23:14:28.714] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-launchpad.ksp'
[LOG 23:14:28.931] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-mc.ksp'
[LOG 23:14:29.153] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-randd.ksp'
[LOG 23:14:29.337] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-runway.ksp'
[LOG 23:14:29.537] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-sph.ksp'
[LOG 23:14:29.728] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ts.ksp'
[LOG 23:14:29.927] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-vab.ksp'
[LOG 23:14:30.024] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-altimeter.ksp'
[LOG 23:14:30.036] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-altimiter.ksp'
[LOG 23:14:30.137] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-applauncher.ksp'
[LOG 23:14:30.266] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-evaactivities.ksp'
[LOG 23:14:30.278] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-mapnodes.ksp'
[LOG 23:14:30.379] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-modecontrol.ksp'
[LOG 23:14:30.493] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-navball.ksp'
[LOG 23:14:30.645] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-portraits.ksp'
[LOG 23:14:30.735] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-staging.ksp'
[LOG 23:14:30.853] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-timeandaction.ksp'
[LOG 23:14:31.005] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui.ksp'
[LOG 23:14:31.218] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heat.ksp'
[LOG 23:14:31.317] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatactiveradiators.ksp'
[LOG 23:14:31.395] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatcore.ksp'
[LOG 23:14:31.474] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatengines.ksp'
[LOG 23:14:31.562] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatflow.ksp'
[LOG 23:14:31.642] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatpart.ksp'
[LOG 23:14:31.748] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatpassiveradiators.ksp'
[LOG 23:14:31.997] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatshields.ksp'
[LOG 23:14:32.268] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnet.ksp'
[LOG 23:14:32.363] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetinterface.ksp'
[LOG 23:14:32.486] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetmodes.ksp'
[LOG 23:14:32.622] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetwaypoints.ksp'
[LOG 23:14:32.982] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_locations.ksp'
[LOG 23:14:33.060] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_manual.ksp'
[LOG 23:14:33.142] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-mannodes.ksp'
[LOG 23:14:33.261] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes.ksp'
[LOG 23:14:33.352] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes2.ksp'
[LOG 23:14:33.481] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui.ksp'
[LOG 23:14:33.492] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaladvanced-obertheffect.ksp'
[LOG 23:14:33.613] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-atmosphere.ksp'
[LOG 23:14:33.733] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingbackdown.ksp'
[LOG 23:14:33.862] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingupthere.ksp'
[LOG 23:14:33.992] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gravityturn.ksp'
[LOG 23:14:34.099] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-orbits.ksp'
[LOG 23:14:34.231] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-stayingupthere.ksp'
[LOG 23:14:34.364] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics.ksp'
[LOG 23:14:34.475] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-appe.ksp'
[LOG 23:14:34.592] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-dirandinc.ksp'
[LOG 23:14:34.730] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-directions.ksp'
[LOG 23:14:34.842] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-eccentricity.ksp'
[LOG 23:14:34.853] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-efficiency.ksp'
[LOG 23:14:34.979] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions.ksp'
[LOG 23:14:35.084] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-adjustinginclination.ksp'
[LOG 23:14:35.182] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-deltav.ksp'
[LOG 23:14:35.268] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-efficiency.ksp'
[LOG 23:14:35.362] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer.ksp'
[LOG 23:14:35.454] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer2.ksp'
[LOG 23:14:35.566] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-orbittypes.ksp'
[LOG 23:14:35.667] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-radandantirad.ksp'
[LOG 23:14:35.769] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-shapingup.ksp'
[LOG 23:14:35.877] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers.ksp'
[LOG 23:14:35.887] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmanuevers-orbittypes.ksp'
[LOG 23:14:36.026] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-dres.ksp'
[LOG 23:14:36.186] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-duna.ksp'
[LOG 23:14:36.366] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-eeloo.ksp'
[LOG 23:14:36.509] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-eve.ksp'
[LOG 23:14:36.644] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-jool.ksp'
[LOG 23:14:36.790] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-kerbin.ksp'
[LOG 23:14:36.802] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-kerbol.ksp'
[LOG 23:14:36.928] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-moho.ksp'
[LOG 23:14:37.070] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-sun.ksp'
[LOG 23:14:37.208] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-system.ksp'
[LOG 23:14:37.335] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-asteroidmining.ksp'
[LOG 23:14:37.347] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-conversionmanagement.ksp'
[LOG 23:14:37.443] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-drilling.ksp'
[LOG 23:14:37.601] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-findingit.ksp'
[LOG 23:14:37.748] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-findingit2.ksp'
[LOG 23:14:37.893] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-storageandconversion.ksp'
[LOG 23:14:38.061] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources.ksp'
[LOG 23:14:38.073] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketforces.ksp'
[LOG 23:14:38.373] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketry.ksp'
[LOG 23:14:38.500] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-fairings.ksp'
[LOG 23:14:38.633] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-girders.ksp'
[LOG 23:14:38.644] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-heat.ksp'
[LOG 23:14:38.655] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-heatshields.ksp'
[LOG 23:14:38.666] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-radiators.ksp'
[LOG 23:14:38.677] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-struts.ksp'
[LOG 23:14:38.933] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced.ksp'
[LOG 23:14:39.137] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasics.ksp'
[LOG 23:14:39.273] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsaero.ksp'
[LOG 23:14:39.379] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicscentered.ksp'
[LOG 23:14:39.503] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicschutes.ksp'
[LOG 23:14:39.514] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicschutesandladders.ksp'
[LOG 23:14:39.661] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicscontrol.ksp'
[LOG 23:14:39.795] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsecrecharging.ksp'
[LOG 23:14:39.894] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsengines.ksp'
[LOG 23:14:39.993] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsforces.ksp'
[LOG 23:14:40.144] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicshatchesandladders.ksp'
[LOG 23:14:40.303] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsresources.ksp'
[LOG 23:14:40.494] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsservicecontainers.ksp'
[LOG 23:14:40.603] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstability.ksp'
[LOG 23:14:40.722] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstabilityassist.ksp'
[LOG 23:14:40.841] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstaging.ksp'
[LOG 23:14:40.958] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicssymmetry.ksp'
[LOG 23:14:41.127] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_science.ksp'
[LOG 23:14:41.287] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencedata.ksp'
[LOG 23:14:41.430] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_scienceexperiments.ksp'
[LOG 23:14:41.576] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencelab.ksp'
[LOG 23:14:41.746] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencetransmitted.ksp'
[LOG 23:14:41.917] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_spacetravel.ksp'
[LOG 23:14:41.921] AssetLoader: Finished loading. 185 bundle definitions loaded.
[LOG 23:14:41.923] Config(AGENT) Squad/Agencies/Agents/C7 Aerospace Division
[LOG 23:14:41.924] Config(AGENT) Squad/Agencies/Agents/Dinkelstein Kerman's Construction Emporium
[LOG 23:14:41.925] Config(AGENT) Squad/Agencies/Agents/Experimental Engineering Group
[LOG 23:14:41.926] Config(AGENT) Squad/Agencies/Agents/FLOOYD Dynamics Research Labs
[LOG 23:14:41.927] Config(AGENT) Squad/Agencies/Agents/Goliath National Products
[LOG 23:14:41.928] Config(AGENT) Squad/Agencies/Agents/Integrated Integrals
[LOG 23:14:41.929] Config(AGENT) Squad/Agencies/Agents/Ionic Symphonic Protonic Electronics
[LOG 23:14:41.930] Config(AGENT) Squad/Agencies/Agents/Jebediah Kerman's Junkyard and Spacecraft Parts Co
[LOG 23:14:41.932] Config(AGENT) Squad/Agencies/Agents/Kerbal Motion LLC
[LOG 23:14:41.933] Config(AGENT) Squad/Agencies/Agents/Kerbin World-Firsts Record-Keeping Society
[LOG 23:14:41.934] Config(AGENT) Squad/Agencies/Agents/Kerbodyne
[LOG 23:14:41.935] Config(AGENT) Squad/Agencies/Agents/Kerlington Model Rockets and Paper Products Inc
[LOG 23:14:41.936] Config(AGENT) Squad/Agencies/Agents/Maxo Construction Toys
[LOG 23:14:41.937] Config(AGENT) Squad/Agencies/Agents/Moving Parts Experts Group
[LOG 23:14:41.938] Config(AGENT) Squad/Agencies/Agents/O.M.B. Demolition Enterprises
[LOG 23:14:41.939] Config(AGENT) Squad/Agencies/Agents/Periapsis Rocket Supplies Co
[LOG 23:14:41.940] Config(AGENT) Squad/Agencies/Agents/Probodobodyne Inc
[LOG 23:14:41.941] Config(AGENT) Squad/Agencies/Agents/Research & Development Department
[LOG 23:14:41.942] Config(AGENT) Squad/Agencies/Agents/Reaction Systems Ltd
[LOG 23:14:41.943] Config(AGENT) Squad/Agencies/Agents/Rockomax Conglomerate
[LOG 23:14:41.944] Config(AGENT) Squad/Agencies/Agents/Rokea Inc
[LOG 23:14:41.945] Config(AGENT) Squad/Agencies/Agents/Sean's Cannery
[LOG 23:14:41.946] Config(AGENT) Squad/Agencies/Agents/STEADLER Engineering Corps
[LOG 23:14:41.947] Config(AGENT) Squad/Agencies/Agents/StrutCo
[LOG 23:14:41.948] Config(AGENT) Squad/Agencies/Agents/Vac-Co Advanced Suction Systems
[LOG 23:14:41.949] Config(AGENT) Squad/Agencies/Agents/WinterOwl Aircraft Emporium
[LOG 23:14:41.950] Config(AGENT) Squad/Agencies/Agents/Zaltonic Electronics
[LOG 23:14:41.951] Config(Contracts) Squad/Contracts/Contracts/Contracts
[LOG 23:14:41.952] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Pilot
[LOG 23:14:41.953] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Engineer
[LOG 23:14:41.954] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Scientist
[LOG 23:14:41.955] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Tourist
[LOG 23:14:41.956] Config(PART) Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone
[LOG 23:14:41.957] Config(PART) Squad/Parts/Aero/airbrake/Airbrake/airbrake1
[LOG 23:14:41.958] Config(PART) Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop
[LOG 23:14:41.959] Config(PART) Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf
[LOG 23:14:41.960] Config(PART) Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing
[LOG 23:14:41.961] Config(PART) Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin
[LOG 23:14:41.962] Config(PART) Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard
[LOG 23:14:41.963] Config(PART) Squad/Parts/Aero/airplaneFins/standardCanard/CanardController
[LOG 23:14:41.964] Config(PART) Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing
[LOG 23:14:41.965] Config(PART) Squad/Parts/Aero/airplaneFins/tailfin/tailfin
[LOG 23:14:41.966] Config(PART) Squad/Parts/Aero/basicFin/basicFin/basicFin
[LOG 23:14:41.967] Config(PART) Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake
[LOG 23:14:41.969] Config(PART) Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake
[LOG 23:14:41.970] Config(PART) Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone
[LOG 23:14:41.971] Config(PART) Squad/Parts/Aero/cones/ConeA/pointyNoseConeA
[LOG 23:14:41.972] Config(PART) Squad/Parts/Aero/cones/ConeB/pointyNoseConeB
[LOG 23:14:41.973] Config(PART) Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter
[LOG 23:14:41.974] Config(PART) Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone
[LOG 23:14:41.975] Config(PART) Squad/Parts/Aero/cones/tailConnectorA/airplaneTail
[LOG 23:14:41.976] Config(PART) Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB
[LOG 23:14:41.977] Config(PART) Squad/Parts/Aero/fairings/fairingSize1/fairingSize1
[LOG 23:14:41.978] Config(PART) Squad/Parts/Aero/fairings/fairingSize2/fairingSize2
[LOG 23:14:41.979] Config(PART) Squad/Parts/Aero/fairings/fairingSize3/fairingSize3
[LOG 23:14:41.980] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0
[LOG 23:14:41.981] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1
[LOG 23:14:41.982] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2
[LOG 23:14:41.983] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3
[LOG 23:14:41.984] Config(PART) Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield
[LOG 23:14:41.985] Config(PART) Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong
[LOG 23:14:41.986] Config(PART) Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake
[LOG 23:14:41.987] Config(PART) Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone
[LOG 23:14:41.988] Config(PART) Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake
[LOG 23:14:41.989] Config(PART) Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta
[LOG 23:14:41.990] Config(PART) Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1
[LOG 23:14:41.991] Config(PART) Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2
[LOG 23:14:41.993] Config(PART) Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder
[LOG 23:14:41.994] Config(PART) Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake
[LOG 23:14:41.995] Config(PART) Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet
[LOG 23:14:41.996] Config(PART) Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet
[LOG 23:14:41.997] Config(PART) Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3
[LOG 23:14:41.998] Config(PART) Squad/Parts/Aero/wings/connector1/wingConnector
[LOG 23:14:41.999] Config(PART) Squad/Parts/Aero/wings/connector2/wingConnector2
[LOG 23:14:42.000] Config(PART) Squad/Parts/Aero/wings/connector3/wingConnector3
[LOG 23:14:42.001] Config(PART) Squad/Parts/Aero/wings/connector4/wingConnector4
[LOG 23:14:42.002] Config(PART) Squad/Parts/Aero/wings/connector5/wingConnector5
[LOG 23:14:42.003] Config(PART) Squad/Parts/Aero/wings/delta/deltaWing
[LOG 23:14:42.004] Config(PART) Squad/Parts/Aero/wings/delta_small/delta_small
[LOG 23:14:42.005] Config(PART) Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf
[LOG 23:14:42.006] Config(PART) Squad/Parts/Aero/wings/elevon2/elevon2
[LOG 23:14:42.007] Config(PART) Squad/Parts/Aero/wings/elevon3/elevon3
[LOG 23:14:42.008] Config(PART) Squad/Parts/Aero/wings/elevon4/smallCtrlSrf
[LOG 23:14:42.009] Config(PART) Squad/Parts/Aero/wings/elevon5/elevon5
[LOG 23:14:42.010] Config(PART) Squad/Parts/Aero/wings/strake/wingStrake
[LOG 23:14:42.011] Config(PART) Squad/Parts/Aero/wings/structural1/structuralWing
[LOG 23:14:42.012] Config(PART) Squad/Parts/Aero/wings/structural2/structuralWing2
[LOG 23:14:42.013] Config(PART) Squad/Parts/Aero/wings/structural3/structuralWing3
[LOG 23:14:42.014] Config(PART) Squad/Parts/Aero/wings/structural4/structuralWing4
[LOG 23:14:42.015] Config(PART) Squad/Parts/Aero/wings/swept1/sweptWing1
[LOG 23:14:42.016] Config(PART) Squad/Parts/Aero/wings/swept2/sweptWing2
[LOG 23:14:42.017] Config(PART) Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2
[LOG 23:14:42.018] Config(PART) Squad/Parts/Command/cupola/cupola/cupola
[LOG 23:14:42.019] Config(PART) Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd
[LOG 23:14:42.020] Config(PART) Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin
[LOG 23:14:42.021] Config(PART) Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule
[LOG 23:14:42.022] Config(PART) Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule
[LOG 23:14:42.023] Config(PART) Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod
[LOG 23:14:42.024] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit
[LOG 23:14:42.026] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin
[LOG 23:14:42.027] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit
[LOG 23:14:42.028] Config(PART) Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall
[LOG 23:14:42.029] Config(PART) Squad/Parts/Command/mk1pod/mk1Pod/mk1pod
[LOG 23:14:42.030] Config(PART) Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline
[LOG 23:14:42.031] Config(PART) Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard
[LOG 23:14:42.032] Config(PART) Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore
[LOG 23:14:42.033] Config(PART) Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin
[LOG 23:14:42.034] Config(PART) Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle
[LOG 23:14:42.035] Config(PART) Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube
[LOG 23:14:42.037] Config(PART) Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex
[LOG 23:14:42.038] Config(PART) Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto
[LOG 23:14:42.039] Config(PART) Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2
[LOG 23:14:42.040] Config(PART) Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody
[LOG 23:14:42.041] Config(PART) Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge
[LOG 23:14:42.042] Config(PART) Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall
[LOG 23:14:42.043] Config(PART) Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere
[LOG 23:14:42.044] Config(PART) Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine
[LOG 23:14:42.045] Config(PART) Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector
[LOG 23:14:42.046] Config(PART) Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2
[LOG 23:14:42.048] Config(PART) Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4
[LOG 23:14:42.049] Config(PART) Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1
[LOG 23:14:42.050] Config(PART) Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3
[LOG 23:14:42.051] Config(PART) Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel
[LOG 23:14:42.052] Config(PART) Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5
[LOG 23:14:42.053] Config(PART) Squad/Parts/Electrical/RTG/RTG/rtg
[LOG 23:14:42.054] Config(PART) Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack
[LOG 23:14:42.055] Config(PART) Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank
[LOG 23:14:42.056] Config(PART) Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini
[LOG 23:14:42.058] Config(PART) Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack
[LOG 23:14:42.059] Config(PART) Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge
[LOG 23:14:42.060] Config(PART) Squad/Parts/Engine/ionEngine/ionEngine/ionEngine
[LOG 23:14:42.061] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet
[LOG 23:14:42.062] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine
[LOG 23:14:42.063] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2
[LOG 23:14:42.064] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine
[LOG 23:14:42.065] Config(PART) Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine
[LOG 23:14:42.066] Config(PART) Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini
[LOG 23:14:42.067] Config(PART) Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike
[LOG 23:14:42.068] Config(PART) Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine
[LOG 23:14:42.070] Config(PART) Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini
[LOG 23:14:42.071] Config(PART) Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3
[LOG 23:14:42.072] Config(PART) Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine
[LOG 23:14:42.073] Config(PART) Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine
[LOG 23:14:42.074] Config(PART) Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2
[LOG 23:14:42.075] Config(PART) Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2
[LOG 23:14:42.076] Config(PART) Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2
[LOG 23:14:42.078] Config(PART) Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2
[LOG 23:14:42.079] Config(PART) Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper
[LOG 23:14:42.080] Config(PART) Squad/Parts/Engine/liquidEngineSSME/SSME/SSME
[LOG 23:14:42.081] Config(PART) Squad/Parts/Engine/MassiveSRB/part/MassiveBooster
[LOG 23:14:42.082] Config(PART) Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine
[LOG 23:14:42.083] Config(PART) Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine
[LOG 23:14:42.084] Config(PART) Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER
[LOG 23:14:42.085] Config(PART) Squad/Parts/Engine/Size2LFB/part/Size2LFB
[LOG 23:14:42.086] Config(PART) Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine
[LOG 23:14:42.087] Config(PART) Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster
[LOG 23:14:42.089] Config(PART) Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1
[LOG 23:14:42.090] Config(PART) Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster
[LOG 23:14:42.091] Config(PART) Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm
[LOG 23:14:42.092] Config(PART) Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1
[LOG 23:14:42.093] Config(PART) Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine
[LOG 23:14:42.094] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2
[LOG 23:14:42.096] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines
[LOG 23:14:42.097] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2
[LOG 23:14:42.098] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant
[LOG 23:14:42.099] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2
[LOG 23:14:42.100] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1
[LOG 23:14:42.101] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant
[LOG 23:14:42.103] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3
[LOG 23:14:42.104] Config(PART) Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2
[LOG 23:14:42.105] Config(PART) Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank
[LOG 23:14:42.106] Config(PART) Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat
[LOG 23:14:42.107] Config(PART) Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall
[LOG 23:14:42.108] Config(PART) Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank
[LOG 23:14:42.109] Config(PART) Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long
[LOG 23:14:42.111] Config(PART) Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank
[LOG 23:14:42.112] Config(PART) Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2
[LOG 23:14:42.113] Config(PART) Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2
[LOG 23:14:42.114] Config(PART) Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2
[LOG 23:14:42.115] Config(PART) Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage
[LOG 23:14:42.116] Config(PART) Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler
[LOG 23:14:42.117] Config(PART) Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong
[LOG 23:14:42.119] Config(PART) Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter
[LOG 23:14:42.120] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO
[LOG 23:14:42.121] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage
[LOG 23:14:42.122] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO
[LOG 23:14:42.123] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid
[LOG 23:14:42.124] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono
[LOG 23:14:42.125] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin
[LOG 23:14:42.127] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100
[LOG 23:14:42.128] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25
[LOG 23:14:42.129] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50
[LOG 23:14:42.130] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100
[LOG 23:14:42.131] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25
[LOG 23:14:42.132] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50
[LOG 23:14:42.133] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO
[LOG 23:14:42.134] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2
[LOG 23:14:42.135] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini
[LOG 23:14:42.136] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank
[LOG 23:14:42.138] Config(PART) Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank
[LOG 23:14:42.139] Config(PART) Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong
[LOG 23:14:42.140] Config(PART) Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank
[LOG 23:14:42.141] Config(PART) Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank
[LOG 23:14:42.142] Config(PART) Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank
[LOG 23:14:42.143] Config(PART) Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank
[LOG 23:14:42.144] Config(PART) Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge
[LOG 23:14:42.145] Config(PART) Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial
[LOG 23:14:42.147] Config(PART) Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore
[LOG 23:14:42.148] Config(PART) Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna
[LOG 23:14:42.149] Config(PART) Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel
[LOG 23:14:42.150] Config(PART) Squad/Parts/Misc/PotatoRoid/part/PotatoRoid
[LOG 23:14:42.151] Config(PART) Squad/Parts/Prebuilt/flag/flag
[LOG 23:14:42.152] Config(PART) Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA
[LOG 23:14:42.153] Config(PART) Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale
[LOG 23:14:42.154] Config(PART) Squad/Parts/Resources/FuelCell/FuelCell/FuelCell
[LOG 23:14:42.155] Config(PART) Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray
[LOG 23:14:42.156] Config(PART) Squad/Parts/Resources/ISRU/ISRU/ISRU
[LOG 23:14:42.157] Config(PART) Squad/Parts/Resources/LargeTank/LargeTank/LargeTank
[LOG 23:14:42.158] Config(PART) Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill
[LOG 23:14:42.159] Config(PART) Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU
[LOG 23:14:42.160] Config(PART) Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner
[LOG 23:14:42.161] Config(PART) Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill
[LOG 23:14:42.163] Config(PART) Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank
[LOG 23:14:42.164] Config(PART) Squad/Parts/Resources/SmallTank/SmallTank/SmallTank
[LOG 23:14:42.165] Config(PART) Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner
[LOG 23:14:42.166] Config(PART) Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner
[LOG 23:14:42.167] Config(PART) Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere
[LOG 23:14:42.168] Config(PART) Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment
[LOG 23:14:42.169] Config(PART) Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab
[LOG 23:14:42.170] Config(PART) Squad/Parts/Science/MaterialBay/materialBay/science_module
[LOG 23:14:42.172] Config(PART) Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox
[LOG 23:14:42.173] Config(PART) Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer
[LOG 23:14:42.174] Config(PART) Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer
[LOG 23:14:42.175] Config(PART) Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter
[LOG 23:14:42.176] Config(PART) Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer
[LOG 23:14:42.177] Config(PART) Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi
[LOG 23:14:42.179] Config(PART) Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad
[LOG 23:14:42.180] Config(PART) Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri
[LOG 23:14:42.181] Config(PART) Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort
[LOG 23:14:42.182] Config(PART) Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall
[LOG 23:14:42.184] Config(PART) Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody
[LOG 23:14:42.185] Config(PART) Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody
[LOG 23:14:42.186] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage
[LOG 23:14:42.187] Config(PART) Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage
[LOG 23:14:42.188] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural
[LOG 23:14:42.189] Config(PART) Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler
[LOG 23:14:42.190] Config(PART) Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter
[LOG 23:14:42.192] Config(PART) Squad/Parts/Structural/stationHub/stationHub/stationHub
[LOG 23:14:42.193] Config(PART) Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2
[LOG 23:14:42.194] Config(PART) Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3
[LOG 23:14:42.195] Config(PART) Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1
[LOG 23:14:42.196] Config(PART) Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode
[LOG 23:14:42.197] Config(PART) Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1
[LOG 23:14:42.199] Config(PART) Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2
[LOG 23:14:42.200] Config(PART) Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint
[LOG 23:14:42.201] Config(PART) Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon
[LOG 23:14:42.202] Config(PART) Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube
[LOG 23:14:42.203] Config(PART) Squad/Parts/Structural/strutOcto/strutOcto/strutOcto
[LOG 23:14:42.204] Config(PART) Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter
[LOG 23:14:42.206] Config(PART) Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x
[LOG 23:14:42.207] Config(PART) Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x
[LOG 23:14:42.208] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge
[LOG 23:14:42.209] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed
[LOG 23:14:42.210] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall
[LOG 23:14:42.211] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge
[LOG 23:14:42.212] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg
[LOG 23:14:42.214] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm
[LOG 23:14:42.215] Config(PART) Squad/Parts/Utility/commDish88-88/commDish88-88/commDish
[LOG 23:14:42.216] Config(PART) Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna
[LOG 23:14:42.217] Config(PART) Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna
[LOG 23:14:42.218] Config(PART) Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2
[LOG 23:14:42.219] Config(PART) Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler
[LOG 23:14:42.221] Config(PART) Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2
[LOG 23:14:42.222] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator
[LOG 23:14:42.223] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini
[LOG 23:14:42.224] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig
[LOG 23:14:42.226] Config(PART) Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2
[LOG 23:14:42.227] Config(PART) Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler
[LOG 23:14:42.228] Config(PART) Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini
[LOG 23:14:42.229] Config(PART) Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna
[LOG 23:14:42.230] Config(PART) Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5
[LOG 23:14:42.231] Config(PART) Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2
[LOG 23:14:42.232] Config(PART) Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral
[LOG 23:14:42.234] Config(PART) Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3
[LOG 23:14:42.235] Config(PART) Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1
[LOG 23:14:42.236] Config(PART) Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge
[LOG 23:14:42.237] Config(PART) Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice
[LOG 23:14:42.238] Config(PART) Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1
[LOG 23:14:42.239] Config(PART) Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder
[LOG 23:14:42.240] Config(PART) Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay
[LOG 23:14:42.242] Config(PART) Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1
[LOG 23:14:42.243] Config(PART) Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2
[LOG 23:14:42.244] Config(PART) Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg
[LOG 23:14:42.245] Config(PART) Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter
[LOG 23:14:42.246] Config(PART) Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2
[LOG 23:14:42.247] Config(PART) Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1
[LOG 23:14:42.248] Config(PART) Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem
[LOG 23:14:42.250] Config(PART) Squad/Parts/Utility/linearRCS/linearRCS/linearRcs
[LOG 23:14:42.251] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL
[LOG 23:14:42.252] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS
[LOG 23:14:42.253] Config(PART) Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin
[LOG 23:14:42.254] Config(PART) Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort
[LOG 23:14:42.255] Config(PART) Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL
[LOG 23:14:42.256] Config(PART) Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM
[LOG 23:14:42.257] Config(PART) Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp
[LOG 23:14:42.258] Config(PART) Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS
[LOG 23:14:42.259] Config(PART) Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle
[LOG 23:14:42.260] Config(PART) Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue
[LOG 23:14:42.261] Config(PART) Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge
[LOG 23:14:42.263] Config(PART) Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial
[LOG 23:14:42.264] Config(PART) Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue
[LOG 23:14:42.265] Config(PART) Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1
[LOG 23:14:42.266] Config(PART) Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock
[LOG 23:14:42.267] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100
[LOG 23:14:42.268] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5
[LOG 23:14:42.269] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50
[LOG 23:14:42.270] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125
[LOG 23:14:42.271] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250
[LOG 23:14:42.272] Config(PART) Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1
[LOG 23:14:42.273] Config(PART) Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2
[LOG 23:14:42.275] Config(PART) Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler
[LOG 23:14:42.276] Config(PART) Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler
[LOG 23:14:42.277] Config(PART) Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler
[LOG 23:14:42.278] Config(PART) Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge
[LOG 23:14:42.279] Config(PART) Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed
[LOG 23:14:42.280] Config(PART) Squad/Parts/Wheel/LandingGear/GearFree/GearFree
[LOG 23:14:42.281] Config(PART) Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium
[LOG 23:14:42.282] Config(PART) Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall
[LOG 23:14:42.283] Config(PART) Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay
[LOG 23:14:42.284] Config(PART) Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1
[LOG 23:14:42.285] Config(PART) Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2
[LOG 23:14:42.286] Config(PART) Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed
[LOG 23:14:42.288] Config(PART) Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3
[LOG 23:14:42.289] Config(PROP) Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands
[LOG 23:14:42.290] Config(PROP) Squad/Props/AtmosphereDepth/prop/AtmosphereDepth
[LOG 23:14:42.291] Config(PROP) Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch
[LOG 23:14:42.292] Config(PROP) Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll
[LOG 23:14:42.293] Config(PROP) Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw
[LOG 23:14:42.294] Config(PROP) Squad/Props/buttonsGeneric/circularButton/genericCircularButton
[LOG 23:14:42.295] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons
[LOG 23:14:42.296] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2
[LOG 23:14:42.297] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs
[LOG 23:14:42.298] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2
[LOG 23:14:42.299] Config(PROP) Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed
[LOG 23:14:42.300] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01
[LOG 23:14:42.302] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02
[LOG 23:14:42.303] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03
[LOG 23:14:42.304] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04
[LOG 23:14:42.305] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05
[LOG 23:14:42.306] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06
[LOG 23:14:42.307] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07
[LOG 23:14:42.309] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob
[LOG 23:14:42.310] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2
[LOG 23:14:42.311] Config(PROP) Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch
[LOG 23:14:42.312] Config(PROP) Squad/Props/buttonsGeneric/squareButton/genericSquareButton
[LOG 23:14:42.313] Config(PROP) Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch
[LOG 23:14:42.314] Config(PROP) Squad/Props/buttonsGeneric/switch/genericSwitch
[LOG 23:14:42.315] Config(PROP) Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards
[LOG 23:14:42.316] Config(PROP) Squad/Props/ButtonSquare/prop/ButtonSquare
[LOG 23:14:42.317] Config(PROP) Squad/Props/circularButton/prop/circularButton
[LOG 23:14:42.318] Config(PROP) Squad/Props/Compass/prop/Compass
[LOG 23:14:42.319] Config(PROP) Squad/Props/directionalKnob/prop/directionalKnob
[LOG 23:14:42.320] Config(PROP) Squad/Props/directionalKnob2/prop/directionalKnob2
[LOG 23:14:42.321] Config(PROP) Squad/Props/IndicatorPanel/prop/IndicatorPanel
[LOG 23:14:42.322] Config(PROP) Squad/Props/IVANavBall/prop/NavBall
[LOG 23:14:42.323] Config(PROP) Squad/Props/ledPanelSpeed/prop/ledPanelSpeed
[LOG 23:14:42.324] Config(PROP) Squad/Props/Monitor/DockingMode/MonitorDockingMode
[LOG 23:14:42.325] Config(PROP) Squad/Props/NavBall/prop/NavBall
[LOG 23:14:42.326] Config(PROP) Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode
[LOG 23:14:42.327] Config(PROP) Squad/Props/PropsGeneric/CargoBagA/CargoBagA
[LOG 23:14:42.328] Config(PROP) Squad/Props/PropsGeneric/CargoBagB/CargoBagB
[LOG 23:14:42.329] Config(PROP) Squad/Props/PropsGeneric/CargoBagC/CargoBagC
[LOG 23:14:42.330] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane
[LOG 23:14:42.331] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90
[LOG 23:14:42.332] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame
[LOG 23:14:42.334] Config(PROP) Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger
[LOG 23:14:42.335] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot
[LOG 23:14:42.336] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet
[LOG 23:14:42.337] Config(PROP) Squad/Props/PropsGeneric/SideStick/SideStick
[LOG 23:14:42.338] Config(PROP) Squad/Props/pullSwitch/prop/pullSwitch
[LOG 23:14:42.339] Config(PROP) Squad/Props/radarAltitude/prop/RadarAltimeter
[LOG 23:14:42.340] Config(PROP) Squad/Props/squareButton/prop/squareButton
[LOG 23:14:42.341] Config(PROP) Squad/Props/standingSwitch/prop/standingSwitch
[LOG 23:14:42.342] Config(PROP) Squad/Props/switch/prop/switch
[LOG 23:14:42.343] Config(PROP) Squad/Props/switchGuard/prop/switchGuard
[LOG 23:14:42.344] Config(PROP) Squad/Props/switchWithGuards/prop/switchWithGuards
[LOG 23:14:42.345] Config(PROP) Squad/Props/throttle/prop/throttle
[LOG 23:14:42.346] Config(PROP) Squad/Props/VSI/prop/VSI
[LOG 23:14:42.346] Config(GLOBAL_RESOURCE) Squad/Resources/Ore/GLOBAL_RESOURCE
[LOG 23:14:42.347] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 23:14:42.349] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 23:14:42.350] Config(RESOURCE_OVERLAY_CONFIGURATION_SOLID) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_SOLID
[LOG 23:14:42.351] Config(RESOURCE_OVERLAY_CONFIGURATION_LINES) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_LINES
[LOG 23:14:42.352] Config(RESOURCE_OVERLAY_CONFIGURATION_DOTS) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_DOTS
[LOG 23:14:42.353] Config(RESOURCE_CONFIGURATION) Squad/Resources/ResourceDefaults/RESOURCE_CONFIGURATION
[LOG 23:14:42.355] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/LiquidFuel
[LOG 23:14:42.356] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Oxidizer
[LOG 23:14:42.357] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/SolidFuel
[LOG 23:14:42.358] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/MonoPropellant
[LOG 23:14:42.359] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/XenonGas
[LOG 23:14:42.360] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/ElectricCharge
[LOG 23:14:42.361] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/IntakeAir
[LOG 23:14:42.362] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/EVA Propellant
[LOG 23:14:42.363] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ore
[LOG 23:14:42.364] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ablator
[LOG 23:14:42.365] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.366] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.368] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.369] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.370] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.371] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.372] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.373] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.374] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.376] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.377] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:14:42.378] Config(STORY_DEF) Squad/Resources/StoryDefs/STORY_DEF
[LOG 23:14:42.379] Config(TechTree) Squad/Resources/TechTree/TechTree
[LOG 23:14:42.380] Config(INTERNAL) Squad/Spaces/crewCabinInternals/internal/crewCabinInternals
[LOG 23:14:42.381] Config(INTERNAL) Squad/Spaces/cupolaInternal/internal/cupolaInternal
[LOG 23:14:42.382] Config(INTERNAL) Squad/Spaces/GenericSpace1/internal/GenericSpace1
[LOG 23:14:42.383] Config(INTERNAL) Squad/Spaces/GenericSpace3/internal/GenericSpace3
[LOG 23:14:42.384] Config(INTERNAL) Squad/Spaces/landerCabinInternals/internal/landerCabinInternals
[LOG 23:14:42.385] Config(INTERNAL) Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal
[LOG 23:14:42.386] Config(INTERNAL) Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int
[LOG 23:14:42.388] Config(INTERNAL) Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal
[LOG 23:14:42.389] Config(INTERNAL) Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal
[LOG 23:14:42.390] Config(INTERNAL) Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal
[LOG 23:14:42.391] Config(INTERNAL) Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit
[LOG 23:14:42.392] Config(INTERNAL) Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals
[LOG 23:14:42.393] Config(INTERNAL) Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int
[LOG 23:14:42.394] Config(INTERNAL) Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal
[LOG 23:14:42.395] Config(INTERNAL) Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int
[LOG 23:14:42.397] Config(INTERNAL) Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int
[LOG 23:14:42.398] Config(INTERNAL) Squad/Spaces/Placeholder/internal/Placeholder
[LOG 23:14:42.399] Config(INTERNAL) Squad/Spaces/PodCockpit/internal/PodCockpit
[LOG 23:14:42.400] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Finances
[LOG 23:14:42.401] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Science
[LOG 23:14:42.402] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Public Relations
[LOG 23:14:42.403] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Operations
[LOG 23:14:42.404] Config(STRATEGY) Squad/Strategies/Strategies/AppreciationCampaignCfg
[LOG 23:14:42.405] Config(STRATEGY) Squad/Strategies/Strategies/FundraisingCampaignCfg
[LOG 23:14:42.406] Config(STRATEGY) Squad/Strategies/Strategies/OpenSourceTechProgramCfg
[LOG 23:14:42.407] Config(STRATEGY) Squad/Strategies/Strategies/UnpaidResearchProgramCfg
[LOG 23:14:42.408] Config(STRATEGY) Squad/Strategies/Strategies/OutsourcedResearchCfg
[LOG 23:14:42.409] Config(STRATEGY) Squad/Strategies/Strategies/PatentsLicensingCfg
[LOG 23:14:42.410] Config(STRATEGY) Squad/Strategies/Strategies/AgressiveNegotiations
[LOG 23:14:42.411] Config(STRATEGY) Squad/Strategies/Strategies/RecoveryTransponders
[LOG 23:14:42.412] Config(STRATEGY) Squad/Strategies/Strategies/BailoutGrant
[LOG 23:14:42.413] Config(STRATEGY) Squad/Strategies/Strategies/researchIPsellout
[LOG 23:14:42.414] Config(STRATEGY) Squad/Strategies/Strategies/LeadershipInitiative
[LOG 23:14:42.415] Config(TUTORIAL) Squad/Tutorials/FlightSuborbital/FlightSuborbital
[LOG 23:14:42.417] Config(TUTORIAL) Squad/Tutorials/FromMun/FromMun
[LOG 23:14:42.418] Config(TUTORIAL) Squad/Tutorials/GoForOrbit/GoForOrbit
[LOG 23:14:42.421] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.422] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.423] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.424] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.425] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.425] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.426] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.427] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.428] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.429] Resource RESOURCE_DEFINITION added to database
[LOG 23:14:42.431] CodeAssetLoader: Compiling all code assets
[LOG 23:14:42.440] GameDatabase: Assets loaded in 34.700s
[LOG 23:14:42.460] PartLoader: Loading part database
[LOG 23:14:42.463] PartLoader: Compiling Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone'
[LOG 23:14:42.490] EffectList: Created 14 effect types
[LOG 23:14:42.512] PartLoader: Compiling Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1'
[LOG 23:14:42.532] PartLoader: Compiling Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop'
[LOG 23:14:42.543] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf'
[LOG 23:14:42.552] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing'
[LOG 23:14:42.559] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin'
[LOG 23:14:42.567] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard'
[LOG 23:14:42.573] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController'
[LOG 23:14:42.578] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing'
[LOG 23:14:42.583] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin'
[LOG 23:14:42.588] PartLoader: Compiling Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin'
[LOG 23:14:42.593] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake'
[LOG 23:14:42.601] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake'
[LOG 23:14:42.606] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone'
[LOG 23:14:42.622] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA'
[LOG 23:14:42.639] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB'
[LOG 23:14:42.643] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter'
[LOG 23:14:42.648] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone'
[LOG 23:14:42.652] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail'
[LOG 23:14:42.657] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB'
[LOG 23:14:42.661] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1'
[LOG 23:14:42.713] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2'
[LOG 23:14:42.730] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3'
[LOG 23:14:42.748] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0'
[LOG 23:14:42.766] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1'
[LOG 23:14:42.778] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2'
[LOG 23:14:42.789] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3'
[LOG 23:14:42.799] PartLoader: Compiling Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield'
[LOG 23:14:42.811] PartLoader: Compiling Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong'
[LOG 23:14:42.816] PartLoader: Compiling Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake'
[LOG 23:14:42.820] PartLoader: Compiling Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone'
[LOG 23:14:42.823] PartLoader: Compiling Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake'
[LOG 23:14:42.828] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta'
[LOG 23:14:42.833] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1'
[LOG 23:14:42.839] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2'
[LOG 23:14:42.844] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder'
[LOG 23:14:42.850] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake'
[LOG 23:14:42.855] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet'
[LOG 23:14:42.860] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet'
[LOG 23:14:42.865] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3'
[LOG 23:14:42.871] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector1/wingConnector'
[LOG 23:14:42.875] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector2/wingConnector2'
[LOG 23:14:42.880] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector3/wingConnector3'
[LOG 23:14:42.884] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector4/wingConnector4'
[LOG 23:14:42.889] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector5/wingConnector5'
[LOG 23:14:42.893] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta/deltaWing'
[LOG 23:14:42.898] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta_small/delta_small'
[LOG 23:14:42.903] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf'
[LOG 23:14:42.908] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon2/elevon2'
[LOG 23:14:42.913] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon3/elevon3'
[LOG 23:14:42.919] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf'
[LOG 23:14:42.924] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon5/elevon5'
[LOG 23:14:42.930] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/strake/wingStrake'
[LOG 23:14:42.934] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural1/structuralWing'
[LOG 23:14:42.939] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural2/structuralWing2'
[LOG 23:14:42.944] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural3/structuralWing3'
[LOG 23:14:42.949] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural4/structuralWing4'
[LOG 23:14:42.953] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept1/sweptWing1'
[LOG 23:14:42.958] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept2/sweptWing2'
[LOG 23:14:42.963] PartLoader: Compiling Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2'
[LOG 23:14:42.970] PartLoader: Compiling Part 'Squad/Parts/Command/cupola/cupola/cupola'
[LOG 23:14:43.016] PartLoader: Compiling Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd'
[LOG 23:14:43.023] PartLoader: Compiling Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin'
[LOG 23:14:43.033] PartLoader: Compiling Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule'
[LOG 23:14:43.038] PartLoader: Compiling Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule'
[LOG 23:14:43.043] PartLoader: Compiling Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod'
[LOG 23:14:43.061] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit'
[LOG 23:14:43.074] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin'
[LOG 23:14:43.084] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit'
[LOG 23:14:43.140] PartLoader: Compiling Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall'
[LOG 23:14:43.152] PartLoader: Compiling Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod'
[LOG 23:14:43.166] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline'
[LOG 23:14:43.180] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard'
[LOG 23:14:43.193] PartLoader: Compiling Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore'
[LOG 23:14:43.202] PartLoader: Compiling Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin'
[LOG 23:14:43.215] PartLoader: Compiling Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle'
[LOG 23:14:43.227] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube'
[LOG 23:14:43.235] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex'
[LOG 23:14:43.244] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto'
[LOG 23:14:43.253] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2'
[LOG 23:14:43.261] PartLoader: Compiling Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody'
[LOG 23:14:43.268] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge'
[LOG 23:14:43.279] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall'
[LOG 23:14:43.289] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere'
[LOG 23:14:43.296] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine'
[LOG 23:14:43.329] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector'
[LOG 23:14:43.336] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2'
[LOG 23:14:43.348] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4'
[LOG 23:14:43.354] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1'
[LOG 23:14:43.361] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3'
[LOG 23:14:43.367] PartLoader: Compiling Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel'
[LOG 23:14:43.373] PartLoader: Compiling Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5'
[LOG 23:14:43.379] PartLoader: Compiling Part 'Squad/Parts/Electrical/RTG/RTG/rtg'
[LOG 23:14:43.392] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack'
[LOG 23:14:43.396] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank'
[LOG 23:14:43.400] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini'
[LOG 23:14:43.404] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack'
[LOG 23:14:43.408] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge'
[LOG 23:14:43.412] PartLoader: Compiling Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine'
[LOG 23:14:43.438] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet'
[LOG 23:14:43.479] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine'
[LOG 23:14:43.494] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2'
[LOG 23:14:43.514] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine'
[LOG 23:14:43.532] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine'
[LOG 23:14:43.543] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini'
[LOG 23:14:43.556] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike'
[LOG 23:14:43.584] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine'
[LOG 23:14:43.594] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini'
[LOG 23:14:43.605] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3'
[LOG 23:14:43.637] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine'
[LOG 23:14:43.650] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine'
[LOG 23:14:43.662] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2'
[LOG 23:14:43.676] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2'
[LOG 23:14:43.691] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2'
[LOG 23:14:43.704] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2'
[LOG 23:14:43.718] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper'
[LOG 23:14:43.732] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME'
[LOG 23:14:43.749] PartLoader: Compiling Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster'
[LOG 23:14:43.762] PartLoader: Compiling Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine'
[LOG 23:14:43.775] PartLoader: Compiling Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine'
[LOG 23:14:43.785] PartLoader: Compiling Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER'
[LOG 23:14:43.806] PartLoader: Compiling Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB'
[LOG 23:14:43.821] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine'
[LOG 23:14:43.837] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster'
[LOG 23:14:43.853] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1'
[LOG 23:14:43.864] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster'
[LOG 23:14:43.875] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm'
[LOG 23:14:43.884] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1'
[LOG 23:14:43.893] PartLoader: Compiling Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine'
[LOG 23:14:43.904] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2'
[LOG 23:14:43.908] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines'
[LOG 23:14:43.912] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2'
[LOG 23:14:43.916] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant'
[LOG 23:14:43.919] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2'
[LOG 23:14:43.943] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1'
[LOG 23:14:43.972] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant'
[LOG 23:14:43.976] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3'
[LOG 23:14:43.980] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2'
[LOG 23:14:43.984] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank'
[LOG 23:14:43.988] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat'
[LOG 23:14:43.992] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall'
[LOG 23:14:43.996] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank'
[LOG 23:14:44.000] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long'
[LOG 23:14:44.003] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank'
[LOG 23:14:44.007] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2'
[LOG 23:14:44.011] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2'
[LOG 23:14:44.015] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2'
[LOG 23:14:44.019] PartLoader: Compiling Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage'
[LOG 23:14:44.023] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler'
[LOG 23:14:44.028] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong'
[LOG 23:14:44.033] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter'
[LOG 23:14:44.038] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO'
[LOG 23:14:44.043] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage'
[LOG 23:14:44.049] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO'
[LOG 23:14:44.056] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid'
[LOG 23:14:44.061] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono'
[LOG 23:14:44.066] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin'
[LOG 23:14:44.075] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100'
[LOG 23:14:44.079] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25'
[LOG 23:14:44.083] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50'
[LOG 23:14:44.086] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100'
[LOG 23:14:44.090] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25'
[LOG 23:14:44.094] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50'
[LOG 23:14:44.098] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO'
[LOG 23:14:44.101] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2'
[LOG 23:14:44.105] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini'
[LOG 23:14:44.109] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank'
[LOG 23:14:44.113] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank'
[LOG 23:14:44.117] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong'
[LOG 23:14:44.121] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank'
[LOG 23:14:44.125] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank'
[LOG 23:14:44.128] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank'
[LOG 23:14:44.132] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank'
[LOG 23:14:44.136] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge'
[LOG 23:14:44.140] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial'
[LOG 23:14:44.143] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore'
[LOG 23:14:44.153] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna'
[LOG 23:14:44.163] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel'
[LOG 23:14:44.169] PartLoader: Compiling Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid'
[LOG 23:14:44.183] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/flag/flag'
[LOG 23:14:44.188] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA'
[LOG 23:14:44.199] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale'
[LOG 23:14:44.204] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell'
[LOG 23:14:44.215] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray'
[LOG 23:14:44.221] PartLoader: Compiling Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU'
[LOG 23:14:44.245] PartLoader: Compiling Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank'
[LOG 23:14:44.251] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill'
[LOG 23:14:44.275] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU'
[LOG 23:14:44.288] PartLoader: Compiling Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner'
[LOG 23:14:44.304] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill'
[LOG 23:14:44.318] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank'
[LOG 23:14:44.323] PartLoader: Compiling Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank'
[LOG 23:14:44.328] PartLoader: Compiling Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner'
[LOG 23:14:44.343] PartLoader: Compiling Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner'
[LOG 23:14:44.380] PartLoader: Compiling Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere'
[LOG 23:14:44.386] PartLoader: Compiling Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment'
[LOG 23:14:44.393] PartLoader: Compiling Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab'
[LOG 23:14:44.418] PartLoader: Compiling Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module'
[LOG 23:14:44.426] PartLoader: Compiling Part 'Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox'
[LOG 23:14:44.431] PartLoader: Compiling Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer'
[LOG 23:14:44.440] PartLoader: Compiling Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer'
[LOG 23:14:44.446] PartLoader: Compiling Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter'
[LOG 23:14:44.453] PartLoader: Compiling Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer'
[LOG 23:14:44.460] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi'
[LOG 23:14:44.464] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad'
[LOG 23:14:44.468] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri'
[LOG 23:14:44.472] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort'
[LOG 23:14:44.476] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall'
[LOG 23:14:44.480] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody'
[LOG 23:14:44.487] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody'
[LOG 23:14:44.493] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage'
[LOG 23:14:44.497] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage'
[LOG 23:14:44.503] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural'
[LOG 23:14:44.507] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler'
[LOG 23:14:44.516] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter'
[LOG 23:14:44.519] PartLoader: Compiling Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub'
[LOG 23:14:44.523] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2'
[LOG 23:14:44.526] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3'
[LOG 23:14:44.530] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1'
[LOG 23:14:44.534] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode'
[LOG 23:14:44.538] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1'
[LOG 23:14:44.542] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2'
[LOG 23:14:44.546] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint'
[LOG 23:14:44.553] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon'
[LOG 23:14:44.559] PartLoader: Compiling Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube'
[LOG 23:14:44.563] PartLoader: Compiling Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto'
[LOG 23:14:44.568] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter'
[LOG 23:14:44.572] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x'
[LOG 23:14:44.576] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x'
[LOG 23:14:44.580] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge'
[LOG 23:14:44.595] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed'
[LOG 23:14:44.603] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall'
[LOG 23:14:44.611] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge'
[LOG 23:14:44.617] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg'
[LOG 23:14:44.622] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm'
[LOG 23:14:44.628] PartLoader: Compiling Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish'
[LOG 23:14:44.638] PartLoader: Compiling Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna'
[LOG 23:14:44.646] PartLoader: Compiling Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna'
[LOG 23:14:44.653] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2'
[LOG 23:14:44.662] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler'
[LOG 23:14:44.669] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2'
[LOG 23:14:44.676] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator'
[LOG 23:14:44.682] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini'
[LOG 23:14:44.689] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig'
[LOG 23:14:44.695] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2'
[LOG 23:14:44.702] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler'
[LOG 23:14:44.708] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini'
[LOG 23:14:44.715] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna'
[LOG 23:14:44.720] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5'
[LOG 23:14:44.728] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2'
[LOG 23:14:44.764] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral'
[LOG 23:14:44.772] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3'
[LOG 23:14:44.778] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1'
[LOG 23:14:44.786] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge'
[LOG 23:14:44.792] PartLoader: Compiling Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice'
[LOG 23:14:44.808] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1'
[LOG 23:14:44.813] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder'
[LOG 23:14:44.824] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay'
[LOG 23:14:44.830] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1'
[LOG 23:14:44.861] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2'
[LOG 23:14:44.875] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg'
[LOG 23:14:44.890] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter'
[LOG 23:14:44.894] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2'
[LOG 23:14:44.898] PartLoader: Compiling Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1'
[LOG 23:14:44.908] PartLoader: Compiling Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem'
[LOG 23:14:44.918] PartLoader: Compiling Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs'
[LOG 23:14:44.925] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL'
[LOG 23:14:44.932] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS'
[LOG 23:14:44.939] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin'
[LOG 23:14:44.950] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort'
[LOG 23:14:44.958] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL'
[LOG 23:14:44.964] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM'
[LOG 23:14:44.971] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp'
[LOG 23:14:44.979] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS'
[LOG 23:14:44.986] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle'
[LOG 23:14:45.003] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue'
[LOG 23:14:45.011] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge'
[LOG 23:14:45.019] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial'
[LOG 23:14:45.027] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue'
[LOG 23:14:45.036] PartLoader: Compiling Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1'
[LOG 23:14:45.040] PartLoader: Compiling Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock'
[LOG 23:14:45.047] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100'
[LOG 23:14:45.052] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5'
[LOG 23:14:45.057] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50'
[LOG 23:14:45.062] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125'
[LOG 23:14:45.074] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250'
[LOG 23:14:45.083] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1'
[LOG 23:14:45.092] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2'
[LOG 23:14:45.097] PartLoader: Compiling Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler'
[LOG 23:14:45.101] PartLoader: Compiling Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler'
[LOG 23:14:45.105] PartLoader: Compiling Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler'
[LOG 23:14:45.136] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge'
[LOG 23:14:45.160] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed'
[LOG 23:14:45.169] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree'
[LOG 23:14:45.181] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium'
[LOG 23:14:45.199] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall'
[LOG 23:14:45.218] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay'
[LOG 23:14:45.236] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1'
[LOG 23:14:45.252] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2'
[LOG 23:14:45.264] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed'
[LOG 23:14:45.276] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3'
[LOG 23:14:45.291] PartLoader: Compiling Internal Prop 'Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands'
[LOG 23:14:45.295] PartLoader: Compiling Internal Prop 'Squad/Props/AtmosphereDepth/prop/AtmosphereDepth'
[LOG 23:14:45.298] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch'
[LOG 23:14:45.301] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll'
[LOG 23:14:45.304] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw'
[LOG 23:14:45.307] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/circularButton/genericCircularButton'
[LOG 23:14:45.309] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons'
[LOG 23:14:45.311] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2'
[LOG 23:14:45.313] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs'
[LOG 23:14:45.314] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2'
[LOG 23:14:45.316] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed'
[LOG 23:14:45.318] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01'
[LOG 23:14:45.320] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02'
[LOG 23:14:45.321] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03'
[LOG 23:14:45.323] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04'
[LOG 23:14:45.325] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05'
[LOG 23:14:45.327] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06'
[LOG 23:14:45.329] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07'
[LOG 23:14:45.330] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob'
[LOG 23:14:45.332] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2'
[LOG 23:14:45.334] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch'
[LOG 23:14:45.336] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/squareButton/genericSquareButton'
[LOG 23:14:45.337] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch'
[LOG 23:14:45.339] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switch/genericSwitch'
[LOG 23:14:45.341] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards'
[LOG 23:14:45.342] PartLoader: Compiling Internal Prop 'Squad/Props/ButtonSquare/prop/ButtonSquare'
[LOG 23:14:45.346] PartLoader: Compiling Internal Prop 'Squad/Props/circularButton/prop/circularButton'
[LOG 23:14:45.348] PartLoader: Compiling Internal Prop 'Squad/Props/Compass/prop/Compass'
[LOG 23:14:45.351] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob/prop/directionalKnob'
[LOG 23:14:45.353] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob2/prop/directionalKnob2'
[LOG 23:14:45.354] PartLoader: Compiling Internal Prop 'Squad/Props/IndicatorPanel/prop/IndicatorPanel'
[LOG 23:14:45.358] PartLoader: Compiling Internal Prop 'Squad/Props/IVANavBall/prop/NavBall'
[LOG 23:14:45.362] PartLoader: Compiling Internal Prop 'Squad/Props/ledPanelSpeed/prop/ledPanelSpeed'
[LOG 23:14:45.365] PartLoader: Compiling Internal Prop 'Squad/Props/Monitor/DockingMode/MonitorDockingMode'
[LOG 23:14:45.367] PartLoader: Compiling Internal Prop 'Squad/Props/NavBall/prop/NavBall'
[LOG 23:14:45.369] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode'
[LOG 23:14:45.371] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagA/CargoBagA'
[LOG 23:14:45.373] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagB/CargoBagB'
[LOG 23:14:45.374] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagC/CargoBagC'
[LOG 23:14:45.376] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane'
[LOG 23:14:45.377] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90'
[LOG 23:14:45.379] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame'
[LOG 23:14:45.381] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger'
[LOG 23:14:45.383] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot'
[LOG 23:14:45.384] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet'
[LOG 23:14:45.386] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/SideStick/SideStick'
[LOG 23:14:45.388] PartLoader: Compiling Internal Prop 'Squad/Props/pullSwitch/prop/pullSwitch'
[LOG 23:14:45.389] PartLoader: Compiling Internal Prop 'Squad/Props/radarAltitude/prop/RadarAltimeter'
[LOG 23:14:45.392] PartLoader: Compiling Internal Prop 'Squad/Props/squareButton/prop/squareButton'
[LOG 23:14:45.394] PartLoader: Compiling Internal Prop 'Squad/Props/standingSwitch/prop/standingSwitch'
[LOG 23:14:45.396] PartLoader: Compiling Internal Prop 'Squad/Props/switch/prop/switch'
[LOG 23:14:45.398] PartLoader: Compiling Internal Prop 'Squad/Props/switchGuard/prop/switchGuard'
[LOG 23:14:45.400] PartLoader: Compiling Internal Prop 'Squad/Props/switchWithGuards/prop/switchWithGuards'
[LOG 23:14:45.401] PartLoader: Compiling Internal Prop 'Squad/Props/throttle/prop/throttle'
[LOG 23:14:45.404] PartLoader: Compiling Internal Prop 'Squad/Props/VSI/prop/VSI'
[LOG 23:14:45.408] PartLoader: Compiling Internal Space 'Squad/Spaces/crewCabinInternals/internal/crewCabinInternals'
[LOG 23:14:45.417] PartLoader: Compiling Internal Space 'Squad/Spaces/cupolaInternal/internal/cupolaInternal'
[LOG 23:14:45.427] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace1/internal/GenericSpace1'
[LOG 23:14:45.430] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace3/internal/GenericSpace3'
[LOG 23:14:45.433] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinInternals/internal/landerCabinInternals'
[LOG 23:14:45.437] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal'
[LOG 23:14:45.441] PartLoader: Compiling Internal Space 'Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int'
[LOG 23:14:45.445] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal'
[LOG 23:14:45.452] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal'
[LOG 23:14:45.461] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal'
[LOG 23:14:45.467] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit'
[LOG 23:14:45.471] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals'
[LOG 23:14:45.480] PartLoader: Compiling Internal Space 'Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int'
[LOG 23:14:45.485] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal'
[LOG 23:14:45.496] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int'
[LOG 23:14:45.509] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int'
[LOG 23:14:45.540] InternalSeat: Cannot find portraitCamera of name 'Camera_Left003'
[LOG 23:14:45.546] PartLoader: Compiling Internal Space 'Squad/Spaces/Placeholder/internal/Placeholder'
[LOG 23:14:45.555] PartLoader: Compiling Internal Space 'Squad/Spaces/PodCockpit/internal/PodCockpit'
[LOG 23:14:45.573] Loading Systems: Elapsed time is 37.83299s
[WRN 23:14:48.080] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.080] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.081] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.081] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.082] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.082] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.083] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.084] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:14:48.084] The referenced script on this Behaviour (Game Object '<null>') is missing!
[LOG 23:14:51.000] [UIMasterController]: HideUI
[LOG 23:14:51.005] [Agent]: Found 19 agent mentality types
[LOG 23:14:51.008] [AgentList]: 27 agents parsed and loaded.
[LOG 23:14:51.399] [CelestialBody]: Kerbin's solar day length is 1d, 0h, 0m long. sidereal day length is 5h, 59m, 9s long
[LOG 23:14:51.703] [UIMasterController]: HideUI
[LOG 23:14:51.707] [HighLogic]: =========================== Scene Change : From LOADING to MAINMENU =====================
[LOG 23:14:52.094] [UIMasterController]: ShowUI
[LOG 23:14:52.420] [GameParameters]: Loaded custom parameter class CommNetParams.
[LOG 23:14:52.421] [GameParameters]: Loaded custom parameter class AdvancedParams.
[LOG 23:14:53.288] [ApplicationLauncher] Awake False
[LOG 23:14:53.290] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 23:14:53.303] [UiApp] Awake: MessageSystem
[LOG 23:14:53.305] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop True
[LOG 23:14:53.355] [UIApp] Adding MessageSystem to Application Launcher
[LOG 23:14:53.360] [ApplicationLauncher] SetHidden: 
[LOG 23:14:53.389] [MessageSystem] OnAppInitialized
[LOG 23:14:53.390] [MessageSystem] Reposition 0.09059744 47623
[LOG 23:15:00.184] [ExperienceSystem]: Found 0 trait types
[LOG 23:15:00.187] [ExperienceSystem]: Found 16 effect types
[LOG 23:15:00.188] Game State Created.
[LOG 23:15:00.194] [ScenarioTypes]: List Created 17 scenario types loaded from 5 loaded assemblies.
[LOG 23:15:00.202] Game State Saved to saves/default/persistent
[LOG 23:15:00.207] [UIMasterController]: HideUI
[LOG 23:15:00.209] [HighLogic]: =========================== Scene Change : From MAINMENU to SPACECENTER (Async) =====================
[LOG 23:15:00.325] [UIMasterController]: HideUI
[LOG 23:15:01.216] [AddonLoader]: Instantiating addon 'ContractDefs' from assembly 'KSP'
[LOG 23:15:05.736] [UIMasterController]: HideUI
[LOG 23:15:05.853] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 23:15:06.371] [UiApp] Awake: KSPedia
[LOG 23:15:06.372] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 23:15:06.373] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 23:15:06.376] [ApplicationLauncher] SetVisible: 
[LOG 23:15:06.427] [UIApp] OnDestroy: ContractsApp
[LOG 23:15:06.499] [MessageSystem] Reposition 0.02 47981
[LOG 23:15:06.792] [UIApp] Adding KSPedia to Application Launcher
[LOG 23:15:06.829] Flight State Captured
[LOG 23:15:06.837] Saving Achievements Tree...
[LOG 23:15:06.840] [MessageSystem] Save Messages
[LOG 23:15:06.843] Game State Saved to saves/default/persistent
[LOG 23:15:06.942] [UIMasterController]: ShowUI
[LOG 23:15:08.608] Flight State Captured
[LOG 23:15:08.609] Saving Achievements Tree...
[LOG 23:15:08.610] [MessageSystem] Save Messages
[LOG 23:15:08.613] Game State Saved to saves/default/persistent
[LOG 23:15:20.767] [ReflectionUtil]: Found 4 types with UpgradeModule attribute in 5 assemblies.
[LOG 23:15:20.780] [KSPUpgradePipeline]: Kerbal 1-5 (Stock) updated from 1.2.0 to 1.2.2.
[LOG 23:15:20.782] [UIMasterController] RemoveCanvas:VesselSpawnDialog
[LOG 23:15:20.791] [Pre-Flight Check]: Checking for CraftWithinPartCountLimit: PASS!
[LOG 23:15:20.792] [Pre-Flight Check]: Checking for CraftWithinSizeLimits: PASS!
[LOG 23:15:20.793] [Pre-Flight Check]: Checking for CraftWithinMassLimits: PASS!
[LOG 23:15:20.795] [Pre-Flight Check]: Checking for ExperimentalPartsAvailable: PASS!
[LOG 23:15:20.796] [Pre-Flight Check]: Checking for CanAffordLaunchTest: PASS!
[LOG 23:15:20.797] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 23:15:20.798] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 23:15:20.799] [Pre-Flight Check]: Checking for NoControlSources: PASS!
[LOG 23:15:20.805] [Pre-Flight Check]: Checking for WrongVesselTypeForLaunchSite: PASS!
[LOG 23:15:20.806] [Pre-Flight Check]: All Checks Complete. Go for Launch!
[LOG 23:15:20.807] Launching vessel from LaunchPad. Craft file: D:\SteamLibrary\steamapps\common\Kerbal Space Program\Ships\VAB\Kerbal 1-5.craft
[LOG 23:15:20.808] Flight State Captured
[LOG 23:15:20.809] Saving Achievements Tree...
[LOG 23:15:20.810] [MessageSystem] Save Messages
[LOG 23:15:20.813] Game State Saved to saves/default/persistent
[LOG 23:15:20.817] [UIMasterController]: HideUI
[LOG 23:15:20.826] [HighLogic]: =========================== Scene Change : From SPACECENTER to FLIGHT (Async) =====================
[LOG 23:15:21.274] [UIApp] OnDestroy: KSPedia
[LOG 23:15:21.293] [PlanetariumCamera]: Focus: Kerbin
[LOG 23:15:21.295] [UIMasterController]: HideUI
[LOG 23:15:22.102] UICanvasPrefabSpawner FlightUI spawning Flight
[LOG 23:15:22.124] UICanvasPrefabSpawner FlightUI spawning VesselLabels
[LOG 23:15:22.126] [UiApp] Awake: ResourceDisplay
[LOG 23:15:22.132] [AddonLoader]: Instantiating addon 'AeroGUI' from assembly 'KSP'
[LOG 23:15:22.136] [AddonLoader]: Instantiating addon 'KerbalSimPitCAGProvider' from assembly 'KerbalSimPit'
[LOG 23:15:22.138] [AddonLoader]: Instantiating addon 'KerbalSimPitActionProvider' from assembly 'KerbalSimPit'
[LOG 23:15:22.139] [AddonLoader]: Instantiating addon 'KerbalSimPitEchoProvider' from assembly 'KerbalSimPit'
[LOG 23:15:22.141] [AddonLoader]: Instantiating addon 'KerbalSimPitTelemetryProvider' from assembly 'KerbalSimPit'
[LOG 23:15:22.142] [PlanetariumCamera]: Focus: Kerbin
[LOG 23:15:22.143] [UIMasterController]: HideUI
[LOG 23:15:22.237] ------------------- initializing flight mode... ------------------
[LOG 23:15:22.242] [MessageSystem] Save Messages
[LOG 23:15:22.244] Loading Depletion Nodes
[LOG 23:15:22.245] DepNodeCount:  0
[LOG 23:15:22.246] Loading Biome Nodes
[LOG 23:15:22.247] BiomeNodeCount:  0
[LOG 23:15:22.248] Loading Planet Nodes
[LOG 23:15:22.248] PlanetNodeCount:  0
[LOG 23:15:22.252] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 23:15:22.254] Loading ship from file: D:\SteamLibrary\steamapps\common\Kerbal Space Program\Ships\VAB\Kerbal 1-5.craft
[LOG 23:15:22.315] Kerbal 1-5 loaded!
[LOG 23:15:26.103] putting ship to ground: 6.213489
[LOG 23:15:26.113] [Kerbal 1-5]: Ready to Launch - waiting to start physics...
[LOG 23:15:26.132] Crewmember Jebediah Kerman assigned to Mk1 Command Pod, seat # 0 (crew seat index: 0)
[LOG 23:15:26.134] [FLIGHT GLOBALS]: Switching To Vessel Kerbal 1-5 ---------------------- 
[LOG 23:15:26.136] setting new dominant body: Kerbin
FlightGlobals.mainBody: Kerbin
[LOG 23:15:26.138] Reference Frame: Rotating
[LOG 23:15:26.158] Vessel assembly complete!
[LOG 23:15:26.159] all systems started
[ERR 23:15:26.174] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[ERR 23:15:26.176] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[LOG 23:15:26.177] KerbalSimPit: ActionGroupsExtended installed: False
[LOG 23:15:26.200] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.236] [AsteroidSpawner]: New object found near Kerbin: Ast. HSJ-227!
[LOG 23:15:26.281] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.363] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.365] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.446] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.448] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.450] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.531] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.533] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.535] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.537] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.538] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.783] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.785] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.787] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.787] [UiApp] Awake: CurrencyWidgetsApp
[LOG 23:15:26.789] [UiApp] Awake: ResourceDisplay
[LOG 23:15:26.789] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.789] [UiApp] Awake: KSPedia
[LOG 23:15:26.790] [ApplicationLauncher] OnSceneLoadedGUIReady: scene FLIGHT ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 23:15:26.792] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 23:15:26.794] [KnowledgeBase] OnAppLauncherReady 48808
[LOG 23:15:26.795] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.815] [UIApp] OnDestroy: ContractsApp
[LOG 23:15:26.832] [MessageSystem] Reposition 0.02 48809
[LOG 23:15:26.856] [FlightIntegrator]: Reloaded drag cube for zeroed cube root part mk1pod on vessel Kerbal 1-5
[LOG 23:15:26.868] [FlightIntegrator]: Vessel Kerbal 1-5 has been unloaded 1.79769313486232E+308, applying analytic temperature 308.000848206409
[LOG 23:15:26.876] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.878] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.880] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.882] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.883] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.884] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.885] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.886] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.887] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.888] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.890] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.892] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.952] [PlanetariumCamera]: Focus: Kerbal 1-5
[LOG 23:15:26.974] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.976] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.978] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.978] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 23:15:26.979] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.980] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 23:15:26.981] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.983] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.985] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.986] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.987] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.989] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.991] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.991] [ResourceDisplay] OnAppStarted(): id: -186742
[LOG 23:15:26.993] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.995] [GenericAppFrame] Reposition 0.145569 48813
[LOG 23:15:26.995] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.996] [ResourceDisplay] OnAppStarted(): id: 112538
[LOG 23:15:26.998] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.998] ResourceDisplay already exist, destroying this instance
[LOG 23:15:27.000] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.001] [UIApp] OnDestroy: ResourceDisplay
[LOG 23:15:27.002] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.004] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.020] CURRENCY WIDGET False False False
[LOG 23:15:27.022] [UIApp] OnDestroy: CurrencyWidgetsApp
[LOG 23:15:27.029] [UIApp] Adding KSPedia to Application Launcher
[WRN 23:15:27.074] HighlightingSystem : Framebuffer depth data is not available and can't be used to occlude highlighting. Highlighting occluders enabled.
[LOG 23:15:27.086] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.088] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.090] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.091] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.093] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.095] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.097] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.099] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.101] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.103] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.104] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.105] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.107] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.109] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.111] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.113] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.115] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.117] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.119] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.121] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.123] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.124] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.126] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.128] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.130] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.132] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.177] [UIMasterController]: ShowUI
[LOG 23:15:27.182] Flight State Captured
[LOG 23:15:27.183] Saving Achievements Tree...
[LOG 23:15:27.184] [MessageSystem] Save Messages
[LOG 23:15:27.196] Game State Saved as persistent
[LOG 23:15:27.212] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.215] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.218] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.221] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.224] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.226] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.229] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.231] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.232] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.234] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.236] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.238] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.240] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.242] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.243] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.244] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.245] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.246] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.248] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.249] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.250] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.251] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.253] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.255] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.257] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.259] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.261] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.263] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.265] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.267] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.269] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.270] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.271] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.273] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.275] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.277] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.278] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.280] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.282] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.283] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.284] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.285] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.366] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.368] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.370] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.372] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.373] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.374] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.376] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.377] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.379] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.381] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.383] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.385] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.386] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.387] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.388] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.390] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.392] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.394] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.396] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.398] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.399] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.401] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.403] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.405] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.407] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.409] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.410] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.412] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.414] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.415] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.415] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.418] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.420] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.422] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.424] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.426] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.427] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.429] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.430] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.432] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.433] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.434] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.434] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.436] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.438] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.440] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.441] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.442] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.444] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.446] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.447] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.448] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.449] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.450] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.451] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.452] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.453] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.454] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.455] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.456] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.458] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.459] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.461] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.462] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.465] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.467] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.468] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.469] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.471] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.473] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.475] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.477] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.479] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.480] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.480] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.482] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.563] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.564] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.566] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.567] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.569] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.571] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.573] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.575] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.577] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.579] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.581] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.583] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.583] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.584] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.586] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.587] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.589] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.590] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.591] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.593] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.594] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.596] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.597] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.598] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.599] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.601] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.603] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.605] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.607] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.609] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.611] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.613] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.613] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.615] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.616] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.618] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.620] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.622] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.623] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.625] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.627] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.629] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.631] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.632] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.634] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.635] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.636] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.637] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.638] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.639] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.642] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.643] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.646] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.647] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.649] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.651] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.653] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.654] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.656] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.658] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.659] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.661] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.663] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.665] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.667] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.669] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.671] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.673] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.674] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.677] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.678] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.681] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.683] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.685] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.687] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.688] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.690] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.692] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.694] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.696] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.698] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.699] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.701] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.703] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.705] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.707] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.708] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.709] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.711] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.712] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.714] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.714] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.715] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.717] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.718] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.719] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.720] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.722] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.723] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.725] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.727] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.728] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.729] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.731] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.733] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.735] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.737] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.738] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.740] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.742] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.744] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.745] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.748] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.749] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.751] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.752] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.752] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.753] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.754] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.756] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.839] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.840] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.842] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.844] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.845] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.846] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.847] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.849] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.850] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.852] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.854] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.856] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.857] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.859] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.862] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.864] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.865] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.867] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.870] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.871] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.873] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.875] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.876] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.878] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.880] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.881] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.883] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.884] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.886] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.888] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.889] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.892] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.894] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.896] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.898] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.900] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.902] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.904] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.906] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.907] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.909] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.910] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.913] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.914] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.915] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.918] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.920] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.922] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.923] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.925] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.926] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.928] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.929] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.931] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.933] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.934] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.936] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.937] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.938] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.939] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.942] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.943] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.945] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.947] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.948] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.950] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.952] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.953] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.954] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.955] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.956] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.958] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.959] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.961] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.963] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.963] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.965] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.966] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.968] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.969] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.971] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.972] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.974] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.977] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.979] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.981] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.982] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.984] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.985] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.986] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.988] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.990] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.992] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.994] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.996] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.998] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:27.999] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.001] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.003] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.005] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.006] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.008] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.009] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.011] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.013] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.013] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.014] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.017] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.019] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.021] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.022] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.024] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.025] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.026] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.028] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.029] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.033] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.035] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.037] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.038] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.041] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.042] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.043] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.046] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.047] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.048] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.049] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.050] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.052] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.053] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.054] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.056] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.057] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.058] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.061] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.062] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.064] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.065] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.066] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.067] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.068] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.069] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.071] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.072] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.074] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.077] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.079] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.081] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.083] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.085] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.087] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.088] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.089] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.091] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.092] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.094] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.096] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.098] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.099] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.101] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.103] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.105] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.107] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.108] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.109] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.111] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.113] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.114] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.116] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.118] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.120] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.121] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.122] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.124] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.127] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.128] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.131] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.133] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.135] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.137] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.139] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.140] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.141] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.143] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.144] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.147] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.149] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.150] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.152] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.154] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.156] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.157] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.212] Unpacking Kerbal 1-5
[LOG 23:15:28.237] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.239] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.241] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.242] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.244] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.246] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.247] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.249] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.251] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.253] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.254] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.256] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.257] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.259] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.261] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.262] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.264] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.266] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.268] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.270] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.271] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.273] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.275] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.276] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.277] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.279] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.280] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.281] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.284] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.287] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.289] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.290] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.291] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.293] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.294] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.295] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.297] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.299] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.300] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.301] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.302] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.303] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.304] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.306] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.307] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.309] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.311] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.312] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.313] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.315] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.317] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.318] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.319] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.320] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.321] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.323] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.325] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.327] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.328] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.330] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.332] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.334] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.335] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.336] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.337] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.338] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.342] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.343] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.344] [Progress Node Reached]: RecordsAltitude
[LOG 23:15:28.344] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.346] [Progress Node Reached]: RecordsSpeed
[LOG 23:15:28.347] [Progress Node Reached]: RecordsDistance
[LOG 23:15:28.347] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.349] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:28.351] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:32.760] RCS lock/unlock
[LOG 23:15:41.013] [Progress Node Reached]: FirstLaunch
[LOG 23:15:41.014] [Progress Node Complete]: FirstLaunch
[LOG 23:15:41.863] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 23:15:56.866] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 23:16:11.867] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 23:16:26.899] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 23:16:30.721] KerbalSimPit: Succesfully removed AltitudeProvider
[LOG 23:16:30.726] [UIApp] OnDestroy: KSPedia
[LOG 23:16:30.736] KbApp.OnDestroy Planet Resources
[LOG 23:16:30.749] [UIApp] OnDestroy: MessageSystem
[LOG 23:16:31.282] KerbalSimPit: Shutting down.
[LOG 23:16:31.284] [UIApp] OnDestroy: ResourceDisplay
[LOG 23:16:31.285] KbApp.OnDestroy Vessel Info
[LOG 23:16:31.286] KerbalSimPit: Trying to read port COM4 that isn't open, sleeping

 

 

In the next post, following in a few minutes, I will try without the altimeter, staging only...

Link to comment
Share on other sites

Now I'm using this code:

#include "KerbalSimPit.h"

//Establishing a connection to the Plugin
KerbalSimPit SimPit(115200);

//Where are the buttons connected to?
const int button_stage = 2;

//Command states to know when to send something to KSP
bool cmd_stage;

//The last time something was sent to KSP
long lastSendTime = 0;


//Starting the Arduino
void setup()
{
//Setting up the buttons
  pinMode(button_stage, INPUT_PULLUP);

//Setting up the LED on the Arduino
  pinMode(LED_BUILTIN, OUTPUT);
  digitalWrite(LED_BUILTIN, HIGH);

//Stay in this loop as long as no connection established
  while(!SimPit.init())
  {
  }
//Once a connection is established, light up the LED on the Arduino
  digitalWrite(LED_BUILTIN, LOW);
}


//Looping
void loop()
{

//Checking if the BUTTON TO STAGE is pressed
  if (!digitalRead(button_stage))
  {
    cmd_stage = true;
  }

//Only send something if the last time we sended was more than 50 milliseconds ago
  if (lastSendTime+50 < millis())
  {
//Set the last time we sent something to now
    lastSendTime = millis();
    
//Send the COMMAND TO STAGE
    if (cmd_stage)
    {
      SimPit.stageEvent();
      cmd_stage = false;
    }
  }
}

Staging does not work, producing this log:

[LOG 23:35:51.904] ******* Log Initiated for Kerbal Space Program - 1.2.2.1622 (WindowsPlayer x64) *******
Kerbal Space Program - 1.2.2.1622 (WindowsPlayer x64)


OS: Windows 7 Service Pack 1 (6.1.7601) 64bit
CPU: AMD FX-8370 Eight-Core Processor  (8)
RAM: 16341
GPU: NVIDIA GeForce GTX 970 (4008MB)
SM: 30 (Direct3D 9.0c [nvd3dumx.dll 22.21.13.8165])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, Default, ARGB2101010, DefaultHDR, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8


Log started: Mon, Apr 10, 2017 23:35:51


[WRN 23:35:53.170] [SpaceNavigatorWindows]: Could not initialize device.

[LOG 23:35:53.182] MainCanvas MASK: 3458764513820540928
[LOG 23:35:53.864] Load(Assembly): KerbalSimPit/KerbalSimPit
[LOG 23:35:53.882] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\KerbalSimPit\KerbalSimPit.dll
[LOG 23:35:54.250] AssemblyLoader: KSPAssembly 'KerbalSimPit' V0.3
[LOG 23:35:54.260] Load(Assembly): KerbalSimPit/SerialPortLib2
[LOG 23:35:54.275] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\KerbalSimPit\SerialPortLib2.dll
[LOG 23:35:54.294] Load(Assembly): Squad/Plugins/KSPSteamCtrlr
[LOG 23:35:54.310] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\Plugins\KSPSteamCtrlr.dll
[LOG 23:35:54.332] Load(Assembly): Squad/Plugins/Steamworks.NET
[LOG 23:35:54.345] AssemblyLoader: Loading assembly at D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\Plugins\Steamworks.NET.dll
[LOG 23:35:54.369] AssemblyLoader: Loading assemblies
[LOG 23:35:54.477] VesselModules: Found VesselModule of type CommNetVessel with order 999
[LOG 23:35:54.491] VesselModules: Found VesselModule of type FlightIntegrator with order 0
[LOG 23:35:54.507] VesselModules: Found 2 VesselModule types
[LOG 23:35:54.527] 
************************************************************************

Environment Info
Win32NT 7FFFFFFFFFFFFFFF  Args: KSP_x64.exe 

Mod DLLs found:
Stock assembly: Assembly-CSharp v1.0.0.0
KerbalSimPit v0.3.0.0
SerialPortLib2 v1.0.2.0
Stock assembly: KSPSteamCtrlr v0.0.1.35
Stock assembly: Steamworks.NET v9.0.0.0 / v9.0.0

Folders and files in GameData:
KerbalSimPit
Stock folder: Squad


************************************************************************

[LOG 23:35:54.581] [AddonLoader]: Instantiating addon 'KerbalSimPit' from assembly 'KerbalSimPit'
[LOG 23:35:54.594] [AddonLoader]: Instantiating addon 'KSPSteamController' from assembly 'KSPSteamCtrlr'
[ERR 23:35:54.727] <color=orange><b>[KSPSteamController]:</b> Failed to initialize Steam API!</color>

[LOG 23:35:55.119] Load(Audio): Squad/Sounds/editorLoop01
[LOG 23:35:55.134] PhysicsGlobals: Loading database
[LOG 23:35:55.156] AppCanvas MASK: 3458764513820540928
[LOG 23:35:55.165] ActionCanvas MASK: 3458764513820540928
[LOG 23:35:55.182] KerbalSimPit: Settings loaded.
[LOG 23:35:55.192] KerbalSimPit: Found 1 serial ports
[LOG 23:35:55.218] KerbalSimPit: Opened COM4
[LOG 23:35:55.218] KerbalSimPit: Starting read thread for port COM4
[LOG 23:35:55.226] KerbalSimPit: Started.
[LOG 23:35:55.227] KerbalSimPit: Starting event dispatch loop
[LOG 23:35:55.241] KerbalSimPit: SYN received on port COM4. Replying.
[LOG 23:35:55.285] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 23:35:55.567] Load(Audio): Squad/Sounds/elev_loop
[LOG 23:35:55.589] Load(Audio): Squad/Sounds/elev_start
[LOG 23:35:55.616] Load(Audio): Squad/Sounds/elev_stop
[LOG 23:35:55.640] Load(Audio): Squad/Sounds/sound_ambience_nature
[LOG 23:35:55.662] Load(Audio): Squad/Sounds/sound_click_flick
[LOG 23:35:55.681] Load(Audio): Squad/Sounds/sound_click_latch
[LOG 23:35:55.699] Load(Audio): Squad/Sounds/sound_click_sharp
[LOG 23:35:55.717] Load(Audio): Squad/Sounds/sound_click_tick
[LOG 23:35:55.735] Load(Audio): Squad/Sounds/sound_click_tock
[LOG 23:35:55.753] Load(Audio): Squad/Sounds/sound_decoupler_fire
[LOG 23:35:55.771] Load(Audio): Squad/Sounds/sound_delete_bin
[LOG 23:35:55.789] Load(Audio): Squad/Sounds/sound_explosion_debris1
[LOG 23:35:55.810] Load(Audio): Squad/Sounds/sound_explosion_debris2
[LOG 23:35:55.831] Load(Audio): Squad/Sounds/sound_explosion_large
[LOG 23:35:55.851] Load(Audio): Squad/Sounds/sound_rocket_mini
[LOG 23:35:55.870] Load(Audio): Squad/Sounds/sound_rocket_spurts
[LOG 23:35:55.892] Load(Audio): Squad/Sounds/sound_servomotor
[LOG 23:35:55.911] Load(Audio): Squad/Sounds/sound_tab_extend
[LOG 23:35:55.930] Load(Audio): Squad/Sounds/sound_tab_retreat
[LOG 23:35:55.948] Load(Texture): Squad/Agencies/C7AerospaceDivision
[LOG 23:35:55.963] Load(Texture): Squad/Agencies/C7AerospaceDivision_scaled
[LOG 23:35:55.978] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium
[LOG 23:35:55.994] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium_scaled
[LOG 23:35:56.012] Load(Texture): Squad/Agencies/ExperimentalEngineering
[LOG 23:35:56.026] Load(Texture): Squad/Agencies/ExperimentalEngineering_scaled
[LOG 23:35:56.040] Load(Texture): Squad/Agencies/FlooydResearchLab
[LOG 23:35:56.057] Load(Texture): Squad/Agencies/FlooydResearchLab_scaled
[LOG 23:35:56.070] Load(Texture): Squad/Agencies/GoliathNationalProducts
[LOG 23:35:56.084] Load(Texture): Squad/Agencies/GoliathNationalProducts_scaled
[LOG 23:35:56.102] Load(Texture): Squad/Agencies/IntegratedIntegrals
[LOG 23:35:56.116] Load(Texture): Squad/Agencies/IntegratedIntegrals_scaled
[LOG 23:35:56.129] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics
[LOG 23:35:56.148] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics_scaled
[LOG 23:35:56.162] Load(Texture): Squad/Agencies/JebsJunkyard
[LOG 23:35:56.180] Load(Texture): Squad/Agencies/JebsJunkyard_scaled
[LOG 23:35:56.193] Load(Texture): Squad/Agencies/KerbalMotion
[LOG 23:35:56.206] Load(Texture): Squad/Agencies/KerbalMotion_scaled
[LOG 23:35:56.223] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety
[LOG 23:35:56.238] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety_scaled
[LOG 23:35:56.253] Load(Texture): Squad/Agencies/Kerbodyne
[LOG 23:35:56.269] Load(Texture): Squad/Agencies/Kerbodyne_scaled
[LOG 23:35:56.281] Load(Texture): Squad/Agencies/Kerlington
[LOG 23:35:56.295] Load(Texture): Squad/Agencies/Kerlington_scaled
[LOG 23:35:56.311] Load(Texture): Squad/Agencies/MaxoConstructionToys
[LOG 23:35:56.324] Load(Texture): Squad/Agencies/MaxoConstructionToys_scaled
[LOG 23:35:56.337] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup
[LOG 23:35:56.355] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup_scaled
[LOG 23:35:56.369] Load(Texture): Squad/Agencies/OMBDemolition
[LOG 23:35:56.381] Load(Texture): Squad/Agencies/OMBDemolition_scaled
[LOG 23:35:56.399] Load(Texture): Squad/Agencies/PeriapsisCo
[LOG 23:35:56.412] Load(Texture): Squad/Agencies/PeriapsisCo_scaled
[LOG 23:35:56.424] Load(Texture): Squad/Agencies/Probodobodyne
[LOG 23:35:56.438] Load(Texture): Squad/Agencies/Probodobodyne_scaled
[LOG 23:35:56.455] Load(Texture): Squad/Agencies/R&D
[LOG 23:35:56.468] Load(Texture): Squad/Agencies/R&D_scaled
[LOG 23:35:56.480] Load(Texture): Squad/Agencies/ReactionSystemsLtd
[LOG 23:35:56.494] Load(Texture): Squad/Agencies/ReactionSystemsLtd_scaled
[LOG 23:35:56.512] Load(Texture): Squad/Agencies/Rockomax
[LOG 23:35:56.524] Load(Texture): Squad/Agencies/Rockomax_scaled
[LOG 23:35:56.537] Load(Texture): Squad/Agencies/Rokea
[LOG 23:35:56.554] Load(Texture): Squad/Agencies/Rokea_scaled
[LOG 23:35:56.568] Load(Texture): Squad/Agencies/SeansCannery
[LOG 23:35:56.581] Load(Texture): Squad/Agencies/SeansCannery_scaled
[LOG 23:35:56.593] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps
[LOG 23:35:56.612] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps_scaled
[LOG 23:35:56.625] Load(Texture): Squad/Agencies/StrutCo
[LOG 23:35:56.639] Load(Texture): Squad/Agencies/StrutCo_scaled
[LOG 23:35:56.655] Load(Texture): Squad/Agencies/Vac-Co
[LOG 23:35:56.668] Load(Texture): Squad/Agencies/Vac-Co_scaled
[LOG 23:35:56.681] Load(Texture): Squad/Agencies/WinterOwl
[LOG 23:35:56.694] Load(Texture): Squad/Agencies/WinterOwl_scaled
[LOG 23:35:56.711] Load(Texture): Squad/Agencies/ZaltonicElectronics
[LOG 23:35:56.724] Load(Texture): Squad/Agencies/ZaltonicElectronics_scaled
[LOG 23:35:56.738] Load(Texture): Squad/Contracts/Icons/balloon
[LOG 23:35:56.754] Load(Texture): Squad/Contracts/Icons/custom
[LOG 23:35:56.768] Load(Texture): Squad/Contracts/Icons/default
[LOG 23:35:56.780] Load(Texture): Squad/Contracts/Icons/dish
[LOG 23:35:56.794] Load(Texture): Squad/Contracts/Icons/eva
[LOG 23:35:56.811] Load(Texture): Squad/Contracts/Icons/gravity
[LOG 23:35:56.824] Load(Texture): Squad/Contracts/Icons/marker
[LOG 23:35:56.837] Load(Texture): Squad/Contracts/Icons/pressure
[LOG 23:35:56.850] Load(Texture): Squad/Contracts/Icons/report
[LOG 23:35:56.868] Load(Texture): Squad/Contracts/Icons/sample
[LOG 23:35:56.881] Load(Texture): Squad/Contracts/Icons/seismic
[LOG 23:35:56.894] Load(Texture): Squad/Contracts/Icons/thermometer
[LOG 23:35:56.911] Load(Texture): Squad/Contracts/Icons/vessel
[LOG 23:35:56.924] Load(Texture): Squad/Flags/09
[LOG 23:35:56.948] Load(Texture): Squad/Flags/blorbs
[LOG 23:35:56.968] Load(Texture): Squad/Flags/bullseye
[LOG 23:35:56.988] Load(Texture): Squad/Flags/capsule
[LOG 23:35:57.008] Load(Texture): Squad/Flags/circles
[LOG 23:35:57.029] Load(Texture): Squad/Flags/default
[LOG 23:35:57.049] Load(Texture): Squad/Flags/esa_dark_blue
[LOG 23:35:57.069] Load(Texture): Squad/Flags/hexagon
[LOG 23:35:57.088] Load(Texture): Squad/Flags/hexagonCircles
[LOG 23:35:57.108] Load(Texture): Squad/Flags/kerbal1
[LOG 23:35:57.128] Load(Texture): Squad/Flags/kerbal2
[LOG 23:35:57.146] Load(Texture): Squad/Flags/kerbin
[LOG 23:35:57.164] Load(Texture): Squad/Flags/kerbinmunflag
[LOG 23:35:57.181] Load(Texture): Squad/Flags/line
[LOG 23:35:57.248] Load(Texture): Squad/Flags/minimalistic
[LOG 23:35:57.268] Load(Texture): Squad/Flags/NASA
[LOG 23:35:57.286] Load(Texture): Squad/Flags/orbit
[LOG 23:35:57.304] Load(Texture): Squad/Flags/orbs
[LOG 23:35:57.320] Load(Texture): Squad/Flags/retro
[LOG 23:35:57.338] Load(Texture): Squad/Flags/rings
[LOG 23:35:57.355] Load(Texture): Squad/Flags/rocketScience
[LOG 23:35:57.374] Load(Texture): Squad/Flags/satellite
[LOG 23:35:57.391] Load(Texture): Squad/Flags/spheres
[LOG 23:35:57.408] Load(Texture): Squad/Flags/squadLogo
[LOG 23:35:57.426] Load(Texture): Squad/Flags/squadLogo2
[LOG 23:35:57.443] Load(Texture): Squad/Flags/stripes
[LOG 23:35:57.460] Load(Texture): Squad/Flags/trees
[LOG 23:35:57.477] Load(Texture): Squad/Flags/trippy
[LOG 23:35:57.495] Load(Texture): Squad/Flags/uk_space_agency
[LOG 23:35:57.514] Load(Texture): Squad/FX/DiamondBlue
[LOG 23:35:57.523] Load(Texture): Squad/FX/FlameBlueOrange
[LOG 23:35:57.537] Load(Texture): Squad/FX/FlamePurple
[LOG 23:35:57.550] Load(Texture): Squad/FX/FlameRed
[LOG 23:35:57.562] Load(Texture): Squad/FX/FlameRedOrange
[LOG 23:35:57.576] Load(Texture): Squad/FX/Monoprop
[LOG 23:35:57.591] Load(Texture): Squad/FX/plasma2
[LOG 23:35:57.604] Load(Texture): Squad/FX/rocketplume2
[LOG 23:35:57.616] Load(Texture): Squad/FX/shockDiamond2
[LOG 23:35:57.628] Load(Texture): Squad/FX/smokepuff1
[LOG 23:35:57.641] Load(Texture): Squad/PartList/SimpleIcons/cs_main
[LOG 23:35:57.665] Load(Texture): Squad/PartList/SimpleIcons/cs_mk2
[LOG 23:35:57.682] Load(Texture): Squad/PartList/SimpleIcons/cs_mk3
[LOG 23:35:57.699] Load(Texture): Squad/PartList/SimpleIcons/cs_size0
[LOG 23:35:57.716] Load(Texture): Squad/PartList/SimpleIcons/cs_size1
[LOG 23:35:57.733] Load(Texture): Squad/PartList/SimpleIcons/cs_size2
[LOG 23:35:57.750] Load(Texture): Squad/PartList/SimpleIcons/cs_size3
[LOG 23:35:57.769] Load(Texture): Squad/PartList/SimpleIcons/cs_surface
[LOG 23:35:57.787] Load(Texture): Squad/PartList/SimpleIcons/fuels_monopropellant
[LOG 23:35:57.804] Load(Texture): Squad/PartList/SimpleIcons/fuels_ore
[LOG 23:35:57.821] Load(Texture): Squad/PartList/SimpleIcons/fuels_oxidizer
[LOG 23:35:57.838] Load(Texture): Squad/PartList/SimpleIcons/fuels_solidfuel
[LOG 23:35:57.855] Load(Texture): Squad/PartList/SimpleIcons/fuels_xenongas
[LOG 23:35:57.872] Load(Texture): Squad/PartList/SimpleIcons/number1
[LOG 23:35:57.889] Load(Texture): Squad/PartList/SimpleIcons/number2
[LOG 23:35:57.906] Load(Texture): Squad/PartList/SimpleIcons/number3
[LOG 23:35:57.922] Load(Texture): Squad/PartList/SimpleIcons/number4
[LOG 23:35:57.939] Load(Texture): Squad/PartList/SimpleIcons/number5
[LOG 23:35:57.956] Load(Texture): Squad/PartList/SimpleIcons/number6
[LOG 23:35:57.973] Load(Texture): Squad/PartList/SimpleIcons/number7
[LOG 23:35:57.989] Load(Texture): Squad/PartList/SimpleIcons/number8
[LOG 23:35:58.006] Load(Texture): Squad/PartList/SimpleIcons/number9
[LOG 23:35:58.023] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advaerodynamics
[LOG 23:35:58.041] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advancedmotors
[LOG 23:35:58.059] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advconstruction
[LOG 23:35:58.077] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advelectrics
[LOG 23:35:58.095] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advexploration
[LOG 23:35:58.113] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advflightcontrol
[LOG 23:35:58.185] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advlanding
[LOG 23:35:58.203] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advmetalworks
[LOG 23:35:58.221] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advrocketry
[LOG 23:35:58.239] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advsciencetech
[LOG 23:35:58.257] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advunmanned
[LOG 23:35:58.276] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerodynamicsystems
[LOG 23:35:58.295] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerospacetech
[LOG 23:35:58.314] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_automation
[LOG 23:35:58.331] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicprobes
[LOG 23:35:58.349] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicrocketry
[LOG 23:35:58.367] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_composites
[LOG 23:35:58.385] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electrics
[LOG 23:35:58.402] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electronics
[LOG 23:35:58.420] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_evatech
[LOG 23:35:58.437] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalaerodynamics
[LOG 23:35:58.456] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalelectrics
[LOG 23:35:58.474] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalmotors
[LOG 23:35:58.496] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalrocketry
[LOG 23:35:58.514] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalscience
[LOG 23:35:58.532] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fieldscience
[LOG 23:35:58.550] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_flightcontrol
[LOG 23:35:58.568] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fuelsystems
[LOG 23:35:58.586] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalconstruction
[LOG 23:35:58.604] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalrocketry
[LOG 23:35:58.622] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generic
[LOG 23:35:58.641] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavierrocketry
[LOG 23:35:58.659] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyaerodynamics
[LOG 23:35:58.678] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyrocketry
[LOG 23:35:58.696] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudeflight
[LOG 23:35:58.715] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudepropulsion
[LOG 23:35:58.734] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_hypersonicflight
[LOG 23:35:58.752] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_ionpropulsion
[LOG 23:35:58.770] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_landing
[LOG 23:35:58.788] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largecontrol
[LOG 23:35:58.806] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeelectrics
[LOG 23:35:58.825] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeprobes
[LOG 23:35:58.843] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_metamaterials
[LOG 23:35:58.861] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nanolathing
[LOG 23:35:58.879] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nuclearpropulsion
[LOG 23:35:58.897] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_precisionengineering
[LOG 23:35:58.915] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_robotics
[LOG 23:35:58.933] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_sciencetech
[LOG 23:35:58.951] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedconstruction
[LOG 23:35:58.969] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedcontrol
[LOG 23:35:58.987] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedelectrics
[LOG 23:35:59.006] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_stability
[LOG 23:35:59.024] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_start
[LOG 23:35:59.042] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_supersonicflight
[LOG 23:35:59.060] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_survivability
[LOG 23:35:59.078] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_unmannedtech
[LOG 23:35:59.097] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_veryheavyrocketry
[LOG 23:35:59.115] Load(Texture): Squad/PartList/SimpleIcons/RDicon_aerospaceTech2
[LOG 23:35:59.132] Load(Texture): Squad/PartList/SimpleIcons/RDicon_commandmodules
[LOG 23:35:59.149] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-advanced
[LOG 23:35:59.168] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-highPerformance
[LOG 23:35:59.187] Load(Texture): Squad/PartList/SimpleIcons/RDicon_largeVolumeContainment
[LOG 23:35:59.205] Load(Texture): Squad/PartList/SimpleIcons/RDicon_miniaturization
[LOG 23:35:59.223] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsion-precision
[LOG 23:35:59.242] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsionSystems
[LOG 23:35:59.260] Load(Texture): Squad/PartList/SimpleIcons/RDicon_telescope
[LOG 23:35:59.278] Load(Texture): Squad/Parts/Aero/aerodynamicNoseCone/Nosecone
[LOG 23:35:59.289] Load(Texture): Squad/Parts/Aero/airbrake/Airbrake
[LOG 23:35:59.315] Load(Texture): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 23:35:59.328] Load(Texture): Squad/Parts/Aero/airlinerWings/AirlinerWings
[LOG 23:35:59.358] Load(Texture): Squad/Parts/Aero/airplaneFins/AirplaneFins
[LOG 23:35:59.374] Load(Texture): Squad/Parts/Aero/basicFin/BasicFin
[LOG 23:35:59.385] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes
[LOG 23:35:59.400] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes_Heat
[LOG 23:35:59.418] Load(Texture): Squad/Parts/Aero/cones/Cones
[LOG 23:35:59.432] Load(Texture): Squad/Parts/Aero/cones/Cones_Heat
[LOG 23:35:59.445] Load(Texture): Squad/Parts/Aero/fairings/AutoTruss
[LOG 23:35:59.473] Load(Texture): Squad/Parts/Aero/fairings/FairingBase
[LOG 23:35:59.484] Load(Texture): Squad/Parts/Aero/fairings/fairings_diff
[LOG 23:35:59.501] Load(Texture): Squad/Parts/Aero/HeatShield/Fairing
[LOG 23:35:59.513] Load(Texture): Squad/Parts/Aero/HeatShield/heatshield
[LOG 23:35:59.528] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 23:35:59.547] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShieldFairing
[LOG 23:35:59.559] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield_NRM
[LOG 23:35:59.580] Load(Texture): Squad/Parts/Aero/intakeRadialLong/Radial_long
[LOG 23:35:59.591] Load(Texture): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 23:35:59.605] Load(Texture): Squad/Parts/Aero/protectiveRocketNoseMk7/model000
[LOG 23:35:59.621] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 23:35:59.634] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake_Heat
[LOG 23:35:59.651] Load(Texture): Squad/Parts/Aero/shuttleWings/ShuttleWings
[LOG 23:35:59.684] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model000
[LOG 23:35:59.707] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model001
[LOG 23:35:59.718] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model000
[LOG 23:35:59.733] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model001
[LOG 23:35:59.747] Load(Texture): Squad/Parts/Aero/wingletDeltaDeluxe/model000
[LOG 23:35:59.764] Load(Texture): Squad/Parts/Aero/wings/Wings
[LOG 23:35:59.780] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model000
[LOG 23:35:59.792] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model001
[LOG 23:35:59.810] Load(Texture): Squad/Parts/Command/cupola/cupola_Emissive
[LOG 23:35:59.825] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_diff
[LOG 23:35:59.844] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_normal
[LOG 23:35:59.859] Load(Texture): Squad/Parts/Command/cupola/window
[LOG 23:35:59.869] Load(Texture): Squad/Parts/Command/externalCommandSeat/model000
[LOG 23:35:59.890] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin
[LOG 23:35:59.917] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_Illum
[LOG 23:35:59.930] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_n
[LOG 23:35:59.948] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/window
[LOG 23:35:59.964] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model000
[LOG 23:35:59.979] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model001
[LOG 23:35:59.995] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model000
[LOG 23:36:00.010] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model001
[LOG 23:36:00.025] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model002
[LOG 23:36:00.042] Load(Texture): Squad/Parts/Command/Mk1-2Pod/ladder
[LOG 23:36:00.056] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch NRM
[LOG 23:36:00.077] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch
[LOG 23:36:00.091] Load(Texture): Squad/Parts/Command/Mk1-2Pod/Mk1-2_illum
[LOG 23:36:00.107] Load(Texture): Squad/Parts/Command/Mk1-2Pod/walls
[LOG 23:36:00.122] Load(Texture): Squad/Parts/Command/Mk1-2Pod/window
[LOG 23:36:00.134] Load(Texture): Squad/Parts/Command/mk1Cockpits/GLOW
[LOG 23:36:00.152] Load(Texture): Squad/Parts/Command/mk1Cockpits/Mk1Cockpit
[LOG 23:36:00.166] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_diff
[LOG 23:36:00.198] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_normal
[LOG 23:36:00.210] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_psd_illum
[LOG 23:36:00.228] Load(Texture): Squad/Parts/Command/mk1pod/hatch
[LOG 23:36:00.242] Load(Texture): Squad/Parts/Command/mk1pod/ladderrung
[LOG 23:36:00.255] Load(Texture): Squad/Parts/Command/mk1pod/outer shell NRM
[LOG 23:36:00.273] Load(Texture): Squad/Parts/Command/mk1pod/outer shell
[LOG 23:36:00.287] Load(Texture): Squad/Parts/Command/mk1pod/window
[LOG 23:36:00.301] Load(Texture): Squad/Parts/Command/mk1pod/window_illum
[LOG 23:36:00.318] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_A
[LOG 23:36:00.335] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_Emissive
[LOG 23:36:00.351] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_normal
[LOG 23:36:00.368] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit
[LOG 23:36:00.387] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_Lum
[LOG 23:36:00.400] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_NRM
[LOG 23:36:00.433] Load(Texture): Squad/Parts/Command/mk2DroneCore/mk2Dronecore
[LOG 23:36:00.445] Load(Texture): Squad/Parts/Command/mk2LanderCan/Illum
[LOG 23:36:00.460] Load(Texture): Squad/Parts/Command/mk2LanderCan/ladder
[LOG 23:36:00.474] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell
[LOG 23:36:00.493] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell_n
[LOG 23:36:00.505] Load(Texture): Squad/Parts/Command/mk2LanderCan/window
[LOG 23:36:00.522] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle
[LOG 23:36:00.539] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle_LUM
[LOG 23:36:00.555] Load(Texture): Squad/Parts/Command/probeCoreCube/model000
[LOG 23:36:00.569] Load(Texture): Squad/Parts/Command/probeCoreCube/model001
[LOG 23:36:00.584] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_diff
[LOG 23:36:00.604] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_normal
[LOG 23:36:00.616] Load(Texture): Squad/Parts/Command/probeCoreOcto/model000
[LOG 23:36:00.645] Load(Texture): Squad/Parts/Command/probeCoreOcto/model001
[LOG 23:36:00.656] Load(Texture): Squad/Parts/Command/probeCoreOcto2/model000
[LOG 23:36:00.671] Load(Texture): Squad/Parts/Command/probeRoverBody/model000
[LOG 23:36:00.688] Load(Texture): Squad/Parts/Command/probeRoverBody/model001
[LOG 23:36:00.704] Load(Texture): Squad/Parts/Command/probeStackLarge/model000
[LOG 23:36:00.720] Load(Texture): Squad/Parts/Command/probeStackLarge/model001
[LOG 23:36:00.734] Load(Texture): Squad/Parts/Command/probeStackSmall/model000
[LOG 23:36:00.748] Load(Texture): Squad/Parts/Command/probeStackSmall/model001
[LOG 23:36:00.767] Load(Texture): Squad/Parts/Command/probeStackSphere/model000
[LOG 23:36:00.778] Load(Texture): Squad/Parts/Command/probeStackSphere/model001
[LOG 23:36:00.795] Load(Texture): Squad/Parts/CompoundParts/fuelLine/model000
[LOG 23:36:00.809] Load(Texture): Squad/Parts/CompoundParts/strutConnector/EAS-4 Strut Connector
[LOG 23:36:00.825] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model000
[LOG 23:36:00.843] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model001
[LOG 23:36:00.858] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model002
[LOG 23:36:00.876] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model000
[LOG 23:36:00.891] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model001
[LOG 23:36:00.909] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model002
[LOG 23:36:00.924] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model000
[LOG 23:36:00.939] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model001
[LOG 23:36:00.958] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model002
[LOG 23:36:00.987] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model000
[LOG 23:36:00.998] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model001
[LOG 23:36:01.014] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model002
[LOG 23:36:01.031] Load(Texture): Squad/Parts/Electrical/gigantorXlSolarArray/panel
[LOG 23:36:01.046] Load(Texture): Squad/Parts/Electrical/radialFlatSolarPanel/model000
[LOG 23:36:01.060] Load(Texture): Squad/Parts/Electrical/RTG/model000
[LOG 23:36:01.076] Load(Texture): Squad/Parts/Electrical/z-100Battery/model000
[LOG 23:36:01.089] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model000
[LOG 23:36:01.107] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model001
[LOG 23:36:01.121] Load(Texture): Squad/Parts/Electrical/z-200Battery/ksp_m_batteryPack_diff
[LOG 23:36:01.137] Load(Texture): Squad/Parts/Electrical/z-400Battery/model000
[LOG 23:36:01.155] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_diff
[LOG 23:36:01.169] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_normal
[LOG 23:36:01.188] Load(Texture): Squad/Parts/Engine/ionEngine/model000
[LOG 23:36:01.200] Load(Texture): Squad/Parts/Engine/jetEngines/Jet Engines
[LOG 23:36:01.232] Load(Texture): Squad/Parts/Engine/jetEngines/Jet_Heat
[LOG 23:36:01.246] Load(Texture): Squad/Parts/Engine/liquidEngine24-77/model000
[LOG 23:36:01.261] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_diff
[LOG 23:36:01.277] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_norm
[LOG 23:36:01.296] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_norm
[LOG 23:36:01.312] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_psd
[LOG 23:36:01.331] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike
[LOG 23:36:01.346] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike_Heat
[LOG 23:36:01.364] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/alternatebracket
[LOG 23:36:01.379] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/engine
[LOG 23:36:01.396] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1R/ksp_r_microEngine_diff
[LOG 23:36:01.411] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/bigfairing
[LOG 23:36:01.429] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3
[LOG 23:36:01.444] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_emissive
[LOG 23:36:01.461] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_n
[LOG 23:36:01.477] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model000
[LOG 23:36:01.491] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model001
[LOG 23:36:01.509] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model002
[LOG 23:36:01.535] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model003
[LOG 23:36:01.550] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model000
[LOG 23:36:01.565] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model001
[LOG 23:36:01.579] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model002
[LOG 23:36:01.596] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model000
[LOG 23:36:01.611] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model001
[LOG 23:36:01.629] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model002
[LOG 23:36:01.643] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model003
[LOG 23:36:01.658] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model000
[LOG 23:36:01.675] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model001
[LOG 23:36:01.690] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model002
[LOG 23:36:01.707] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model003
[LOG 23:36:01.721] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model004
[LOG 23:36:01.739] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 23:36:01.754] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud_Heat
[LOG 23:36:01.768] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model000
[LOG 23:36:01.786] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model001
[LOG 23:36:01.800] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model002
[LOG 23:36:01.818] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model003
[LOG 23:36:01.831] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_diff
[LOG 23:36:01.851] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_emissive
[LOG 23:36:01.867] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_diff
[LOG 23:36:01.887] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_norm
[LOG 23:36:01.904] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_normal
[LOG 23:36:01.933] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 23:36:01.947] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_GLOW
[LOG 23:36:01.964] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_NRM
[LOG 23:36:01.978] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_cm
[LOG 23:36:01.993] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_em
[LOG 23:36:02.010] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_nm
[LOG 23:36:02.025] Load(Texture): Squad/Parts/Engine/miniJet/SmallJet
[LOG 23:36:02.042] Load(Texture): Squad/Parts/Engine/OMSEngine/engineoms 1
[LOG 23:36:02.055] Load(Texture): Squad/Parts/Engine/rapierEngine/rapierDiffuse
[LOG 23:36:02.070] Load(Texture): Squad/Parts/Engine/rapierEngine/rapieremit
[LOG 23:36:02.087] Load(Texture): Squad/Parts/Engine/Size2LFB/Size2LFBEmissive
[LOG 23:36:02.101] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_cm
[LOG 23:36:02.120] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_nm
[LOG 23:36:02.138] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/decoupler_and_adaptor_cm
[LOG 23:36:02.155] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineDiffuse
[LOG 23:36:02.186] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineEmissive
[LOG 23:36:02.201] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineNormal
[LOG 23:36:02.219] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/ClusterEngineEmit
[LOG 23:36:02.333] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_cm
[LOG 23:36:02.351] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_nm
[LOG 23:36:02.370] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model000
[LOG 23:36:02.384] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model001
[LOG 23:36:02.403] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model002
[LOG 23:36:02.416] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model000
[LOG 23:36:02.436] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model001
[LOG 23:36:02.450] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model002
[LOG 23:36:02.464] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5
[LOG 23:36:02.482] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5_N_NRM
[LOG 23:36:02.497] Load(Texture): Squad/Parts/Engine/solidBoosterSep/model000
[LOG 23:36:02.511] Load(Texture): Squad/Parts/Engine/vernorEngine/vernierEngine3UV
[LOG 23:36:02.530] Load(Texture): Squad/Parts/FuelTank/adapterTanks/Mk3Adapters
[LOG 23:36:02.563] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model000
[LOG 23:36:02.578] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model001
[LOG 23:36:02.593] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model000
[LOG 23:36:02.610] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model001
[LOG 23:36:02.625] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank
[LOG 23:36:02.641] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank_n
[LOG 23:36:02.658] Load(Texture): Squad/Parts/FuelTank/fuelTankT100/tank4
[LOG 23:36:02.672] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3
[LOG 23:36:02.686] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3_n
[LOG 23:36:02.704] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model000
[LOG 23:36:02.718] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model001
[LOG 23:36:02.735] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model000
[LOG 23:36:02.753] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model001
[LOG 23:36:02.769] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model000
[LOG 23:36:02.786] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model001
[LOG 23:36:02.801] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model000
[LOG 23:36:02.816] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model001
[LOG 23:36:02.834] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model000
[LOG 23:36:02.863] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model001
[LOG 23:36:02.878] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model000
[LOG 23:36:02.894] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model001
[LOG 23:36:02.908] Load(Texture): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 23:36:02.926] Load(Texture): Squad/Parts/FuelTank/mk2Adapters/mk2adapters1m
[LOG 23:36:02.942] Load(Texture): Squad/Parts/FuelTank/mk2FuselageLong/mk2Fuselage
[LOG 23:36:02.963] Load(Texture): Squad/Parts/FuelTank/mk2FuselageShort/mk2FuselageShort
[LOG 23:36:02.980] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage
[LOG 23:36:03.017] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage_LUM
[LOG 23:36:03.031] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model000
[LOG 23:36:03.045] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model001
[LOG 23:36:03.063] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_diff
[LOG 23:36:03.078] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_normal
[LOG 23:36:03.096] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model000
[LOG 23:36:03.110] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model001
[LOG 23:36:03.124] Load(Texture): Squad/Parts/FuelTank/RCSTankRadial/model000
[LOG 23:36:03.141] Load(Texture): Squad/Parts/FuelTank/RCStankRadialLong/ksp_r_rcsCylTank_diff
[LOG 23:36:03.155] Load(Texture): Squad/Parts/FuelTank/Size3Tanks/fueltTanks_cm
[LOG 23:36:03.173] Load(Texture): Squad/Parts/FuelTank/xenonTank/model000
[LOG 23:36:03.185] Load(Texture): Squad/Parts/FuelTank/xenonTank/model001
[LOG 23:36:03.199] Load(Texture): Squad/Parts/FuelTank/xenonTankLarge/tank
[LOG 23:36:03.216] Load(Texture): Squad/Parts/FuelTank/xenonTankRadial/ksp_r_xenonTank_diff
[LOG 23:36:03.231] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat
[LOG 23:36:03.248] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_glow
[LOG 23:36:03.260] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_N_NRM
[LOG 23:36:03.277] Load(Texture): Squad/Parts/Misc/AsteroidDay/default
[LOG 23:36:03.292] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe
[LOG 23:36:03.307] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe_NORM_NRM
[LOG 23:36:03.337] Load(Texture): Squad/Parts/Resources/FuelCell/FCLamp
[LOG 23:36:03.348] Load(Texture): Squad/Parts/Resources/FuelCell/FuelCellRack
[LOG 23:36:03.363] Load(Texture): Squad/Parts/Resources/FuelCell/fuellcell
[LOG 23:36:03.380] Load(Texture): Squad/Parts/Resources/ISRU/Processor_Large
[LOG 23:36:03.395] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_diff
[LOG 23:36:03.413] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_norm
[LOG 23:36:03.430] Load(Texture): Squad/Parts/Resources/MiniDrill/DustParticle
[LOG 23:36:03.441] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_diff
[LOG 23:36:03.461] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_PSD
[LOG 23:36:03.476] Load(Texture): Squad/Parts/Resources/MiniISRU/ksp_s_processorSmall_diff
[LOG 23:36:03.493] Load(Texture): Squad/Parts/Resources/OrbitalScanner/detector
[LOG 23:36:03.505] Load(Texture): Squad/Parts/Resources/RadialDrill/DustParticle
[LOG 23:36:03.523] Load(Texture): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 23:36:03.538] Load(Texture): Squad/Parts/Resources/RadialTank/ksp_r_resourceContainer_psd_2
[LOG 23:36:03.556] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_diff
[LOG 23:36:03.586] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_normal
[LOG 23:36:03.602] Load(Texture): Squad/Parts/Resources/SurfaceScanner/ksp_r_samplerAir_diff
[LOG 23:36:03.619] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish
[LOG 23:36:03.635] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish_n
[LOG 23:36:03.651] Load(Texture): Squad/Parts/Science/AtmosphereSensor/ksp_r_hydroscoop_diff
[LOG 23:36:03.665] Load(Texture): Squad/Parts/Science/GooExperiment/A_GooExperiment_diff
[LOG 23:36:03.684] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab
[LOG 23:36:03.712] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab_glow
[LOG 23:36:03.731] Load(Texture): Squad/Parts/Science/LargeCrewedLab/window
[LOG 23:36:03.742] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 23:36:03.762] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_emit
[LOG 23:36:03.775] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_nrm
[LOG 23:36:03.791] Load(Texture): Squad/Parts/Science/MaterialBay/wires
[LOG 23:36:03.806] Load(Texture): Squad/Parts/Science/ScienceBox/Container
[LOG 23:36:03.819] Load(Texture): Squad/Parts/Science/sensorAccelerometer/model000
[LOG 23:36:03.837] Load(Texture): Squad/Parts/Science/sensorBarometer/model000
[LOG 23:36:03.851] Load(Texture): Squad/Parts/Science/sensorGravimeter/model000
[LOG 23:36:03.869] Load(Texture): Squad/Parts/Science/sensorThermometer/model000
[LOG 23:36:03.883] Load(Texture): Squad/Parts/Structural/adapterLargeSmallBi/ksp_l_biAdapter_diff
[LOG 23:36:03.900] Load(Texture): Squad/Parts/Structural/adapterLargeSmallQuad/ksp_l_quadAdapter_diff
[LOG 23:36:03.919] Load(Texture): Squad/Parts/Structural/adapterLargeSmallTri/ksp_l_triAdapter_diff
[LOG 23:36:03.951] Load(Texture): Squad/Parts/Structural/adapterSmallMiniShort/ksp_s_adapterShort_diff
[LOG 23:36:03.964] Load(Texture): Squad/Parts/Structural/adapterSmallMiniTall/ksp_s_adapterLong_diff
[LOG 23:36:03.984] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1Structural
[LOG 23:36:03.998] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1StructuralHeat
[LOG 23:36:04.017] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_cm
[LOG 23:36:04.031] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_nm
[LOG 23:36:04.051] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_cm
[LOG 23:36:04.065] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_nm
[LOG 23:36:04.098] Load(Texture): Squad/Parts/Structural/stationHub/model000
[LOG 23:36:04.109] Load(Texture): Squad/Parts/Structural/stationHub/model001
[LOG 23:36:04.122] Load(Texture): Squad/Parts/Structural/structuralIBeam200/model000
[LOG 23:36:04.140] Load(Texture): Squad/Parts/Structural/structuralIBeam200Pocket/model000
[LOG 23:36:04.153] Load(Texture): Squad/Parts/Structural/structuralIBeam650/model000
[LOG 23:36:04.172] Load(Texture): Squad/Parts/Structural/structuralMicronode/model000
[LOG 23:36:04.188] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model000
[LOG 23:36:04.206] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model001
[LOG 23:36:04.221] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model000
[LOG 23:36:04.239] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model001
[LOG 23:36:04.255] Load(Texture): Squad/Parts/Structural/structuralPylons/Pylons
[LOG 23:36:04.270] Load(Texture): Squad/Parts/Structural/strutCubicOcto/cubestrut
[LOG 23:36:04.287] Load(Texture): Squad/Parts/Structural/strutOcto/model000
[LOG 23:36:04.301] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model000
[LOG 23:36:04.320] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model001
[LOG 23:36:04.334] Load(Texture): Squad/Parts/Structural/trussGirderL/model000
[LOG 23:36:04.362] Load(Texture): Squad/Parts/Structural/trussGirderXL/model000
[LOG 23:36:04.376] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator
[LOG 23:36:04.394] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator_N_NRM
[LOG 23:36:04.409] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel
[LOG 23:36:04.426] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel_N_NRM
[LOG 23:36:04.453] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_array
[LOG 23:36:04.465] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_v2_diff
[LOG 23:36:04.482] Load(Texture): Squad/Parts/Utility/commDish88-88/model000
[LOG 23:36:04.495] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 23:36:04.515] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna_Emit
[LOG 23:36:04.527] Load(Texture): Squad/Parts/Utility/commsDish16/model000
[LOG 23:36:04.545] Load(Texture): Squad/Parts/Utility/decouplerRadialHDM/model000
[LOG 23:36:04.559] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model000
[LOG 23:36:04.577] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model001
[LOG 23:36:04.592] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-70/model000
[LOG 23:36:04.607] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model000
[LOG 23:36:04.626] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model001
[LOG 23:36:04.640] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-2C/model000
[LOG 23:36:04.658] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-XL/model000
[LOG 23:36:04.676] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model000
[LOG 23:36:04.694] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model001
[LOG 23:36:04.708] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model000
[LOG 23:36:04.726] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model001
[LOG 23:36:04.741] Load(Texture): Squad/Parts/Utility/decouplerStackTR-2V/model000
[LOG 23:36:04.755] Load(Texture): Squad/Parts/Utility/DirectAntennas/MiniAntenna
[LOG 23:36:04.774] Load(Texture): Squad/Parts/Utility/dockingPort/model000
[LOG 23:36:04.788] Load(Texture): Squad/Parts/Utility/dockingPort/model001
[LOG 23:36:04.803] Load(Texture): Squad/Parts/Utility/dockingPortInline/model000
[LOG 23:36:04.820] Load(Texture): Squad/Parts/Utility/dockingPortInline/model001
[LOG 23:36:04.835] Load(Texture): Squad/Parts/Utility/dockingPortInline/model002
[LOG 23:36:04.853] Load(Texture): Squad/Parts/Utility/dockingPortJr/model000
[LOG 23:36:04.867] Load(Texture): Squad/Parts/Utility/dockingPortJr/model001
[LOG 23:36:04.882] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model000
[LOG 23:36:04.900] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model001
[LOG 23:36:04.914] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model002
[LOG 23:36:04.932] Load(Texture): Squad/Parts/Utility/dockingPortSr/model000
[LOG 23:36:04.962] Load(Texture): Squad/Parts/Utility/dockingPortSr/model001
[LOG 23:36:04.979] Load(Texture): Squad/Parts/Utility/GrapplingDevice/grabberDiffuse
[LOG 23:36:04.994] Load(Texture): Squad/Parts/Utility/GrapplingDevice/window
[LOG 23:36:05.008] Load(Texture): Squad/Parts/Utility/ladderRadial/model000
[LOG 23:36:05.026] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model000
[LOG 23:36:05.041] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model001
[LOG 23:36:05.057] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model002
[LOG 23:36:05.076] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model000
[LOG 23:36:05.093] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model001
[LOG 23:36:05.111] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 23:36:05.127] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 23:36:05.157] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 23:36:05.171] Load(Texture): Squad/Parts/Utility/landingLegLT-5/model000
[LOG 23:36:05.185] Load(Texture): Squad/Parts/Utility/largeAdapter/model000
[LOG 23:36:05.202] Load(Texture): Squad/Parts/Utility/largeAdapterShort/model000
[LOG 23:36:05.217] Load(Texture): Squad/Parts/Utility/launchClamp1/model000
[LOG 23:36:05.235] Load(Texture): Squad/Parts/Utility/launchClamp1/model001
[LOG 23:36:05.249] Load(Texture): Squad/Parts/Utility/launchEscapeSystem/LES_Diffuse
[LOG 23:36:05.265] Load(Texture): Squad/Parts/Utility/linearRCS/rcs
[LOG 23:36:05.279] Load(Texture): Squad/Parts/Utility/mk2CargoBay/mk2CargoBay
[LOG 23:36:05.296] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin
[LOG 23:36:05.311] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin_LUM
[LOG 23:36:05.329] Load(Texture): Squad/Parts/Utility/mk2DockingPort/mk2DockingPort
[LOG 23:36:05.346] Load(Texture): Squad/Parts/Utility/mk3CargoBay/Mk3CargoBay
[LOG 23:36:05.365] Load(Texture): Squad/Parts/Utility/parachuteMk1/model000
[LOG 23:36:05.379] Load(Texture): Squad/Parts/Utility/parachuteMk1/model001
[LOG 23:36:05.394] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model000
[LOG 23:36:05.412] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model001
[LOG 23:36:05.438] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model000
[LOG 23:36:05.452] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model001
[LOG 23:36:05.470] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model000
[LOG 23:36:05.484] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model001
[LOG 23:36:05.502] Load(Texture): Squad/Parts/Utility/parachuteMk25/model000
[LOG 23:36:05.516] Load(Texture): Squad/Parts/Utility/parachuteMk25/model001
[LOG 23:36:05.533] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model000
[LOG 23:36:05.548] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model001
[LOG 23:36:05.566] Load(Texture): Squad/Parts/Utility/rcsBlockRV-105/rcs
[LOG 23:36:05.580] Load(Texture): Squad/Parts/Utility/RelayAntennas/DishAntenna
[LOG 23:36:05.596] Load(Texture): Squad/Parts/Utility/RelayAntennas/MiniAntenna
[LOG 23:36:05.614] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay
[LOG 23:36:05.628] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay_N_NRM
[LOG 23:36:05.643] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1
[LOG 23:36:05.660] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1_em
[LOG 23:36:05.675] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2
[LOG 23:36:05.692] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2_em
[LOG 23:36:05.706] Load(Texture): Squad/Parts/Utility/stackBiCoupler/model000
[LOG 23:36:05.720] Load(Texture): Squad/Parts/Utility/stackQuadCoupler/ksp_s_quadCoupler_diff
[LOG 23:36:05.740] Load(Texture): Squad/Parts/Utility/stackTriCoupler/model000
[LOG 23:36:05.754] Load(Texture): Squad/Parts/Wheel/LandingGear/Flare
[LOG 23:36:05.770] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear
[LOG 23:36:05.787] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear_Emissive
[LOG 23:36:05.802] Load(Texture): Squad/Parts/Wheel/roverWheelM1/model000
[LOG 23:36:05.819] Load(Texture): Squad/Parts/Wheel/roverWheelM1/roverwheel1
[LOG 23:36:05.850] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model000
[LOG 23:36:05.864] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model001
[LOG 23:36:05.879] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2
[LOG 23:36:05.898] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2_n
[LOG 23:36:05.927] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_diff
[LOG 23:36:06.036] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_normal
[LOG 23:36:06.111] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_diff
[LOG 23:36:06.201] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_normal
[LOG 23:36:06.275] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model000
[LOG 23:36:06.289] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model001
[LOG 23:36:06.305] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model002
[LOG 23:36:06.319] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model003
[LOG 23:36:06.347] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model000
[LOG 23:36:06.360] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model001
[LOG 23:36:06.375] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model002
[LOG 23:36:06.388] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model003
[LOG 23:36:06.406] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount
[LOG 23:36:06.504] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount_n
[LOG 23:36:06.524] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel
[LOG 23:36:06.542] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel_n
[LOG 23:36:06.559] Load(Texture): Squad/Props/AltimeterThreeHands/model000
[LOG 23:36:06.571] Load(Texture): Squad/Props/AltimeterThreeHands/model001
[LOG 23:36:06.586] Load(Texture): Squad/Props/AtmosphereDepth/model000
[LOG 23:36:06.600] Load(Texture): Squad/Props/AtmosphereDepth/model001
[LOG 23:36:06.617] Load(Texture): Squad/Props/AxisIndicator/model000
[LOG 23:36:06.630] Load(Texture): Squad/Props/buttonsGeneric/ButtonsAndSwitches
[LOG 23:36:06.645] Load(Texture): Squad/Props/ButtonSquare/model000
[LOG 23:36:06.663] Load(Texture): Squad/Props/circularButton/model000
[LOG 23:36:06.674] Load(Texture): Squad/Props/Compass/model000
[LOG 23:36:06.688] Load(Texture): Squad/Props/directionalKnob/model000
[LOG 23:36:06.706] Load(Texture): Squad/Props/directionalKnob2/model000
[LOG 23:36:06.720] Load(Texture): Squad/Props/IndicatorPanel/model000
[LOG 23:36:06.734] Load(Texture): Squad/Props/IndicatorPanel/model001
[LOG 23:36:06.749] Load(Texture): Squad/Props/IVANavBall/Arrows8dir
[LOG 23:36:06.762] Load(Texture): Squad/Props/IVANavBall/IVANavBall
[LOG 23:36:06.776] Load(Texture): Squad/Props/IVANavBall/IVANavBall_Glow
[LOG 23:36:06.793] Load(Texture): Squad/Props/IVANavBall/ManeuverNode_vectors
[LOG 23:36:06.808] Load(Texture): Squad/Props/IVANavBall/navball2
[LOG 23:36:06.821] Load(Texture): Squad/Props/IVANavBall/navBall_DV_IVA
[LOG 23:36:06.839] Load(Texture): Squad/Props/IVANavBall/navBall_vectors_IVA
[LOG 23:36:06.853] Load(Texture): Squad/Props/ledPanelSpeed/model000
[LOG 23:36:06.867] Load(Texture): Squad/Props/ledPanelSpeed/model001
[LOG 23:36:06.884] Load(Texture): Squad/Props/Monitor/Emissives
[LOG 23:36:06.898] Load(Texture): Squad/Props/Monitor/Emissives_glow
[LOG 23:36:06.911] Load(Texture): Squad/Props/Monitor/Monitor
[LOG 23:36:06.925] Load(Texture): Squad/Props/NavBall/model000
[LOG 23:36:06.942] Load(Texture): Squad/Props/NavBall/model001
[LOG 23:36:06.955] Load(Texture): Squad/Props/NavBall/model002
[LOG 23:36:06.969] Load(Texture): Squad/Props/NavBall/model003
[LOG 23:36:06.982] Load(Texture): Squad/Props/PropsGeneric/propsGeneric
[LOG 23:36:07.003] Load(Texture): Squad/Props/pullSwitch/model000
[LOG 23:36:07.013] Load(Texture): Squad/Props/pullSwitch/model001
[LOG 23:36:07.027] Load(Texture): Squad/Props/radarAltitude/model000
[LOG 23:36:07.045] Load(Texture): Squad/Props/squareButton/model000
[LOG 23:36:07.057] Load(Texture): Squad/Props/standingSwitch/model000
[LOG 23:36:07.071] Load(Texture): Squad/Props/standingSwitch/model001
[LOG 23:36:07.088] Load(Texture): Squad/Props/switch/model000
[LOG 23:36:07.100] Load(Texture): Squad/Props/switchGuard/model000
[LOG 23:36:07.113] Load(Texture): Squad/Props/switchWithGuards/model000
[LOG 23:36:07.130] Load(Texture): Squad/Props/switchWithGuards/model001
[LOG 23:36:07.144] Load(Texture): Squad/Props/switchWithGuards/model002
[LOG 23:36:07.158] Load(Texture): Squad/Props/throttle/model000
[LOG 23:36:07.172] Load(Texture): Squad/Props/throttle/model001
[LOG 23:36:07.195] Load(Texture): Squad/Props/VSI/model000
[LOG 23:36:07.207] Load(Texture): Squad/Spaces/crewCabinInternals/model000
[LOG 23:36:07.218] Load(Texture): Squad/Spaces/crewCabinInternals/model001
[LOG 23:36:07.258] Load(Texture): Squad/Spaces/crewCabinInternals/model002
[LOG 23:36:07.270] Load(Texture): Squad/Spaces/crewCabinInternals/model003
[LOG 23:36:07.288] Load(Texture): Squad/Spaces/crewCabinInternals/model004
[LOG 23:36:07.299] Load(Texture): Squad/Spaces/crewCabinInternals/model005
[LOG 23:36:07.316] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_diff
[LOG 23:36:07.357] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_normal
[LOG 23:36:07.400] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_windows_alpha
[LOG 23:36:07.415] Load(Texture): Squad/Spaces/cupolaInternal/pilot Seat
[LOG 23:36:07.533] Load(Texture): Squad/Spaces/GenericSpace1/model000
[LOG 23:36:07.546] Load(Texture): Squad/Spaces/GenericSpace1/model001
[LOG 23:36:07.562] Load(Texture): Squad/Spaces/GenericSpace1/model002
[LOG 23:36:07.588] Load(Texture): Squad/Spaces/GenericSpace1/model003
[LOG 23:36:07.603] Load(Texture): Squad/Spaces/GenericSpace1/model004
[LOG 23:36:07.616] Load(Texture): Squad/Spaces/GenericSpace1/model005
[LOG 23:36:07.631] Load(Texture): Squad/Spaces/GenericSpace3/model000
[LOG 23:36:07.646] Load(Texture): Squad/Spaces/GenericSpace3/model001
[LOG 23:36:07.657] Load(Texture): Squad/Spaces/GenericSpace3/model002
[LOG 23:36:07.677] Load(Texture): Squad/Spaces/GenericSpace3/model003
[LOG 23:36:07.693] Load(Texture): Squad/Spaces/GenericSpace3/model004
[LOG 23:36:07.705] Load(Texture): Squad/Spaces/GenericSpace3/model005
[LOG 23:36:07.721] Load(Texture): Squad/Spaces/GenericSpace3/model006
[LOG 23:36:07.746] Load(Texture): Squad/Spaces/GenericSpace3/model007
[LOG 23:36:07.759] Load(Texture): Squad/Spaces/landerCabinInternals/model000
[LOG 23:36:07.774] Load(Texture): Squad/Spaces/landerCabinInternals/model001
[LOG 23:36:07.791] Load(Texture): Squad/Spaces/landerCabinInternals/model002
[LOG 23:36:07.805] Load(Texture): Squad/Spaces/landerCabinInternals/model003
[LOG 23:36:07.828] Load(Texture): Squad/Spaces/landerCabinInternals/model004
[LOG 23:36:07.841] Load(Texture): Squad/Spaces/landerCabinInternals/model005
[LOG 23:36:07.854] Load(Texture): Squad/Spaces/landerCabinInternals/model006
[LOG 23:36:07.874] Load(Texture): Squad/Spaces/landerCabinInternals/model007
[LOG 23:36:07.896] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_diff
[LOG 23:36:07.947] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_normal
[LOG 23:36:07.979] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_window_alpha
[LOG 23:36:08.008] Load(Texture): Squad/Spaces/landerCabinSmallInternal/pilot Seat
[LOG 23:36:08.022] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/Glass
[LOG 23:36:08.035] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int
[LOG 23:36:08.069] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int_n_NRM
[LOG 23:36:08.083] Load(Texture): Squad/Spaces/mk1CabinInternal/Cabin_Lightmap
[LOG 23:36:08.095] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric
[LOG 23:36:08.113] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric_NRM
[LOG 23:36:08.127] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric
[LOG 23:36:08.145] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric_NRM
[LOG 23:36:08.160] Load(Texture): Squad/Spaces/mk1CockpitInternal/IVAMAP
[LOG 23:36:08.176] Load(Texture): Squad/Spaces/mk1CockpitInternal/Windows
[LOG 23:36:08.192] Load(Texture): Squad/Spaces/mk1InlineInternal/Canopy
[LOG 23:36:08.208] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric
[LOG 23:36:08.220] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric_NRM
[LOG 23:36:08.238] Load(Texture): Squad/Spaces/mk1InlineInternal/Mk1Inline_Lightmap
[LOG 23:36:08.264] Load(Texture): Squad/Spaces/mk1PodCockpit/model000
[LOG 23:36:08.277] Load(Texture): Squad/Spaces/mk1PodCockpit/model001
[LOG 23:36:08.293] Load(Texture): Squad/Spaces/mk1PodCockpit/model002
[LOG 23:36:08.307] Load(Texture): Squad/Spaces/mk1PodCockpit/model003
[LOG 23:36:08.325] Load(Texture): Squad/Spaces/mk1PodCockpit/model004
[LOG 23:36:08.346] Load(Texture): Squad/Spaces/mk1PodCockpit/model005
[LOG 23:36:08.357] Load(Texture): Squad/Spaces/mk1PodCockpit/model006
[LOG 23:36:08.375] Load(Texture): Squad/Spaces/mk1PodCockpit/model007
[LOG 23:36:08.385] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/CargoBagA
[LOG 23:36:08.400] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Mk2StandardIVA
[LOG 23:36:08.419] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Pilotseat
[LOG 23:36:08.433] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Windows
[LOG 23:36:08.461] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/CargoBagA
[LOG 23:36:08.472] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Glass
[LOG 23:36:08.486] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Mk2StandardIVA
[LOG 23:36:08.505] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Pilotseat
[LOG 23:36:08.518] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric
[LOG 23:36:08.538] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric_NRM
[LOG 23:36:08.553] Load(Texture): Squad/Spaces/mk2InlineInternal/Mk2InlineLightmap
[LOG 23:36:08.570] Load(Texture): Squad/Spaces/mk2InlineInternal/propsGeneric
[LOG 23:36:08.586] Load(Texture): Squad/Spaces/MK3CockpitInternal/Glass
[LOG 23:36:08.597] Load(Texture): Squad/Spaces/MK3CockpitInternal/Mk2StandardIVA
[LOG 23:36:08.615] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Glass
[LOG 23:36:08.630] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/GlassMK3CC
[LOG 23:36:08.643] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Mk2StandardIVA
[LOG 23:36:08.662] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 23:36:08.678] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int_n
[LOG 23:36:08.690] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Pilotseat
[LOG 23:36:08.719] Load(Texture): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 23:36:08.730] Load(Texture): Squad/Spaces/PodCockpit/model000
[LOG 23:36:08.748] Load(Texture): Squad/Spaces/PodCockpit/model001
[LOG 23:36:08.763] Load(Texture): Squad/Spaces/PodCockpit/model002
[LOG 23:36:08.776] Load(Texture): Squad/Spaces/PodCockpit/model003
[LOG 23:36:08.791] Load(Texture): Squad/Spaces/PodCockpit/model004
[LOG 23:36:08.806] Load(Texture): Squad/Spaces/PodCockpit/model005
[LOG 23:36:08.821] Load(Texture): Squad/Spaces/PodCockpit/model006
[LOG 23:36:08.832] Load(Texture): Squad/Spaces/PodCockpit/model007
[LOG 23:36:08.851] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric
[LOG 23:36:08.866] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric_NRM
[LOG 23:36:08.892] Load(Texture): Squad/Strategies/Icons/AggressiveNegotiations
[LOG 23:36:08.910] Load(Texture): Squad/Strategies/Icons/AppreciationCampaign
[LOG 23:36:08.927] Load(Texture): Squad/Strategies/Icons/BailOutGrant
[LOG 23:36:08.944] Load(Texture): Squad/Strategies/Icons/FundraisingCampaign
[LOG 23:36:08.961] Load(Texture): Squad/Strategies/Icons/LeadershipInitiative
[LOG 23:36:08.979] Load(Texture): Squad/Strategies/Icons/OpenSourceTechProgram
[LOG 23:36:08.996] Load(Texture): Squad/Strategies/Icons/OutsourcedResearch
[LOG 23:36:09.014] Load(Texture): Squad/Strategies/Icons/PatentsLicensing
[LOG 23:36:09.032] Load(Texture): Squad/Strategies/Icons/RecoveryTransponderFitting
[LOG 23:36:09.049] Load(Texture): Squad/Strategies/Icons/ResearchRightsSellOut
[LOG 23:36:09.067] Load(Texture): Squad/Strategies/Icons/UnpaidResearchProgram
[LOG 23:36:09.084] Load(Texture): Squad/Tutorials/ChuteColors
[LOG 23:36:09.101] Load(Texture): Squad/Tutorials/EditorCoM
[LOG 23:36:09.117] Load(Texture): Squad/Tutorials/EditorSnap
[LOG 23:36:09.135] Load(Texture): Squad/Tutorials/EditorSnap4x
[LOG 23:36:09.151] Load(Texture): Squad/Tutorials/EditorSymm
[LOG 23:36:09.168] Load(Texture): Squad/Tutorials/StagingStack
[LOG 23:36:09.185] Load(Model): Squad/FX/afterburner_flame
[LOG 23:36:09.204] Load(Model): Squad/FX/afterburner_shock
[LOG 23:36:09.214] Load(Model): Squad/FX/diamondBlue
[LOG 23:36:09.226] Load(Model): Squad/FX/exhaustFlames_blue
[LOG 23:36:09.243] Load(Model): Squad/FX/hydroLOXFlame
[LOG 23:36:09.255] Load(Model): Squad/FX/IonPlume
[LOG 23:36:09.266] Load(Model): Squad/FX/ks1_Exhaust
[LOG 23:36:09.280] Load(Model): Squad/FX/ks25_Exhaust
[LOG 23:36:09.292] Load(Model): Squad/FX/ksX_Exhaust
[LOG 23:36:09.309] Load(Model): Squad/FX/LES_Thruster
[LOG 23:36:09.322] Load(Model): Squad/FX/Monoprop_big
[LOG 23:36:09.336] Load(Model): Squad/FX/Monoprop_medium
[LOG 23:36:09.349] Load(Model): Squad/FX/Monoprop_small
[LOG 23:36:09.362] Load(Model): Squad/FX/shockExhaust_blue
[LOG 23:36:09.379] Load(Model): Squad/FX/shockExhaust_blue_small
[LOG 23:36:09.393] Load(Model): Squad/FX/shockExhaust_red_small
[LOG 23:36:09.407] Load(Model): Squad/FX/SRB_Large
[LOG 23:36:09.420] Load(Model): Squad/FX/SRB_LargeSparks
[LOG 23:36:09.437] Load(Model): Squad/Parts/Aero/aerodynamicNoseCone/model
[LOG 23:36:09.457] Load(Model): Squad/Parts/Aero/airbrake/Airbrake
[LOG 23:36:09.472] Load(Model): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 23:36:09.485] Load(Model): Squad/Parts/Aero/airlinerWings/ControlSurface
[LOG 23:36:09.500] Load(Model): Squad/Parts/Aero/airlinerWings/MainWing
[LOG 23:36:09.515] Load(Model): Squad/Parts/Aero/airlinerWings/TailFin
[LOG 23:36:09.536] Load(Model): Squad/Parts/Aero/airplaneFins/AdvCanard
[LOG 23:36:09.547] Load(Model): Squad/Parts/Aero/airplaneFins/Canard
[LOG 23:36:09.561] Load(Model): Squad/Parts/Aero/airplaneFins/Swept
[LOG 23:36:09.576] Load(Model): Squad/Parts/Aero/airplaneFins/TailFin
[LOG 23:36:09.590] Load(Model): Squad/Parts/Aero/basicFin/basicFin
[LOG 23:36:09.604] Load(Model): Squad/Parts/Aero/circularIntake/CircularIntake
[LOG 23:36:09.626] Load(Model): Squad/Parts/Aero/circularIntake/ConeIntake
[LOG 23:36:09.638] Load(Model): Squad/Parts/Aero/cones/AvioCone
[LOG 23:36:09.651] Load(Model): Squad/Parts/Aero/cones/ConeA
[LOG 23:36:09.668] Load(Model): Squad/Parts/Aero/cones/ConeB
[LOG 23:36:09.682] Load(Model): Squad/Parts/Aero/cones/NCS
[LOG 23:36:09.695] Load(Model): Squad/Parts/Aero/cones/TailA
[LOG 23:36:09.708] Load(Model): Squad/Parts/Aero/cones/TailB
[LOG 23:36:09.724] Load(Model): Squad/Parts/Aero/cones/TinyCone
[LOG 23:36:09.739] Load(Model): Squad/Parts/Aero/fairings/AutoTruss
[LOG 23:36:09.757] Load(Model): Squad/Parts/Aero/fairings/fairingSize1
[LOG 23:36:09.770] Load(Model): Squad/Parts/Aero/fairings/fairingSize2
[LOG 23:36:09.786] Load(Model): Squad/Parts/Aero/fairings/fairingSize3
[LOG 23:36:09.799] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield0
[LOG 23:36:09.813] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield1
[LOG 23:36:09.831] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield2
[LOG 23:36:09.845] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield3
[LOG 23:36:09.859] Load(Model): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 23:36:09.885] Load(Model): Squad/Parts/Aero/intakeRadialLong/IntakeRadial
[LOG 23:36:09.897] Load(Model): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 23:36:09.913] Load(Model): Squad/Parts/Aero/protectiveRocketNoseMk7/model
[LOG 23:36:09.928] Load(Model): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 23:36:09.940] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleDeltaWing
[LOG 23:36:09.957] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonA
[LOG 23:36:09.970] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonB
[LOG 23:36:09.987] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleRudder
[LOG 23:36:10.002] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleStrake
[LOG 23:36:10.015] Load(Model): Squad/Parts/Aero/wingletAV-R8/model
[LOG 23:36:10.033] Load(Model): Squad/Parts/Aero/wingletAV-T1/model
[LOG 23:36:10.047] Load(Model): Squad/Parts/Aero/wingletDeltaDeluxe/model
[LOG 23:36:10.062] Load(Model): Squad/Parts/Aero/wings/connector1
[LOG 23:36:10.078] Load(Model): Squad/Parts/Aero/wings/connector2
[LOG 23:36:10.092] Load(Model): Squad/Parts/Aero/wings/connector3
[LOG 23:36:10.106] Load(Model): Squad/Parts/Aero/wings/connector4
[LOG 23:36:10.120] Load(Model): Squad/Parts/Aero/wings/connector5
[LOG 23:36:10.137] Load(Model): Squad/Parts/Aero/wings/delta
[LOG 23:36:10.151] Load(Model): Squad/Parts/Aero/wings/delta_small
[LOG 23:36:10.164] Load(Model): Squad/Parts/Aero/wings/elevon1
[LOG 23:36:10.178] Load(Model): Squad/Parts/Aero/wings/elevon2
[LOG 23:36:10.195] Load(Model): Squad/Parts/Aero/wings/elevon3
[LOG 23:36:10.207] Load(Model): Squad/Parts/Aero/wings/elevon4
[LOG 23:36:10.221] Load(Model): Squad/Parts/Aero/wings/elevon5
[LOG 23:36:10.238] Load(Model): Squad/Parts/Aero/wings/strake
[LOG 23:36:10.251] Load(Model): Squad/Parts/Aero/wings/structural1
[LOG 23:36:10.266] Load(Model): Squad/Parts/Aero/wings/structural2
[LOG 23:36:10.279] Load(Model): Squad/Parts/Aero/wings/structural3
[LOG 23:36:10.294] Load(Model): Squad/Parts/Aero/wings/structural4
[LOG 23:36:10.306] Load(Model): Squad/Parts/Aero/wings/swept1
[LOG 23:36:10.320] Load(Model): Squad/Parts/Aero/wings/swept2
[LOG 23:36:10.337] Load(Model): Squad/Parts/Command/advancedSasModuleLarge/model
[LOG 23:36:10.356] Load(Model): Squad/Parts/Command/cupola/model
[LOG 23:36:10.375] Load(Model): Squad/Parts/Command/externalCommandSeat/model
[LOG 23:36:10.398] Load(Model): Squad/Parts/Command/hitchhikerStorageContainer/model
[LOG 23:36:10.414] Load(Model): Squad/Parts/Command/inlineAdvancedStabilizer/model
[LOG 23:36:10.430] Load(Model): Squad/Parts/Command/inlineReactionWheel/model
[LOG 23:36:10.444] Load(Model): Squad/Parts/Command/Mk1-2Pod/model
[LOG 23:36:10.458] Load(Model): Squad/Parts/Command/mk1Cockpits/Cabin
[LOG 23:36:10.473] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitInline
[LOG 23:36:10.488] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitStandard
[LOG 23:36:10.505] Load(Model): Squad/Parts/Command/mk1LanderCan/model
[LOG 23:36:10.521] Load(Model): Squad/Parts/Command/mk1pod/model
[LOG 23:36:10.534] Load(Model): Squad/Parts/Command/mk2CockpitInline/model
[LOG 23:36:10.548] Load(Model): Squad/Parts/Command/mk2CockpitStandard/model
[LOG 23:36:10.565] Load(Model): Squad/Parts/Command/mk2DroneCore/model
[LOG 23:36:10.578] Load(Model): Squad/Parts/Command/mk2LanderCan/model
[LOG 23:36:10.596] Load(Model): Squad/Parts/Command/mk3CockpitShuttle/model
[LOG 23:36:10.611] Load(Model): Squad/Parts/Command/probeCoreCube/model
[LOG 23:36:10.622] Load(Model): Squad/Parts/Command/probeCoreHex/model
[LOG 23:36:10.637] Load(Model): Squad/Parts/Command/probeCoreOcto/model
[LOG 23:36:10.653] Load(Model): Squad/Parts/Command/probeCoreOcto2/model
[LOG 23:36:10.665] Load(Model): Squad/Parts/Command/probeRoverBody/model
[LOG 23:36:10.678] Load(Model): Squad/Parts/Command/probeStackLarge/model
[LOG 23:36:10.697] Load(Model): Squad/Parts/Command/probeStackSmall/model
[LOG 23:36:10.710] Load(Model): Squad/Parts/Command/probeStackSphere/model
[LOG 23:36:10.723] Load(Model): Squad/Parts/CompoundParts/fuelLine/model
[LOG 23:36:10.740] Load(Model): Squad/Parts/CompoundParts/strutConnector/model
[LOG 23:36:10.754] Load(Model): Squad/Parts/Electrical/1x6ShroudSolarPanels/model
[LOG 23:36:10.773] Load(Model): Squad/Parts/Electrical/1x6SolarPanels/model
[LOG 23:36:10.786] Load(Model): Squad/Parts/Electrical/3x2ShroudSolarPanels/model
[LOG 23:36:10.800] Load(Model): Squad/Parts/Electrical/3x2SolarPanels/model
[LOG 23:36:10.818] Load(Model): Squad/Parts/Electrical/gigantorXlSolarArray/model
[LOG 23:36:10.830] Load(Model): Squad/Parts/Electrical/radialFlatSolarPanel/model
[LOG 23:36:10.847] Load(Model): Squad/Parts/Electrical/RTG/model
[LOG 23:36:10.862] Load(Model): Squad/Parts/Electrical/z-100Battery/model
[LOG 23:36:10.877] Load(Model): Squad/Parts/Electrical/z-1kBattery/model
[LOG 23:36:10.892] Load(Model): Squad/Parts/Electrical/z-200Battery/model
[LOG 23:36:10.907] Load(Model): Squad/Parts/Electrical/z-400Battery/model
[LOG 23:36:10.920] Load(Model): Squad/Parts/Electrical/z-4kBattery/model
[LOG 23:36:10.948] Load(Model): Squad/Parts/Engine/ionEngine/model
[LOG 23:36:10.962] Load(Model): Squad/Parts/Engine/jetEngines/turbineInside
[LOG 23:36:10.979] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize1
[LOG 23:36:10.994] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize2
[LOG 23:36:11.013] Load(Model): Squad/Parts/Engine/jetEngines/turboJet
[LOG 23:36:11.027] Load(Model): Squad/Parts/Engine/jetEngines/turboRamJet
[LOG 23:36:11.042] Load(Model): Squad/Parts/Engine/liquidEngine24-77/model
[LOG 23:36:11.057] Load(Model): Squad/Parts/Engine/liquidEngine48-7S/model
[LOG 23:36:11.072] Load(Model): Squad/Parts/Engine/liquidEngineAerospike/AeroSpike
[LOG 23:36:11.086] Load(Model): Squad/Parts/Engine/liquidEngineLV-1/model
[LOG 23:36:11.102] Load(Model): Squad/Parts/Engine/liquidEngineLV-1R/model
[LOG 23:36:11.115] Load(Model): Squad/Parts/Engine/liquidEngineLV-909/model
[LOG 23:36:11.131] Load(Model): Squad/Parts/Engine/liquidEngineLV-N/model
[LOG 23:36:11.150] Load(Model): Squad/Parts/Engine/liquidEngineLV-T30/model
[LOG 23:36:11.165] Load(Model): Squad/Parts/Engine/liquidEngineLV-T45/model
[LOG 23:36:11.183] Load(Model): Squad/Parts/Engine/liquidEngineMainsail/model
[LOG 23:36:11.199] Load(Model): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 23:36:11.212] Load(Model): Squad/Parts/Engine/liquidEnginePoodle/model
[LOG 23:36:11.230] Load(Model): Squad/Parts/Engine/liquidEngineSkipper/model
[LOG 23:36:11.246] Load(Model): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 23:36:11.261] Load(Model): Squad/Parts/Engine/MassiveSRB/MassiveSRB
[LOG 23:36:11.276] Load(Model): Squad/Parts/Engine/miniJet/SmallJet
[LOG 23:36:11.290] Load(Model): Squad/Parts/Engine/OMSEngine/NewModel
[LOG 23:36:11.302] Load(Model): Squad/Parts/Engine/rapierEngine/rapier
[LOG 23:36:11.324] Load(Model): Squad/Parts/Engine/Size2LFB/Size2LFB
[LOG 23:36:11.341] Load(Model): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngine
[LOG 23:36:11.358] Load(Model): Squad/Parts/Engine/Size3EngineCluster/Size3EngineCluster
[LOG 23:36:11.379] Load(Model): Squad/Parts/Engine/solidBoosterBACC/model
[LOG 23:36:11.391] Load(Model): Squad/Parts/Engine/solidBoosterRT-10/model
[LOG 23:36:11.409] Load(Model): Squad/Parts/Engine/solidBoosterRT-5/SRB_RT5
[LOG 23:36:11.424] Load(Model): Squad/Parts/Engine/solidBoosterSep/model
[LOG 23:36:11.438] Load(Model): Squad/Parts/Engine/vernorEngine/NewModel
[LOG 23:36:11.455] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2
[LOG 23:36:11.468] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2
[LOG 23:36:11.484] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant
[LOG 23:36:11.497] Load(Model): Squad/Parts/FuelTank/adapterTanks/ShuttleAdapter
[LOG 23:36:11.512] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Mk2
[LOG 23:36:11.529] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1
[LOG 23:36:11.542] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant
[LOG 23:36:11.560] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size3-Mk3
[LOG 23:36:11.573] Load(Model): Squad/Parts/FuelTank/fuelTankJumbo-64/model
[LOG 23:36:11.588] Load(Model): Squad/Parts/FuelTank/fuelTankOscarB/model
[LOG 23:36:11.604] Load(Model): Squad/Parts/FuelTank/fuelTankT100/model
[LOG 23:36:11.617] Load(Model): Squad/Parts/FuelTank/fuelTankT200/model
[LOG 23:36:11.630] Load(Model): Squad/Parts/FuelTank/fuelTankT400/model
[LOG 23:36:11.648] Load(Model): Squad/Parts/FuelTank/fuelTankT800/model
[LOG 23:36:11.661] Load(Model): Squad/Parts/FuelTank/fuelTankToroidal/model
[LOG 23:36:11.678] Load(Model): Squad/Parts/FuelTank/fuelTankX200-16/model
[LOG 23:36:11.694] Load(Model): Squad/Parts/FuelTank/fuelTankX200-32/model
[LOG 23:36:11.708] Load(Model): Squad/Parts/FuelTank/fuelTankX200-8/model
[LOG 23:36:11.721] Load(Model): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 23:36:11.737] Load(Model): Squad/Parts/FuelTank/mk2Adapters/bicoupler
[LOG 23:36:11.752] Load(Model): Squad/Parts/FuelTank/mk2Adapters/long
[LOG 23:36:11.764] Load(Model): Squad/Parts/FuelTank/mk2Adapters/standard
[LOG 23:36:11.781] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLFO
[LOG 23:36:11.794] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLiquid
[LOG 23:36:11.812] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLFO
[LOG 23:36:11.826] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLiquid
[LOG 23:36:11.845] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortMono
[LOG 23:36:11.859] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/CREW
[LOG 23:36:11.874] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_100
[LOG 23:36:11.890] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_25
[LOG 23:36:11.903] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_50
[LOG 23:36:11.917] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_100
[LOG 23:36:11.935] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_25
[LOG 23:36:11.948] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_50
[LOG 23:36:11.961] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/MONO
[LOG 23:36:11.979] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR1/model
[LOG 23:36:11.993] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR10/model
[LOG 23:36:12.007] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR25/model
[LOG 23:36:12.025] Load(Model): Squad/Parts/FuelTank/RCSTankRadial/model
[LOG 23:36:12.037] Load(Model): Squad/Parts/FuelTank/RCStankRadialLong/model
[LOG 23:36:12.054] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3LargeTank
[LOG 23:36:12.070] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3MediumTank
[LOG 23:36:12.083] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3SmallTank
[LOG 23:36:12.101] Load(Model): Squad/Parts/FuelTank/xenonTank/model
[LOG 23:36:12.113] Load(Model): Squad/Parts/FuelTank/xenonTankLarge/model
[LOG 23:36:12.129] Load(Model): Squad/Parts/FuelTank/xenonTankRadial/model
[LOG 23:36:12.145] Load(Model): Squad/Parts/Misc/AsteroidDay/HECS2
[LOG 23:36:12.157] Load(Model): Squad/Parts/Misc/AsteroidDay/HighGainAntenna
[LOG 23:36:12.175] Load(Model): Squad/Parts/Misc/AsteroidDay/LgRadialSolar
[LOG 23:36:12.189] Load(Model): Squad/Parts/Misc/PotatoRoid/Cube
[LOG 23:36:12.201] Load(Model): Squad/Parts/Resources/FuelCell/FuelCell
[LOG 23:36:12.216] Load(Model): Squad/Parts/Resources/FuelCell/FuelCellArray
[LOG 23:36:12.251] Load(Model): Squad/Parts/Resources/ISRU/ISRU
[LOG 23:36:12.269] Load(Model): Squad/Parts/Resources/LargeTank/LargeTank
[LOG 23:36:12.282] Load(Model): Squad/Parts/Resources/MiniDrill/MiniDrill
[LOG 23:36:12.300] Load(Model): Squad/Parts/Resources/MiniISRU/MiniISRU
[LOG 23:36:12.314] Load(Model): Squad/Parts/Resources/OrbitalScanner/OrbitalScanner
[LOG 23:36:12.331] Load(Model): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 23:36:12.353] Load(Model): Squad/Parts/Resources/RadialTank/RadialOreTank
[LOG 23:36:12.365] Load(Model): Squad/Parts/Resources/SmallTank/SmallTank
[LOG 23:36:12.382] Load(Model): Squad/Parts/Resources/SurfaceScanner/SurfaceScanner
[LOG 23:36:12.395] Load(Model): Squad/Parts/Resources/SurveyScanner/SurveyScanner
[LOG 23:36:12.414] Load(Model): Squad/Parts/Science/AtmosphereSensor/model
[LOG 23:36:12.426] Load(Model): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 23:36:12.440] Load(Model): Squad/Parts/Science/LargeCrewedLab/large_crewed_lab
[LOG 23:36:12.467] Load(Model): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 23:36:12.483] Load(Model): Squad/Parts/Science/ScienceBox/ScienceBox
[LOG 23:36:12.494] Load(Model): Squad/Parts/Science/sensorAccelerometer/model
[LOG 23:36:12.509] Load(Model): Squad/Parts/Science/sensorBarometer/model
[LOG 23:36:12.524] Load(Model): Squad/Parts/Science/sensorGravimeter/model
[LOG 23:36:12.638] Load(Model): Squad/Parts/Science/sensorThermometer/model
[LOG 23:36:12.653] Load(Model): Squad/Parts/Structural/adapterLargeSmallBi/model
[LOG 23:36:12.671] Load(Model): Squad/Parts/Structural/adapterLargeSmallQuad/model
[LOG 23:36:12.686] Load(Model): Squad/Parts/Structural/adapterLargeSmallTri/model
[LOG 23:36:12.699] Load(Model): Squad/Parts/Structural/adapterSmallMiniShort/model
[LOG 23:36:12.717] Load(Model): Squad/Parts/Structural/adapterSmallMiniTall/model
[LOG 23:36:12.732] Load(Model): Squad/Parts/Structural/mk1Parts/Fuselage
[LOG 23:36:12.749] Load(Model): Squad/Parts/Structural/mk1Parts/IntakeFuselage
[LOG 23:36:12.763] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle1
[LOG 23:36:12.776] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle2
[LOG 23:36:12.794] Load(Model): Squad/Parts/Structural/mk1Parts/Structural
[LOG 23:36:12.807] Load(Model): Squad/Parts/Structural/mk1Parts/StructuralHollow
[LOG 23:36:12.821] Load(Model): Squad/Parts/Structural/Size3Decoupler/size3Decoupler
[LOG 23:36:12.841] Load(Model): Squad/Parts/Structural/Size3To2Adapter/Size3Adapter
[LOG 23:36:12.855] Load(Model): Squad/Parts/Structural/stationHub/model
[LOG 23:36:12.873] Load(Model): Squad/Parts/Structural/structuralIBeam200/model
[LOG 23:36:12.885] Load(Model): Squad/Parts/Structural/structuralIBeam200Pocket/model
[LOG 23:36:12.898] Load(Model): Squad/Parts/Structural/structuralIBeam650/model
[LOG 23:36:12.917] Load(Model): Squad/Parts/Structural/structuralMicronode/model
[LOG 23:36:12.930] Load(Model): Squad/Parts/Structural/structuralPanel1x1/model
[LOG 23:36:12.949] Load(Model): Squad/Parts/Structural/structuralPanel2x2/model
[LOG 23:36:12.964] Load(Model): Squad/Parts/Structural/structuralPylons/PylonBig
[LOG 23:36:12.978] Load(Model): Squad/Parts/Structural/structuralPylons/PylonSmall
[LOG 23:36:12.997] Load(Model): Squad/Parts/Structural/strutCubicOcto/model
[LOG 23:36:13.010] Load(Model): Squad/Parts/Structural/strutOcto/model
[LOG 23:36:13.028] Load(Model): Squad/Parts/Structural/trussGirderAdapter/model
[LOG 23:36:13.041] Load(Model): Squad/Parts/Structural/trussGirderL/model
[LOG 23:36:13.054] Load(Model): Squad/Parts/Structural/trussGirderXL/model
[LOG 23:36:13.073] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge
[LOG 23:36:13.109] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadMed
[LOG 23:36:13.129] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall
[LOG 23:36:13.150] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelEdge
[LOG 23:36:13.162] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelLg
[LOG 23:36:13.179] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelSm
[LOG 23:36:13.192] Load(Model): Squad/Parts/Utility/commDish88-88/model
[LOG 23:36:13.232] Load(Model): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 23:36:13.249] Load(Model): Squad/Parts/Utility/commsDish16/model
[LOG 23:36:13.261] Load(Model): Squad/Parts/Utility/decouplerRadialHDM/model
[LOG 23:36:13.277] Load(Model): Squad/Parts/Utility/decouplerRadialTT-38K/model
[LOG 23:36:13.289] Load(Model): Squad/Parts/Utility/decouplerRadialTT-70/model
[LOG 23:36:13.307] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-18D/model
[LOG 23:36:13.323] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-2C/model
[LOG 23:36:13.337] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-XL/model
[LOG 23:36:13.355] Load(Model): Squad/Parts/Utility/decouplerStack2m/model
[LOG 23:36:13.369] Load(Model): Squad/Parts/Utility/decouplerStackTR-18A/model
[LOG 23:36:13.386] Load(Model): Squad/Parts/Utility/decouplerStackTR-2V/model
[LOG 23:36:13.399] Load(Model): Squad/Parts/Utility/DirectAntennas/HGAntenna
[LOG 23:36:13.417] Load(Model): Squad/Parts/Utility/DirectAntennas/SurfAntenna
[LOG 23:36:13.428] Load(Model): Squad/Parts/Utility/dockingPort/model
[LOG 23:36:13.446] Load(Model): Squad/Parts/Utility/dockingPortInline/model
[LOG 23:36:13.462] Load(Model): Squad/Parts/Utility/dockingPortJr/model
[LOG 23:36:13.476] Load(Model): Squad/Parts/Utility/dockingPortShielded/model
[LOG 23:36:13.493] Load(Model): Squad/Parts/Utility/dockingPortSr/model
[LOG 23:36:13.507] Load(Model): Squad/Parts/Utility/GrapplingDevice/GrapplingArm
[LOG 23:36:13.552] Load(Model): Squad/Parts/Utility/ladderRadial/model
[LOG 23:36:13.564] Load(Model): Squad/Parts/Utility/ladderTelescopic/model
[LOG 23:36:13.584] Load(Model): Squad/Parts/Utility/ladderTelescopicBay/model
[LOG 23:36:13.604] Load(Model): Squad/Parts/Utility/landingLegLT-1/model
[LOG 23:36:13.617] Load(Model): Squad/Parts/Utility/landingLegLT-2/model
[LOG 23:36:13.634] Load(Model): Squad/Parts/Utility/landingLegLT-5/model
[WRN 23:36:13.647] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:13.652] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:13.659] Load(Model): Squad/Parts/Utility/largeAdapter/model
[LOG 23:36:13.675] Load(Model): Squad/Parts/Utility/largeAdapterShort/model
[LOG 23:36:13.688] Load(Model): Squad/Parts/Utility/launchClamp1/model
[LOG 23:36:13.702] Load(Model): Squad/Parts/Utility/launchEscapeSystem/LaunchEscapeSystem
[LOG 23:36:13.724] Load(Model): Squad/Parts/Utility/linearRCS/model
[LOG 23:36:13.735] Load(Model): Squad/Parts/Utility/mk2CargoBay/BayLarge
[LOG 23:36:13.755] Load(Model): Squad/Parts/Utility/mk2CargoBay/BaySmall
[LOG 23:36:13.769] Load(Model): Squad/Parts/Utility/mk2CrewCabin/model
[LOG 23:36:13.782] Load(Model): Squad/Parts/Utility/mk2DockingPort/model
[LOG 23:36:13.802] Load(Model): Squad/Parts/Utility/mk3CargoBay/long
[LOG 23:36:13.819] Load(Model): Squad/Parts/Utility/mk3CargoBay/medium
[LOG 23:36:13.834] Load(Model): Squad/Parts/Utility/mk3CargoBay/ramp
[LOG 23:36:13.858] Load(Model): Squad/Parts/Utility/mk3CargoBay/short
[LOG 23:36:13.873] Load(Model): Squad/Parts/Utility/parachuteMk1/model
[LOG 23:36:13.892] Load(Model): Squad/Parts/Utility/parachuteMk12-R/model
[LOG 23:36:13.905] Load(Model): Squad/Parts/Utility/parachuteMk16-XL/model
[LOG 23:36:13.923] Load(Model): Squad/Parts/Utility/parachuteMk2-R/model
[LOG 23:36:13.936] Load(Model): Squad/Parts/Utility/parachuteMk25/model
[LOG 23:36:13.955] Load(Model): Squad/Parts/Utility/radialAttachmentPoint/model
[LOG 23:36:13.967] Load(Model): Squad/Parts/Utility/rcsBlockRV-105/model
[LOG 23:36:13.981] Load(Model): Squad/Parts/Utility/RelayAntennas/HGAntenna
[LOG 23:36:14.002] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-100
[LOG 23:36:14.015] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-5
[LOG 23:36:14.040] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-50
[LOG 23:36:14.053] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_125
[LOG 23:36:14.078] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_250
[LOG 23:36:14.099] Load(Model): Squad/Parts/Utility/spotLightMk1/model
[LOG 23:36:14.111] Load(Model): Squad/Parts/Utility/spotLightMk2/model
[LOG 23:36:14.129] Load(Model): Squad/Parts/Utility/stackBiCoupler/model
[LOG 23:36:14.140] Load(Model): Squad/Parts/Utility/stackQuadCoupler/model
[LOG 23:36:14.159] Load(Model): Squad/Parts/Utility/stackTriCoupler/model
[LOG 23:36:14.172] Load(Model): Squad/Parts/Wheel/LandingGear/GearExtraLarge
[WRN 23:36:14.193] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.198] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.205] Load(Model): Squad/Parts/Wheel/LandingGear/GearFixed
[WRN 23:36:14.220] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.227] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.232] Load(Model): Squad/Parts/Wheel/LandingGear/GearFree
[WRN 23:36:14.249] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.254] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.264] Load(Model): Squad/Parts/Wheel/LandingGear/GearLarge
[WRN 23:36:14.276] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.284] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.298] Load(Model): Squad/Parts/Wheel/LandingGear/GearMedium
[WRN 23:36:14.312] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.317] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.323] Load(Model): Squad/Parts/Wheel/LandingGear/GearSmall
[WRN 23:36:14.340] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.344] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.357] Load(Model): Squad/Parts/Wheel/roverWheelM1/model
[WRN 23:36:14.370] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.375] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.384] Load(Model): Squad/Parts/Wheel/roverWheelS2/model
[WRN 23:36:14.398] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.405] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.414] Load(Model): Squad/Parts/Wheel/roverWheelTR-2L/model
[WRN 23:36:14.432] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.436] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.442] Load(Model): Squad/Parts/Wheel/roverWheelXL3/model
[WRN 23:36:14.469] WheelCollider requires an attached Rigidbody to function.
[WRN 23:36:14.474] WheelCollider requires an attached Rigidbody to function.
[LOG 23:36:14.479] Load(Model): Squad/Props/AltimeterThreeHands/model
[LOG 23:36:14.495] Load(Model): Squad/Props/AtmosphereDepth/model
[LOG 23:36:14.521] Load(Model): Squad/Props/AxisIndicator/model
[LOG 23:36:14.534] Load(Model): Squad/Props/buttonsGeneric/circularButton
[LOG 23:36:14.548] Load(Model): Squad/Props/buttonsGeneric/clusterButtons
[LOG 23:36:14.562] Load(Model): Squad/Props/buttonsGeneric/clusterButtons2
[LOG 23:36:14.579] Load(Model): Squad/Props/buttonsGeneric/clusterKnob
[LOG 23:36:14.595] Load(Model): Squad/Props/buttonsGeneric/clusterKnob2
[LOG 23:36:14.608] Load(Model): Squad/Props/buttonsGeneric/clusterMixed
[LOG 23:36:14.625] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches01
[LOG 23:36:14.645] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches02
[LOG 23:36:14.659] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches03
[LOG 23:36:14.677] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches04
[LOG 23:36:14.690] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches05
[LOG 23:36:14.704] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches06
[LOG 23:36:14.722] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches07
[LOG 23:36:14.735] Load(Model): Squad/Props/buttonsGeneric/directionalKnob
[LOG 23:36:14.751] Load(Model): Squad/Props/buttonsGeneric/directionalKnob2
[LOG 23:36:14.766] Load(Model): Squad/Props/buttonsGeneric/pullSwitch
[LOG 23:36:14.779] Load(Model): Squad/Props/buttonsGeneric/squareButton
[LOG 23:36:14.795] Load(Model): Squad/Props/buttonsGeneric/standingSwitch
[LOG 23:36:14.809] Load(Model): Squad/Props/buttonsGeneric/switch
[LOG 23:36:14.822] Load(Model): Squad/Props/buttonsGeneric/switchWithGuards
[LOG 23:36:14.841] Load(Model): Squad/Props/ButtonSquare/model
[LOG 23:36:14.855] Load(Model): Squad/Props/circularButton/model
[LOG 23:36:14.868] Load(Model): Squad/Props/Compass/model
[LOG 23:36:14.881] Load(Model): Squad/Props/directionalKnob/model
[LOG 23:36:14.898] Load(Model): Squad/Props/directionalKnob2/model
[LOG 23:36:14.911] Load(Model): Squad/Props/IndicatorPanel/model
[LOG 23:36:14.925] Load(Model): Squad/Props/IVANavBall/model
[LOG 23:36:14.941] Load(Model): Squad/Props/ledPanelSpeed/model
[LOG 23:36:14.955] Load(Model): Squad/Props/Monitor/MonitorDockingMode
[LOG 23:36:14.968] Load(Model): Squad/Props/NavBall/model
[LOG 23:36:14.983] Load(Model): Squad/Props/PropsGeneric/Button_DockingMode
[LOG 23:36:14.998] Load(Model): Squad/Props/PropsGeneric/CargoBagA
[LOG 23:36:15.013] Load(Model): Squad/Props/PropsGeneric/CargoBagB
[LOG 23:36:15.024] Load(Model): Squad/Props/PropsGeneric/CargoBagC
[LOG 23:36:15.041] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane
[LOG 23:36:15.056] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Curve90
[LOG 23:36:15.069] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Frame
[LOG 23:36:15.086] Load(Model): Squad/Props/PropsGeneric/Seat_Passenger
[LOG 23:36:15.099] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot
[LOG 23:36:15.113] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot_Helmet
[LOG 23:36:15.129] Load(Model): Squad/Props/PropsGeneric/SideStick
[LOG 23:36:15.140] Load(Model): Squad/Props/pullSwitch/model
[LOG 23:36:15.153] Load(Model): Squad/Props/radarAltitude/model
[LOG 23:36:15.166] Load(Model): Squad/Props/squareButton/model
[LOG 23:36:15.183] Load(Model): Squad/Props/standingSwitch/model
[LOG 23:36:15.197] Load(Model): Squad/Props/switch/model
[LOG 23:36:15.210] Load(Model): Squad/Props/switchGuard/model
[LOG 23:36:15.223] Load(Model): Squad/Props/switchWithGuards/model
[LOG 23:36:15.242] Load(Model): Squad/Props/throttle/model
[LOG 23:36:15.254] Load(Model): Squad/Props/VSI/model
[LOG 23:36:15.266] Load(Model): Squad/Spaces/crewCabinInternals/model
[LOG 23:36:15.297] Load(Model): Squad/Spaces/cupolaInternal/model
[LOG 23:36:15.316] Load(Model): Squad/Spaces/GenericSpace1/model
[LOG 23:36:15.340] Load(Model): Squad/Spaces/GenericSpace3/model
[LOG 23:36:15.368] Load(Model): Squad/Spaces/landerCabinInternals/model
[LOG 23:36:15.389] Load(Model): Squad/Spaces/landerCabinSmallInternal/model
[LOG 23:36:15.407] Load(Model): Squad/Spaces/LargeCrewedLabInternals/Large_Crewed_lab_Int
[LOG 23:36:15.441] Load(Model): Squad/Spaces/mk1CabinInternal/mk1cabin
[LOG 23:36:15.458] Load(Model): Squad/Spaces/mk1CockpitInternal/Mk1StandardIVA
[LOG 23:36:15.473] Load(Model): Squad/Spaces/mk1InlineInternal/Mk1InlineIVA
[LOG 23:36:15.493] Load(Model): Squad/Spaces/mk1PodCockpit/model
[LOG 23:36:15.513] Load(Model): Squad/Spaces/mk2CockpitStandardInternal/model
[LOG 23:36:15.535] Load(Model): Squad/Spaces/Mk2CrewCabinInternal/MK2_CrewCab_Int
[LOG 23:36:15.564] Load(Model): Squad/Spaces/mk2InlineInternal/mk2InlineIVA
[LOG 23:36:15.595] Load(Model): Squad/Spaces/MK3CockpitInternal/MK3_Cockpit_Int
[LOG 23:36:15.615] Load(Model): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 23:36:15.676] Load(Model): Squad/Spaces/OverlayMasks/CupolaMask
[LOG 23:36:15.687] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerBorder
[LOG 23:36:15.703] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerMask
[LOG 23:36:15.715] Load(Model): Squad/Spaces/OverlayMasks/LargeLabBorder
[LOG 23:36:15.733] Load(Model): Squad/Spaces/OverlayMasks/LargeLabMask
[LOG 23:36:15.745] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinBorder
[LOG 23:36:15.758] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinMask
[LOG 23:36:15.776] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask
[LOG 23:36:15.788] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask2
[LOG 23:36:15.803] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder2
[LOG 23:36:15.821] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder3
[LOG 23:36:15.834] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask
[LOG 23:36:15.848] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask2
[LOG 23:36:15.866] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask3
[LOG 23:36:15.879] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinBorder
[LOG 23:36:15.896] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinMask
[LOG 23:36:15.910] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineBorder
[LOG 23:36:15.924] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineMask
[LOG 23:36:15.942] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardBorder
[LOG 23:36:15.954] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardMask
[LOG 23:36:15.968] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinBorder
[LOG 23:36:15.983] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask
[LOG 23:36:15.995] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask2
[LOG 23:36:16.010] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleBorder
[LOG 23:36:16.027] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleMask
[LOG 23:36:16.040] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderBorder
[LOG 23:36:16.053] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderMask
[LOG 23:36:16.071] Load(Model): Squad/Spaces/OverlayMasks/Size1PodBorder
[LOG 23:36:16.084] Load(Model): Squad/Spaces/OverlayMasks/Size1PodMask
[LOG 23:36:16.098] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderBorder
[LOG 23:36:16.116] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderMask
[LOG 23:36:16.129] Load(Model): Squad/Spaces/OverlayMasks/Size2PodBorder
[LOG 23:36:16.143] Load(Model): Squad/Spaces/OverlayMasks/Size2PodMask
[LOG 23:36:16.160] Load(Model): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 23:36:16.175] Load(Model): Squad/Spaces/PodCockpit/model
[LOG 23:36:16.211] Loading Asset Bundle Definitions
[LOG 23:36:16.222] AssetLoader: Loading bundle definitions
[LOG 23:36:16.633] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\squadcore.ksp'
[LOG 23:36:16.706] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\squadcorefx.ksp'
[LOG 23:36:16.730] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia.ksp'
[LOG 23:36:16.752] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aeroforces.ksp'
[LOG 23:36:17.153] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraft.ksp'
[LOG 23:36:17.383] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasics.ksp'
[LOG 23:36:17.534] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance.ksp'
[LOG 23:36:17.701] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance2.ksp'
[LOG 23:36:17.898] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscol.ksp'
[LOG 23:36:18.052] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrol.ksp'
[LOG 23:36:18.197] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrolsurfaces.ksp'
[LOG 23:36:18.380] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsdrag.ksp'
[LOG 23:36:18.524] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsengines.ksp'
[LOG 23:36:18.632] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsforces.ksp'
[LOG 23:36:18.798] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicsintakes.ksp'
[LOG 23:36:18.935] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicslandinggear.ksp'
[LOG 23:36:19.073] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_aircraftbasicslift.ksp'
[LOG 23:36:19.299] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_career.ksp'
[LOG 23:36:19.407] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscontracts.ksp'
[LOG 23:36:19.552] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscrew.ksp'
[LOG 23:36:19.634] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicscurrencies.ksp'
[LOG 23:36:19.716] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsexperience.ksp'
[LOG 23:36:19.906] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsfacilities.ksp'
[LOG 23:36:20.036] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicsstrategies.ksp'
[LOG 23:36:20.127] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerbasicstechnology.ksp'
[LOG 23:36:20.301] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ac.ksp'
[LOG 23:36:20.491] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-admin.ksp'
[LOG 23:36:20.676] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ksc.ksp'
[LOG 23:36:20.813] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-mc.ksp'
[LOG 23:36:20.938] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-sciencearchives.ksp'
[LOG 23:36:21.043] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-techtree.ksp'
[LOG 23:36:21.186] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui-ts.ksp'
[LOG 23:36:21.514] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_careerui.ksp'
[LOG 23:36:21.681] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnet.ksp'
[LOG 23:36:21.843] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetbasics.ksp'
[LOG 23:36:21.867] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetbuildingeffectivenetworks.ksp'
[LOG 23:36:21.894] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcalculatingrange.ksp'
[LOG 23:36:21.919] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrollevels.ksp'
[LOG 23:36:22.125] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrollinks.ksp'
[LOG 23:36:22.148] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetcontrolpoints.ksp'
[LOG 23:36:22.267] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui.ksp'
[LOG 23:36:22.291] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui01.ksp'
[LOG 23:36:22.313] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetgui02.ksp'
[LOG 23:36:22.410] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetrange.ksp'
[LOG 23:36:22.532] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetrelays.ksp'
[LOG 23:36:22.555] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetsciencetransmission.ksp'
[LOG 23:36:22.582] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnetsignalstrength.ksp'
[LOG 23:36:22.716] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_commnettransmission.ksp'
[LOG 23:36:22.971] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-actiongroups.ksp'
[LOG 23:36:23.121] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-applauncher.ksp'
[LOG 23:36:23.262] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-crew.ksp'
[LOG 23:36:23.437] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-engineersreport.ksp'
[LOG 23:36:23.578] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-gizmos.ksp'
[LOG 23:36:23.684] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-infos.ksp'
[LOG 23:36:23.802] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-partdetails.ksp'
[LOG 23:36:23.940] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-parts.ksp'
[LOG 23:36:24.063] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-symmetry.ksp'
[LOG 23:36:24.192] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui-vesseldetails.ksp'
[LOG 23:36:24.480] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_constructionui.ksp'
[LOG 23:36:24.596] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-dockingmode.ksp'
[LOG 23:36:24.681] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-editor.ksp'
[LOG 23:36:24.817] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-editorgizmos.ksp'
[LOG 23:36:24.981] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-eva.ksp'
[LOG 23:36:25.102] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flight.ksp'
[LOG 23:36:25.186] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flightactivities.ksp'
[LOG 23:36:25.315] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-flightdirections.ksp'
[LOG 23:36:25.405] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-general.ksp'
[LOG 23:36:25.489] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mapandtime.ksp'
[LOG 23:36:25.573] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mouseconstruction.ksp'
[LOG 23:36:25.658] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-mouseflight.ksp'
[LOG 23:36:25.780] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls-rcs.ksp'
[LOG 23:36:26.112] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_controls.ksp'
[LOG 23:36:26.259] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_eastereggs.ksp'
[LOG 23:36:26.484] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ac.ksp'
[LOG 23:36:26.704] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-admin.ksp'
[LOG 23:36:26.915] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-context.ksp'
[LOG 23:36:27.204] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ksc.ksp'
[LOG 23:36:27.397] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-launchpad.ksp'
[LOG 23:36:27.611] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-mc.ksp'
[LOG 23:36:27.839] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-randd.ksp'
[LOG 23:36:28.030] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-runway.ksp'
[LOG 23:36:28.243] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-sph.ksp'
[LOG 23:36:28.440] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-ts.ksp'
[LOG 23:36:28.645] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_facilities-vab.ksp'
[LOG 23:36:28.748] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-altimeter.ksp'
[LOG 23:36:28.771] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-altimiter.ksp'
[LOG 23:36:28.885] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-applauncher.ksp'
[LOG 23:36:29.021] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-evaactivities.ksp'
[LOG 23:36:29.046] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-mapnodes.ksp'
[LOG 23:36:29.156] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-modecontrol.ksp'
[LOG 23:36:29.280] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-navball.ksp'
[LOG 23:36:29.444] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-portraits.ksp'
[LOG 23:36:29.540] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-staging.ksp'
[LOG 23:36:29.671] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui-timeandaction.ksp'
[LOG 23:36:29.834] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_flightui.ksp'
[LOG 23:36:30.055] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heat.ksp'
[LOG 23:36:30.159] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatactiveradiators.ksp'
[LOG 23:36:30.246] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatcore.ksp'
[LOG 23:36:30.331] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatengines.ksp'
[LOG 23:36:30.428] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatflow.ksp'
[LOG 23:36:30.517] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatpart.ksp'
[LOG 23:36:30.630] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatpassiveradiators.ksp'
[LOG 23:36:30.892] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_heatshields.ksp'
[LOG 23:36:31.171] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnet.ksp'
[LOG 23:36:31.274] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetinterface.ksp'
[LOG 23:36:31.407] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetmodes.ksp'
[LOG 23:36:31.548] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_kerbnetwaypoints.ksp'
[LOG 23:36:31.914] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_locations.ksp'
[LOG 23:36:31.999] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_manual.ksp'
[LOG 23:36:32.086] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-mannodes.ksp'
[LOG 23:36:32.212] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes.ksp'
[LOG 23:36:32.312] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes2.ksp'
[LOG 23:36:32.455] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_mapui.ksp'
[LOG 23:36:32.478] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaladvanced-obertheffect.ksp'
[LOG 23:36:32.610] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-atmosphere.ksp'
[LOG 23:36:32.745] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingbackdown.ksp'
[LOG 23:36:32.891] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingupthere.ksp'
[LOG 23:36:33.041] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-gravityturn.ksp'
[LOG 23:36:33.163] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-orbits.ksp'
[LOG 23:36:33.299] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics-stayingupthere.ksp'
[LOG 23:36:33.442] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalbasics.ksp'
[LOG 23:36:33.564] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-appe.ksp'
[LOG 23:36:33.688] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-dirandinc.ksp'
[LOG 23:36:33.835] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-directions.ksp'
[LOG 23:36:33.967] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-eccentricity.ksp'
[LOG 23:36:33.995] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-efficiency.ksp'
[LOG 23:36:34.132] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitaldefinitions.ksp'
[LOG 23:36:34.250] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-adjustinginclination.ksp'
[LOG 23:36:34.361] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-deltav.ksp'
[LOG 23:36:34.456] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-efficiency.ksp'
[LOG 23:36:34.567] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer.ksp'
[LOG 23:36:34.668] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer2.ksp'
[LOG 23:36:34.787] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-orbittypes.ksp'
[LOG 23:36:34.896] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-radandantirad.ksp'
[LOG 23:36:35.009] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-shapingup.ksp'
[LOG 23:36:35.131] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers.ksp'
[LOG 23:36:35.155] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_orbitalmanuevers-orbittypes.ksp'
[LOG 23:36:35.304] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-dres.ksp'
[LOG 23:36:35.471] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-duna.ksp'
[LOG 23:36:35.619] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-eeloo.ksp'
[LOG 23:36:35.767] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-eve.ksp'
[LOG 23:36:35.909] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-jool.ksp'
[LOG 23:36:36.064] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-kerbin.ksp'
[LOG 23:36:36.087] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-kerbol.ksp'
[LOG 23:36:36.223] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-moho.ksp'
[LOG 23:36:36.375] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-sun.ksp'
[LOG 23:36:36.519] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_planets-system.ksp'
[LOG 23:36:36.668] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-asteroidmining.ksp'
[LOG 23:36:36.695] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-conversionmanagement.ksp'
[LOG 23:36:36.801] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-drilling.ksp'
[LOG 23:36:36.964] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-findingit.ksp'
[LOG 23:36:37.126] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-findingit2.ksp'
[LOG 23:36:37.280] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources-storageandconversion.ksp'
[LOG 23:36:37.467] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_resources.ksp'
[LOG 23:36:37.490] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketforces.ksp'
[LOG 23:36:37.801] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketry.ksp'
[LOG 23:36:37.936] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-fairings.ksp'
[LOG 23:36:38.079] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-girders.ksp'
[LOG 23:36:38.106] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-heat.ksp'
[LOG 23:36:38.131] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-heatshields.ksp'
[LOG 23:36:38.157] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-radiators.ksp'
[LOG 23:36:38.281] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced-struts.ksp'
[LOG 23:36:38.545] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketryadvanced.ksp'
[LOG 23:36:38.759] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasics.ksp'
[LOG 23:36:38.904] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsaero.ksp'
[LOG 23:36:39.018] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicscentered.ksp'
[LOG 23:36:39.151] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicschutes.ksp'
[LOG 23:36:39.175] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicschutesandladders.ksp'
[LOG 23:36:39.333] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicscontrol.ksp'
[LOG 23:36:39.481] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsecrecharging.ksp'
[LOG 23:36:39.591] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsengines.ksp'
[LOG 23:36:39.700] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsforces.ksp'
[LOG 23:36:39.868] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicshatchesandladders.ksp'
[LOG 23:36:40.038] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsresources.ksp'
[LOG 23:36:40.190] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsservicecontainers.ksp'
[LOG 23:36:40.314] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstability.ksp'
[LOG 23:36:40.446] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstabilityassist.ksp'
[LOG 23:36:40.575] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicsstaging.ksp'
[LOG 23:36:40.704] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_rocketrybasicssymmetry.ksp'
[LOG 23:36:40.886] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_science.ksp'
[LOG 23:36:41.052] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencedata.ksp'
[LOG 23:36:41.203] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_scienceexperiments.ksp'
[LOG 23:36:41.357] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencelab.ksp'
[LOG 23:36:41.534] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_sciencetransmitted.ksp'
[LOG 23:36:41.713] AssetLoader: Loaded bundle 'D:\SteamLibrary\steamapps\common\Kerbal Space Program\GameData\Squad\KSPedia\kspedia_spacetravel.ksp'
[LOG 23:36:41.730] AssetLoader: Finished loading. 185 bundle definitions loaded.
[LOG 23:36:41.745] Config(AGENT) Squad/Agencies/Agents/C7 Aerospace Division
[LOG 23:36:41.759] Config(AGENT) Squad/Agencies/Agents/Dinkelstein Kerman's Construction Emporium
[LOG 23:36:41.776] Config(AGENT) Squad/Agencies/Agents/Experimental Engineering Group
[LOG 23:36:41.790] Config(AGENT) Squad/Agencies/Agents/FLOOYD Dynamics Research Labs
[LOG 23:36:41.807] Config(AGENT) Squad/Agencies/Agents/Goliath National Products
[LOG 23:36:41.821] Config(AGENT) Squad/Agencies/Agents/Integrated Integrals
[LOG 23:36:41.837] Config(AGENT) Squad/Agencies/Agents/Ionic Symphonic Protonic Electronics
[LOG 23:36:41.852] Config(AGENT) Squad/Agencies/Agents/Jebediah Kerman's Junkyard and Spacecraft Parts Co
[LOG 23:36:41.870] Config(AGENT) Squad/Agencies/Agents/Kerbal Motion LLC
[LOG 23:36:41.883] Config(AGENT) Squad/Agencies/Agents/Kerbin World-Firsts Record-Keeping Society
[LOG 23:36:41.902] Config(AGENT) Squad/Agencies/Agents/Kerbodyne
[LOG 23:36:41.915] Config(AGENT) Squad/Agencies/Agents/Kerlington Model Rockets and Paper Products Inc
[LOG 23:36:41.930] Config(AGENT) Squad/Agencies/Agents/Maxo Construction Toys
[LOG 23:36:41.944] Config(AGENT) Squad/Agencies/Agents/Moving Parts Experts Group
[LOG 23:36:41.958] Config(AGENT) Squad/Agencies/Agents/O.M.B. Demolition Enterprises
[LOG 23:36:41.974] Config(AGENT) Squad/Agencies/Agents/Periapsis Rocket Supplies Co
[LOG 23:36:41.988] Config(AGENT) Squad/Agencies/Agents/Probodobodyne Inc
[LOG 23:36:42.005] Config(AGENT) Squad/Agencies/Agents/Research & Development Department
[LOG 23:36:42.019] Config(AGENT) Squad/Agencies/Agents/Reaction Systems Ltd
[LOG 23:36:42.033] Config(AGENT) Squad/Agencies/Agents/Rockomax Conglomerate
[LOG 23:36:42.050] Config(AGENT) Squad/Agencies/Agents/Rokea Inc
[LOG 23:36:42.063] Config(AGENT) Squad/Agencies/Agents/Sean's Cannery
[LOG 23:36:42.075] Config(AGENT) Squad/Agencies/Agents/STEADLER Engineering Corps
[LOG 23:36:42.093] Config(AGENT) Squad/Agencies/Agents/StrutCo
[LOG 23:36:42.105] Config(AGENT) Squad/Agencies/Agents/Vac-Co Advanced Suction Systems
[LOG 23:36:42.119] Config(AGENT) Squad/Agencies/Agents/WinterOwl Aircraft Emporium
[LOG 23:36:42.136] Config(AGENT) Squad/Agencies/Agents/Zaltonic Electronics
[LOG 23:36:42.150] Config(Contracts) Squad/Contracts/Contracts/Contracts
[LOG 23:36:42.166] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Pilot
[LOG 23:36:42.180] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Engineer
[LOG 23:36:42.194] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Scientist
[LOG 23:36:42.210] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Tourist
[LOG 23:36:42.224] Config(PART) Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone
[LOG 23:36:42.242] Config(PART) Squad/Parts/Aero/airbrake/Airbrake/airbrake1
[LOG 23:36:42.255] Config(PART) Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop
[LOG 23:36:42.271] Config(PART) Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf
[LOG 23:36:42.286] Config(PART) Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing
[LOG 23:36:42.303] Config(PART) Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin
[LOG 23:36:42.317] Config(PART) Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard
[LOG 23:36:42.331] Config(PART) Squad/Parts/Aero/airplaneFins/standardCanard/CanardController
[LOG 23:36:42.349] Config(PART) Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing
[LOG 23:36:42.363] Config(PART) Squad/Parts/Aero/airplaneFins/tailfin/tailfin
[LOG 23:36:42.380] Config(PART) Squad/Parts/Aero/basicFin/basicFin/basicFin
[LOG 23:36:42.394] Config(PART) Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake
[LOG 23:36:42.411] Config(PART) Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake
[LOG 23:36:42.426] Config(PART) Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone
[LOG 23:36:42.443] Config(PART) Squad/Parts/Aero/cones/ConeA/pointyNoseConeA
[LOG 23:36:42.457] Config(PART) Squad/Parts/Aero/cones/ConeB/pointyNoseConeB
[LOG 23:36:42.470] Config(PART) Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter
[LOG 23:36:42.488] Config(PART) Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone
[LOG 23:36:42.502] Config(PART) Squad/Parts/Aero/cones/tailConnectorA/airplaneTail
[LOG 23:36:42.519] Config(PART) Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB
[LOG 23:36:42.533] Config(PART) Squad/Parts/Aero/fairings/fairingSize1/fairingSize1
[LOG 23:36:42.550] Config(PART) Squad/Parts/Aero/fairings/fairingSize2/fairingSize2
[LOG 23:36:42.565] Config(PART) Squad/Parts/Aero/fairings/fairingSize3/fairingSize3
[LOG 23:36:42.579] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0
[LOG 23:36:42.596] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1
[LOG 23:36:42.608] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2
[LOG 23:36:42.625] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3
[LOG 23:36:42.639] Config(PART) Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield
[LOG 23:36:42.657] Config(PART) Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong
[LOG 23:36:42.672] Config(PART) Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake
[LOG 23:36:42.689] Config(PART) Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone
[LOG 23:36:42.704] Config(PART) Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake
[LOG 23:36:42.722] Config(PART) Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta
[LOG 23:36:42.736] Config(PART) Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1
[LOG 23:36:42.753] Config(PART) Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2
[LOG 23:36:42.768] Config(PART) Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder
[LOG 23:36:42.785] Config(PART) Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake
[LOG 23:36:42.799] Config(PART) Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet
[LOG 23:36:42.816] Config(PART) Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet
[LOG 23:36:42.830] Config(PART) Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3
[LOG 23:36:42.845] Config(PART) Squad/Parts/Aero/wings/connector1/wingConnector
[LOG 23:36:42.862] Config(PART) Squad/Parts/Aero/wings/connector2/wingConnector2
[LOG 23:36:42.876] Config(PART) Squad/Parts/Aero/wings/connector3/wingConnector3
[LOG 23:36:42.893] Config(PART) Squad/Parts/Aero/wings/connector4/wingConnector4
[LOG 23:36:42.906] Config(PART) Squad/Parts/Aero/wings/connector5/wingConnector5
[LOG 23:36:42.924] Config(PART) Squad/Parts/Aero/wings/delta/deltaWing
[LOG 23:36:42.936] Config(PART) Squad/Parts/Aero/wings/delta_small/delta_small
[LOG 23:36:42.948] Config(PART) Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf
[LOG 23:36:42.965] Config(PART) Squad/Parts/Aero/wings/elevon2/elevon2
[LOG 23:36:42.978] Config(PART) Squad/Parts/Aero/wings/elevon3/elevon3
[LOG 23:36:42.991] Config(PART) Squad/Parts/Aero/wings/elevon4/smallCtrlSrf
[LOG 23:36:43.008] Config(PART) Squad/Parts/Aero/wings/elevon5/elevon5
[LOG 23:36:43.021] Config(PART) Squad/Parts/Aero/wings/strake/wingStrake
[LOG 23:36:43.034] Config(PART) Squad/Parts/Aero/wings/structural1/structuralWing
[LOG 23:36:43.051] Config(PART) Squad/Parts/Aero/wings/structural2/structuralWing2
[LOG 23:36:43.065] Config(PART) Squad/Parts/Aero/wings/structural3/structuralWing3
[LOG 23:36:43.082] Config(PART) Squad/Parts/Aero/wings/structural4/structuralWing4
[LOG 23:36:43.096] Config(PART) Squad/Parts/Aero/wings/swept1/sweptWing1
[LOG 23:36:43.109] Config(PART) Squad/Parts/Aero/wings/swept2/sweptWing2
[LOG 23:36:43.126] Config(PART) Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2
[LOG 23:36:43.141] Config(PART) Squad/Parts/Command/cupola/cupola/cupola
[LOG 23:36:43.158] Config(PART) Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd
[LOG 23:36:43.173] Config(PART) Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin
[LOG 23:36:43.192] Config(PART) Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule
[LOG 23:36:43.211] Config(PART) Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule
[LOG 23:36:43.327] Config(PART) Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod
[LOG 23:36:43.338] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit
[LOG 23:36:43.354] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin
[LOG 23:36:43.369] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit
[LOG 23:36:43.384] Config(PART) Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall
[LOG 23:36:43.402] Config(PART) Squad/Parts/Command/mk1pod/mk1Pod/mk1pod
[LOG 23:36:43.415] Config(PART) Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline
[LOG 23:36:43.434] Config(PART) Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard
[LOG 23:36:43.449] Config(PART) Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore
[LOG 23:36:43.466] Config(PART) Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin
[LOG 23:36:43.481] Config(PART) Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle
[LOG 23:36:43.499] Config(PART) Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube
[LOG 23:36:43.514] Config(PART) Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex
[LOG 23:36:43.532] Config(PART) Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto
[LOG 23:36:43.546] Config(PART) Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2
[LOG 23:36:43.565] Config(PART) Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody
[LOG 23:36:43.579] Config(PART) Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge
[LOG 23:36:43.597] Config(PART) Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall
[LOG 23:36:43.612] Config(PART) Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere
[LOG 23:36:43.630] Config(PART) Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine
[LOG 23:36:43.644] Config(PART) Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector
[LOG 23:36:43.662] Config(PART) Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2
[LOG 23:36:43.681] Config(PART) Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4
[LOG 23:36:43.695] Config(PART) Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1
[LOG 23:36:43.712] Config(PART) Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3
[LOG 23:36:43.726] Config(PART) Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel
[LOG 23:36:43.745] Config(PART) Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5
[LOG 23:36:43.764] Config(PART) Squad/Parts/Electrical/RTG/RTG/rtg
[LOG 23:36:43.777] Config(PART) Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack
[LOG 23:36:43.795] Config(PART) Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank
[LOG 23:36:43.810] Config(PART) Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini
[LOG 23:36:43.828] Config(PART) Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack
[LOG 23:36:43.843] Config(PART) Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge
[LOG 23:36:43.861] Config(PART) Squad/Parts/Engine/ionEngine/ionEngine/ionEngine
[LOG 23:36:43.875] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet
[LOG 23:36:43.893] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine
[LOG 23:36:43.907] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2
[LOG 23:36:43.921] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine
[LOG 23:36:43.939] Config(PART) Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine
[LOG 23:36:43.957] Config(PART) Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini
[LOG 23:36:43.972] Config(PART) Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike
[LOG 23:36:43.992] Config(PART) Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine
[LOG 23:36:44.006] Config(PART) Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini
[LOG 23:36:44.025] Config(PART) Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3
[LOG 23:36:44.039] Config(PART) Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine
[LOG 23:36:44.055] Config(PART) Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine
[LOG 23:36:44.074] Config(PART) Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2
[LOG 23:36:44.101] Config(PART) Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2
[LOG 23:36:44.117] Config(PART) Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2
[LOG 23:36:44.135] Config(PART) Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2
[LOG 23:36:44.154] Config(PART) Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper
[LOG 23:36:44.169] Config(PART) Squad/Parts/Engine/liquidEngineSSME/SSME/SSME
[LOG 23:36:44.186] Config(PART) Squad/Parts/Engine/MassiveSRB/part/MassiveBooster
[LOG 23:36:44.200] Config(PART) Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine
[LOG 23:36:44.214] Config(PART) Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine
[LOG 23:36:44.231] Config(PART) Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER
[LOG 23:36:44.245] Config(PART) Squad/Parts/Engine/Size2LFB/part/Size2LFB
[LOG 23:36:44.262] Config(PART) Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine
[LOG 23:36:44.276] Config(PART) Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster
[LOG 23:36:44.294] Config(PART) Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1
[LOG 23:36:44.309] Config(PART) Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster
[LOG 23:36:44.327] Config(PART) Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm
[LOG 23:36:44.342] Config(PART) Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1
[LOG 23:36:44.360] Config(PART) Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine
[LOG 23:36:44.375] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2
[LOG 23:36:44.390] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines
[LOG 23:36:44.405] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2
[LOG 23:36:44.422] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant
[LOG 23:36:44.437] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2
[LOG 23:36:44.455] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1
[LOG 23:36:44.470] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant
[LOG 23:36:44.488] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3
[LOG 23:36:44.506] Config(PART) Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2
[LOG 23:36:44.521] Config(PART) Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank
[LOG 23:36:44.539] Config(PART) Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat
[LOG 23:36:44.554] Config(PART) Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall
[LOG 23:36:44.572] Config(PART) Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank
[LOG 23:36:44.586] Config(PART) Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long
[LOG 23:36:44.604] Config(PART) Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank
[LOG 23:36:44.618] Config(PART) Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2
[LOG 23:36:44.636] Config(PART) Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2
[LOG 23:36:44.651] Config(PART) Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2
[LOG 23:36:44.669] Config(PART) Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage
[LOG 23:36:44.683] Config(PART) Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler
[LOG 23:36:44.701] Config(PART) Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong
[LOG 23:36:44.715] Config(PART) Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter
[LOG 23:36:44.731] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO
[LOG 23:36:44.746] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage
[LOG 23:36:44.763] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO
[LOG 23:36:44.778] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid
[LOG 23:36:44.796] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono
[LOG 23:36:44.811] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin
[LOG 23:36:44.829] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100
[LOG 23:36:44.843] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25
[LOG 23:36:44.860] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50
[LOG 23:36:44.875] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100
[LOG 23:36:44.892] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25
[LOG 23:36:44.906] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50
[LOG 23:36:44.924] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO
[LOG 23:36:44.938] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2
[LOG 23:36:44.956] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini
[LOG 23:36:44.970] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank
[LOG 23:36:44.988] Config(PART) Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank
[LOG 23:36:45.003] Config(PART) Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong
[LOG 23:36:45.022] Config(PART) Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank
[LOG 23:36:45.036] Config(PART) Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank
[LOG 23:36:45.051] Config(PART) Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank
[LOG 23:36:45.064] Config(PART) Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank
[LOG 23:36:45.082] Config(PART) Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge
[LOG 23:36:45.096] Config(PART) Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial
[LOG 23:36:45.114] Config(PART) Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore
[LOG 23:36:45.128] Config(PART) Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna
[LOG 23:36:45.146] Config(PART) Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel
[LOG 23:36:45.160] Config(PART) Squad/Parts/Misc/PotatoRoid/part/PotatoRoid
[LOG 23:36:45.174] Config(PART) Squad/Parts/Prebuilt/flag/flag
[LOG 23:36:45.189] Config(PART) Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA
[LOG 23:36:45.203] Config(PART) Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale
[LOG 23:36:45.217] Config(PART) Squad/Parts/Resources/FuelCell/FuelCell/FuelCell
[LOG 23:36:45.234] Config(PART) Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray
[LOG 23:36:45.248] Config(PART) Squad/Parts/Resources/ISRU/ISRU/ISRU
[LOG 23:36:45.264] Config(PART) Squad/Parts/Resources/LargeTank/LargeTank/LargeTank
[LOG 23:36:45.278] Config(PART) Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill
[LOG 23:36:45.295] Config(PART) Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU
[LOG 23:36:45.309] Config(PART) Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner
[LOG 23:36:45.327] Config(PART) Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill
[LOG 23:36:45.341] Config(PART) Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank
[LOG 23:36:45.355] Config(PART) Squad/Parts/Resources/SmallTank/SmallTank/SmallTank
[LOG 23:36:45.373] Config(PART) Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner
[LOG 23:36:45.386] Config(PART) Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner
[LOG 23:36:45.402] Config(PART) Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere
[LOG 23:36:45.421] Config(PART) Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment
[LOG 23:36:45.435] Config(PART) Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab
[LOG 23:36:45.454] Config(PART) Squad/Parts/Science/MaterialBay/materialBay/science_module
[LOG 23:36:45.468] Config(PART) Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox
[LOG 23:36:45.485] Config(PART) Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer
[LOG 23:36:45.500] Config(PART) Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer
[LOG 23:36:45.519] Config(PART) Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter
[LOG 23:36:45.534] Config(PART) Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer
[LOG 23:36:45.552] Config(PART) Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi
[LOG 23:36:45.571] Config(PART) Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad
[LOG 23:36:45.587] Config(PART) Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri
[LOG 23:36:45.606] Config(PART) Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort
[LOG 23:36:45.626] Config(PART) Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall
[LOG 23:36:45.642] Config(PART) Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody
[LOG 23:36:45.660] Config(PART) Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody
[LOG 23:36:45.674] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage
[LOG 23:36:45.692] Config(PART) Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage
[LOG 23:36:45.707] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural
[LOG 23:36:45.723] Config(PART) Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler
[LOG 23:36:45.737] Config(PART) Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter
[LOG 23:36:45.754] Config(PART) Squad/Parts/Structural/stationHub/stationHub/stationHub
[LOG 23:36:45.769] Config(PART) Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2
[LOG 23:36:45.787] Config(PART) Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3
[LOG 23:36:45.807] Config(PART) Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1
[LOG 23:36:45.822] Config(PART) Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode
[LOG 23:36:45.841] Config(PART) Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1
[LOG 23:36:45.860] Config(PART) Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2
[LOG 23:36:45.875] Config(PART) Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint
[LOG 23:36:45.894] Config(PART) Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon
[LOG 23:36:45.912] Config(PART) Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube
[LOG 23:36:45.927] Config(PART) Squad/Parts/Structural/strutOcto/strutOcto/strutOcto
[LOG 23:36:45.941] Config(PART) Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter
[LOG 23:36:45.959] Config(PART) Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x
[LOG 23:36:45.977] Config(PART) Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x
[LOG 23:36:45.992] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge
[LOG 23:36:46.010] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed
[LOG 23:36:46.025] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall
[LOG 23:36:46.043] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge
[LOG 23:36:46.056] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg
[LOG 23:36:46.073] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm
[LOG 23:36:46.087] Config(PART) Squad/Parts/Utility/commDish88-88/commDish88-88/commDish
[LOG 23:36:46.104] Config(PART) Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna
[LOG 23:36:46.120] Config(PART) Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna
[LOG 23:36:46.137] Config(PART) Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2
[LOG 23:36:46.153] Config(PART) Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler
[LOG 23:36:46.171] Config(PART) Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2
[LOG 23:36:46.190] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator
[LOG 23:36:46.206] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini
[LOG 23:36:46.225] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig
[LOG 23:36:46.244] Config(PART) Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2
[LOG 23:36:46.259] Config(PART) Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler
[LOG 23:36:46.278] Config(PART) Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini
[LOG 23:36:46.297] Config(PART) Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna
[LOG 23:36:46.311] Config(PART) Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5
[LOG 23:36:46.325] Config(PART) Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2
[LOG 23:36:46.342] Config(PART) Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral
[LOG 23:36:46.361] Config(PART) Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3
[LOG 23:36:46.376] Config(PART) Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1
[LOG 23:36:46.392] Config(PART) Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge
[LOG 23:36:46.407] Config(PART) Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice
[LOG 23:36:46.424] Config(PART) Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1
[LOG 23:36:46.438] Config(PART) Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder
[LOG 23:36:46.457] Config(PART) Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay
[LOG 23:36:46.472] Config(PART) Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1
[LOG 23:36:46.490] Config(PART) Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2
[LOG 23:36:46.505] Config(PART) Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg
[LOG 23:36:46.523] Config(PART) Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter
[LOG 23:36:46.537] Config(PART) Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2
[LOG 23:36:46.555] Config(PART) Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1
[LOG 23:36:46.570] Config(PART) Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem
[LOG 23:36:46.587] Config(PART) Squad/Parts/Utility/linearRCS/linearRCS/linearRcs
[LOG 23:36:46.601] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL
[LOG 23:36:46.618] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS
[LOG 23:36:46.632] Config(PART) Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin
[LOG 23:36:46.649] Config(PART) Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort
[LOG 23:36:46.664] Config(PART) Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL
[LOG 23:36:46.681] Config(PART) Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM
[LOG 23:36:46.695] Config(PART) Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp
[LOG 23:36:46.709] Config(PART) Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS
[LOG 23:36:46.725] Config(PART) Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle
[LOG 23:36:46.739] Config(PART) Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue
[LOG 23:36:46.757] Config(PART) Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge
[LOG 23:36:46.775] Config(PART) Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial
[LOG 23:36:46.790] Config(PART) Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue
[LOG 23:36:46.808] Config(PART) Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1
[LOG 23:36:46.836] Config(PART) Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock
[LOG 23:36:46.850] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100
[LOG 23:36:46.867] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5
[LOG 23:36:46.881] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50
[LOG 23:36:46.899] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125
[LOG 23:36:46.913] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250
[LOG 23:36:46.931] Config(PART) Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1
[LOG 23:36:46.945] Config(PART) Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2
[LOG 23:36:46.959] Config(PART) Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler
[LOG 23:36:46.977] Config(PART) Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler
[LOG 23:36:46.996] Config(PART) Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler
[LOG 23:36:47.011] Config(PART) Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge
[LOG 23:36:47.028] Config(PART) Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed
[LOG 23:36:47.042] Config(PART) Squad/Parts/Wheel/LandingGear/GearFree/GearFree
[LOG 23:36:47.056] Config(PART) Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium
[LOG 23:36:47.070] Config(PART) Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall
[LOG 23:36:47.084] Config(PART) Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay
[LOG 23:36:47.101] Config(PART) Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1
[LOG 23:36:47.116] Config(PART) Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2
[LOG 23:36:47.133] Config(PART) Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed
[LOG 23:36:47.148] Config(PART) Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3
[LOG 23:36:47.165] Config(PROP) Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands
[LOG 23:36:47.179] Config(PROP) Squad/Props/AtmosphereDepth/prop/AtmosphereDepth
[LOG 23:36:47.193] Config(PROP) Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch
[LOG 23:36:47.211] Config(PROP) Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll
[LOG 23:36:47.225] Config(PROP) Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw
[LOG 23:36:47.242] Config(PROP) Squad/Props/buttonsGeneric/circularButton/genericCircularButton
[LOG 23:36:47.257] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons
[LOG 23:36:47.275] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2
[LOG 23:36:47.289] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs
[LOG 23:36:47.307] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2
[LOG 23:36:47.321] Config(PROP) Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed
[LOG 23:36:47.339] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01
[LOG 23:36:47.354] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02
[LOG 23:36:47.372] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03
[LOG 23:36:47.391] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04
[LOG 23:36:47.404] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05
[LOG 23:36:47.422] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06
[LOG 23:36:47.437] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07
[LOG 23:36:47.455] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob
[LOG 23:36:47.470] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2
[LOG 23:36:47.488] Config(PROP) Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch
[LOG 23:36:47.502] Config(PROP) Squad/Props/buttonsGeneric/squareButton/genericSquareButton
[LOG 23:36:47.519] Config(PROP) Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch
[LOG 23:36:47.534] Config(PROP) Squad/Props/buttonsGeneric/switch/genericSwitch
[LOG 23:36:47.551] Config(PROP) Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards
[LOG 23:36:47.566] Config(PROP) Squad/Props/ButtonSquare/prop/ButtonSquare
[LOG 23:36:47.582] Config(PROP) Squad/Props/circularButton/prop/circularButton
[LOG 23:36:47.596] Config(PROP) Squad/Props/Compass/prop/Compass
[LOG 23:36:47.609] Config(PROP) Squad/Props/directionalKnob/prop/directionalKnob
[LOG 23:36:47.626] Config(PROP) Squad/Props/directionalKnob2/prop/directionalKnob2
[LOG 23:36:47.640] Config(PROP) Squad/Props/IndicatorPanel/prop/IndicatorPanel
[LOG 23:36:47.657] Config(PROP) Squad/Props/IVANavBall/prop/NavBall
[LOG 23:36:47.670] Config(PROP) Squad/Props/ledPanelSpeed/prop/ledPanelSpeed
[LOG 23:36:47.683] Config(PROP) Squad/Props/Monitor/DockingMode/MonitorDockingMode
[LOG 23:36:47.700] Config(PROP) Squad/Props/NavBall/prop/NavBall
[LOG 23:36:47.713] Config(PROP) Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode
[LOG 23:36:47.730] Config(PROP) Squad/Props/PropsGeneric/CargoBagA/CargoBagA
[LOG 23:36:47.742] Config(PROP) Squad/Props/PropsGeneric/CargoBagB/CargoBagB
[LOG 23:36:47.756] Config(PROP) Squad/Props/PropsGeneric/CargoBagC/CargoBagC
[LOG 23:36:47.772] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane
[LOG 23:36:47.786] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90
[LOG 23:36:47.804] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame
[LOG 23:36:47.819] Config(PROP) Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger
[LOG 23:36:47.836] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot
[LOG 23:36:47.850] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet
[LOG 23:36:47.864] Config(PROP) Squad/Props/PropsGeneric/SideStick/SideStick
[LOG 23:36:47.881] Config(PROP) Squad/Props/pullSwitch/prop/pullSwitch
[LOG 23:36:47.894] Config(PROP) Squad/Props/radarAltitude/prop/RadarAltimeter
[LOG 23:36:47.911] Config(PROP) Squad/Props/squareButton/prop/squareButton
[LOG 23:36:47.925] Config(PROP) Squad/Props/standingSwitch/prop/standingSwitch
[LOG 23:36:47.939] Config(PROP) Squad/Props/switch/prop/switch
[LOG 23:36:47.955] Config(PROP) Squad/Props/switchGuard/prop/switchGuard
[LOG 23:36:47.968] Config(PROP) Squad/Props/switchWithGuards/prop/switchWithGuards
[LOG 23:36:47.982] Config(PROP) Squad/Props/throttle/prop/throttle
[LOG 23:36:47.998] Config(PROP) Squad/Props/VSI/prop/VSI
[LOG 23:36:48.010] Config(GLOBAL_RESOURCE) Squad/Resources/Ore/GLOBAL_RESOURCE
[LOG 23:36:48.024] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 23:36:48.042] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 23:36:48.056] Config(RESOURCE_OVERLAY_CONFIGURATION_SOLID) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_SOLID
[LOG 23:36:48.073] Config(RESOURCE_OVERLAY_CONFIGURATION_LINES) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_LINES
[LOG 23:36:48.093] Config(RESOURCE_OVERLAY_CONFIGURATION_DOTS) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_DOTS
[LOG 23:36:48.109] Config(RESOURCE_CONFIGURATION) Squad/Resources/ResourceDefaults/RESOURCE_CONFIGURATION
[LOG 23:36:48.127] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/LiquidFuel
[LOG 23:36:48.142] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Oxidizer
[LOG 23:36:48.160] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/SolidFuel
[LOG 23:36:48.174] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/MonoPropellant
[LOG 23:36:48.192] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/XenonGas
[LOG 23:36:48.206] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/ElectricCharge
[LOG 23:36:48.224] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/IntakeAir
[LOG 23:36:48.238] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/EVA Propellant
[LOG 23:36:48.256] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ore
[LOG 23:36:48.270] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ablator
[LOG 23:36:48.288] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.303] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.321] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.336] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.354] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.372] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.387] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.404] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.418] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.532] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.546] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 23:36:48.564] Config(STORY_DEF) Squad/Resources/StoryDefs/STORY_DEF
[LOG 23:36:48.577] Config(TechTree) Squad/Resources/TechTree/TechTree
[LOG 23:36:48.594] Config(INTERNAL) Squad/Spaces/crewCabinInternals/internal/crewCabinInternals
[LOG 23:36:48.609] Config(INTERNAL) Squad/Spaces/cupolaInternal/internal/cupolaInternal
[LOG 23:36:48.626] Config(INTERNAL) Squad/Spaces/GenericSpace1/internal/GenericSpace1
[LOG 23:36:48.640] Config(INTERNAL) Squad/Spaces/GenericSpace3/internal/GenericSpace3
[LOG 23:36:48.654] Config(INTERNAL) Squad/Spaces/landerCabinInternals/internal/landerCabinInternals
[LOG 23:36:48.673] Config(INTERNAL) Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal
[LOG 23:36:48.691] Config(INTERNAL) Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int
[LOG 23:36:48.706] Config(INTERNAL) Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal
[LOG 23:36:48.724] Config(INTERNAL) Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal
[LOG 23:36:48.739] Config(INTERNAL) Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal
[LOG 23:36:48.757] Config(INTERNAL) Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit
[LOG 23:36:48.771] Config(INTERNAL) Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals
[LOG 23:36:48.789] Config(INTERNAL) Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int
[LOG 23:36:48.804] Config(INTERNAL) Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal
[LOG 23:36:48.822] Config(INTERNAL) Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int
[LOG 23:36:48.838] Config(INTERNAL) Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int
[LOG 23:36:48.853] Config(INTERNAL) Squad/Spaces/Placeholder/internal/Placeholder
[LOG 23:36:48.870] Config(INTERNAL) Squad/Spaces/PodCockpit/internal/PodCockpit
[LOG 23:36:48.884] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Finances
[LOG 23:36:48.898] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Science
[LOG 23:36:48.915] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Public Relations
[LOG 23:36:48.929] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Operations
[LOG 23:36:48.947] Config(STRATEGY) Squad/Strategies/Strategies/AppreciationCampaignCfg
[LOG 23:36:48.961] Config(STRATEGY) Squad/Strategies/Strategies/FundraisingCampaignCfg
[LOG 23:36:48.979] Config(STRATEGY) Squad/Strategies/Strategies/OpenSourceTechProgramCfg
[LOG 23:36:48.993] Config(STRATEGY) Squad/Strategies/Strategies/UnpaidResearchProgramCfg
[LOG 23:36:49.010] Config(STRATEGY) Squad/Strategies/Strategies/OutsourcedResearchCfg
[LOG 23:36:49.025] Config(STRATEGY) Squad/Strategies/Strategies/PatentsLicensingCfg
[LOG 23:36:49.038] Config(STRATEGY) Squad/Strategies/Strategies/AgressiveNegotiations
[LOG 23:36:49.056] Config(STRATEGY) Squad/Strategies/Strategies/RecoveryTransponders
[LOG 23:36:49.070] Config(STRATEGY) Squad/Strategies/Strategies/BailoutGrant
[LOG 23:36:49.086] Config(STRATEGY) Squad/Strategies/Strategies/researchIPsellout
[LOG 23:36:49.100] Config(STRATEGY) Squad/Strategies/Strategies/LeadershipInitiative
[LOG 23:36:49.117] Config(TUTORIAL) Squad/Tutorials/FlightSuborbital/FlightSuborbital
[LOG 23:36:49.132] Config(TUTORIAL) Squad/Tutorials/FromMun/FromMun
[LOG 23:36:49.145] Config(TUTORIAL) Squad/Tutorials/GoForOrbit/GoForOrbit
[LOG 23:36:49.164] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.174] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.187] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.203] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.216] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.229] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.242] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.258] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.271] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.283] Resource RESOURCE_DEFINITION added to database
[LOG 23:36:49.300] CodeAssetLoader: Compiling all code assets
[LOG 23:36:49.321] GameDatabase: Assets loaded in 56.124s
[LOG 23:36:49.344] PartLoader: Loading part database
[LOG 23:36:49.354] PartLoader: Compiling Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone'
[LOG 23:36:49.389] EffectList: Created 14 effect types
[LOG 23:36:49.417] PartLoader: Compiling Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1'
[LOG 23:36:49.446] PartLoader: Compiling Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop'
[LOG 23:36:49.468] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf'
[LOG 23:36:49.488] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing'
[LOG 23:36:49.508] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin'
[LOG 23:36:49.527] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard'
[LOG 23:36:49.547] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController'
[LOG 23:36:49.567] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing'
[LOG 23:36:49.582] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin'
[LOG 23:36:49.601] PartLoader: Compiling Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin'
[LOG 23:36:49.615] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake'
[LOG 23:36:49.639] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake'
[LOG 23:36:49.654] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone'
[LOG 23:36:49.684] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA'
[LOG 23:36:49.698] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB'
[LOG 23:36:49.716] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter'
[LOG 23:36:49.734] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone'
[LOG 23:36:49.763] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail'
[LOG 23:36:49.778] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB'
[LOG 23:36:49.797] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1'
[LOG 23:36:49.843] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2'
[LOG 23:36:49.872] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3'
[LOG 23:36:49.900] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0'
[LOG 23:36:49.928] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1'
[LOG 23:36:49.951] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2'
[LOG 23:36:49.985] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3'
[LOG 23:36:50.006] PartLoader: Compiling Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield'
[LOG 23:36:50.030] PartLoader: Compiling Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong'
[LOG 23:36:50.046] PartLoader: Compiling Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake'
[LOG 23:36:50.065] PartLoader: Compiling Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone'
[LOG 23:36:50.080] PartLoader: Compiling Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake'
[LOG 23:36:50.101] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta'
[LOG 23:36:50.120] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1'
[LOG 23:36:50.136] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2'
[LOG 23:36:50.156] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder'
[LOG 23:36:50.172] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake'
[LOG 23:36:50.190] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet'
[LOG 23:36:50.206] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet'
[LOG 23:36:50.225] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3'
[LOG 23:36:50.244] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector1/wingConnector'
[LOG 23:36:50.259] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector2/wingConnector2'
[LOG 23:36:50.278] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector3/wingConnector3'
[LOG 23:36:50.293] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector4/wingConnector4'
[LOG 23:36:50.312] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector5/wingConnector5'
[LOG 23:36:50.327] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta/deltaWing'
[LOG 23:36:50.345] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta_small/delta_small'
[LOG 23:36:50.359] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf'
[LOG 23:36:50.379] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon2/elevon2'
[LOG 23:36:50.395] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon3/elevon3'
[LOG 23:36:50.413] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf'
[LOG 23:36:50.429] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon5/elevon5'
[LOG 23:36:50.447] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/strake/wingStrake'
[LOG 23:36:50.461] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural1/structuralWing'
[LOG 23:36:50.480] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural2/structuralWing2'
[LOG 23:36:50.495] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural3/structuralWing3'
[LOG 23:36:50.514] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural4/structuralWing4'
[LOG 23:36:50.529] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept1/sweptWing1'
[LOG 23:36:50.547] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept2/sweptWing2'
[LOG 23:36:50.561] PartLoader: Compiling Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2'
[LOG 23:36:50.584] PartLoader: Compiling Part 'Squad/Parts/Command/cupola/cupola/cupola'
[LOG 23:36:50.624] PartLoader: Compiling Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd'
[LOG 23:36:50.643] PartLoader: Compiling Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin'
[LOG 23:36:50.667] PartLoader: Compiling Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule'
[LOG 23:36:50.683] PartLoader: Compiling Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule'
[LOG 23:36:50.706] PartLoader: Compiling Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod'
[LOG 23:36:50.735] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit'
[LOG 23:36:50.758] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin'
[LOG 23:36:50.778] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit'
[LOG 23:36:50.801] PartLoader: Compiling Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall'
[LOG 23:36:50.838] PartLoader: Compiling Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod'
[LOG 23:36:50.862] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline'
[LOG 23:36:50.887] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard'
[LOG 23:36:50.912] PartLoader: Compiling Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore'
[LOG 23:36:50.931] PartLoader: Compiling Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin'
[LOG 23:36:50.955] PartLoader: Compiling Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle'
[LOG 23:36:50.979] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube'
[LOG 23:36:50.997] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex'
[LOG 23:36:51.017] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto'
[LOG 23:36:51.037] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2'
[LOG 23:36:51.056] PartLoader: Compiling Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody'
[LOG 23:36:51.075] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge'
[LOG 23:36:51.100] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall'
[LOG 23:36:51.122] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere'
[LOG 23:36:51.140] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine'
[LOG 23:36:51.171] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector'
[LOG 23:36:51.190] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2'
[LOG 23:36:51.214] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4'
[LOG 23:36:51.232] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1'
[LOG 23:36:51.253] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3'
[LOG 23:36:51.271] PartLoader: Compiling Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel'
[LOG 23:36:51.292] PartLoader: Compiling Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5'
[LOG 23:36:51.313] PartLoader: Compiling Part 'Squad/Parts/Electrical/RTG/RTG/rtg'
[LOG 23:36:51.336] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack'
[LOG 23:36:51.350] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank'
[LOG 23:36:51.370] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini'
[LOG 23:36:51.386] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack'
[LOG 23:36:51.406] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge'
[LOG 23:36:51.425] PartLoader: Compiling Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine'
[LOG 23:36:51.476] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet'
[LOG 23:36:51.528] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine'
[LOG 23:36:51.553] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2'
[LOG 23:36:51.583] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine'
[LOG 23:36:51.610] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine'
[LOG 23:36:51.633] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini'
[LOG 23:36:51.656] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike'
[LOG 23:36:51.689] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine'
[LOG 23:36:51.710] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini'
[LOG 23:36:51.732] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3'
[LOG 23:36:51.756] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine'
[LOG 23:36:51.780] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine'
[LOG 23:36:51.803] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2'
[LOG 23:36:51.827] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2'
[LOG 23:36:51.853] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2'
[LOG 23:36:51.894] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2'
[LOG 23:36:51.920] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper'
[LOG 23:36:51.946] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME'
[LOG 23:36:51.972] PartLoader: Compiling Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster'
[LOG 23:36:51.995] PartLoader: Compiling Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine'
[LOG 23:36:52.018] PartLoader: Compiling Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine'
[LOG 23:36:52.038] PartLoader: Compiling Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER'
[LOG 23:36:52.069] PartLoader: Compiling Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB'
[LOG 23:36:52.093] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine'
[LOG 23:36:52.121] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster'
[LOG 23:36:52.146] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1'
[LOG 23:36:52.168] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster'
[LOG 23:36:52.189] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm'
[LOG 23:36:52.210] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1'
[LOG 23:36:52.229] PartLoader: Compiling Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine'
[LOG 23:36:52.254] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2'
[LOG 23:36:52.268] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines'
[LOG 23:36:52.288] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2'
[LOG 23:36:52.302] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant'
[LOG 23:36:52.323] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2'
[LOG 23:36:52.342] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1'
[LOG 23:36:52.357] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant'
[LOG 23:36:52.378] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3'
[LOG 23:36:52.398] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2'
[LOG 23:36:52.413] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank'
[LOG 23:36:52.433] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat'
[LOG 23:36:52.452] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall'
[LOG 23:36:52.467] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank'
[LOG 23:36:52.486] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long'
[LOG 23:36:52.505] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank'
[LOG 23:36:52.521] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2'
[LOG 23:36:52.540] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2'
[LOG 23:36:52.558] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2'
[LOG 23:36:52.574] PartLoader: Compiling Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage'
[LOG 23:36:52.593] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler'
[LOG 23:36:52.613] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong'
[LOG 23:36:52.628] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter'
[LOG 23:36:52.648] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO'
[LOG 23:36:52.683] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage'
[LOG 23:36:52.699] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO'
[LOG 23:36:52.718] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid'
[LOG 23:36:52.734] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono'
[LOG 23:36:52.755] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin'
[LOG 23:36:52.777] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100'
[LOG 23:36:52.792] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25'
[LOG 23:36:52.810] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50'
[LOG 23:36:52.829] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100'
[LOG 23:36:52.846] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25'
[LOG 23:36:52.865] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50'
[LOG 23:36:52.880] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO'
[LOG 23:36:52.899] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2'
[LOG 23:36:52.917] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini'
[LOG 23:36:52.935] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank'
[LOG 23:36:52.953] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank'
[LOG 23:36:52.969] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong'
[LOG 23:36:52.989] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank'
[LOG 23:36:53.008] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank'
[LOG 23:36:53.023] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank'
[LOG 23:36:53.042] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank'
[LOG 23:36:53.056] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge'
[LOG 23:36:53.076] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial'
[LOG 23:36:53.105] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore'
[LOG 23:36:53.130] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna'
[LOG 23:36:53.151] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel'
[LOG 23:36:53.168] PartLoader: Compiling Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid'
[LOG 23:36:53.195] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/flag/flag'
[LOG 23:36:53.208] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA'
[LOG 23:36:53.229] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale'
[LOG 23:36:53.245] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell'
[LOG 23:36:53.269] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray'
[LOG 23:36:53.286] PartLoader: Compiling Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU'
[LOG 23:36:53.319] PartLoader: Compiling Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank'
[LOG 23:36:53.335] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill'
[LOG 23:36:53.369] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU'
[LOG 23:36:53.392] PartLoader: Compiling Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner'
[LOG 23:36:53.418] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill'
[LOG 23:36:53.444] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank'
[LOG 23:36:53.460] PartLoader: Compiling Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank'
[LOG 23:36:53.477] PartLoader: Compiling Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner'
[LOG 23:36:53.505] PartLoader: Compiling Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner'
[LOG 23:36:53.531] PartLoader: Compiling Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere'
[LOG 23:36:53.598] PartLoader: Compiling Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment'
[LOG 23:36:53.646] PartLoader: Compiling Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab'
[LOG 23:36:53.684] PartLoader: Compiling Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module'
[LOG 23:36:53.702] PartLoader: Compiling Part 'Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox'
[LOG 23:36:53.721] PartLoader: Compiling Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer'
[LOG 23:36:53.742] PartLoader: Compiling Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer'
[LOG 23:36:53.760] PartLoader: Compiling Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter'
[LOG 23:36:53.781] PartLoader: Compiling Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer'
[LOG 23:36:53.799] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi'
[LOG 23:36:53.816] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad'
[LOG 23:36:53.837] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri'
[LOG 23:36:53.857] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort'
[LOG 23:36:53.877] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall'
[LOG 23:36:53.897] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody'
[LOG 23:36:53.914] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody'
[LOG 23:36:53.934] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage'
[LOG 23:36:53.948] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage'
[LOG 23:36:53.971] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural'
[LOG 23:36:53.989] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler'
[LOG 23:36:54.009] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter'
[LOG 23:36:54.023] PartLoader: Compiling Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub'
[LOG 23:36:54.044] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2'
[LOG 23:36:54.061] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3'
[LOG 23:36:54.082] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1'
[LOG 23:36:54.103] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode'
[LOG 23:36:54.122] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1'
[LOG 23:36:54.141] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2'
[LOG 23:36:54.158] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint'
[LOG 23:36:54.181] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon'
[LOG 23:36:54.202] PartLoader: Compiling Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube'
[LOG 23:36:54.217] PartLoader: Compiling Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto'
[LOG 23:36:54.237] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter'
[LOG 23:36:54.255] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x'
[LOG 23:36:54.270] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x'
[LOG 23:36:54.289] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge'
[LOG 23:36:54.320] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed'
[LOG 23:36:54.339] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall'
[LOG 23:36:54.358] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge'
[LOG 23:36:54.377] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg'
[LOG 23:36:54.392] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm'
[LOG 23:36:54.411] PartLoader: Compiling Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish'
[LOG 23:36:54.430] PartLoader: Compiling Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna'
[LOG 23:36:54.450] PartLoader: Compiling Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna'
[LOG 23:36:54.471] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2'
[LOG 23:36:54.492] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler'
[LOG 23:36:54.511] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2'
[LOG 23:36:54.531] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator'
[LOG 23:36:54.549] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini'
[LOG 23:36:54.574] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig'
[LOG 23:36:54.593] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2'
[LOG 23:36:54.613] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler'
[LOG 23:36:54.634] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini'
[LOG 23:36:54.656] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna'
[LOG 23:36:54.671] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5'
[LOG 23:36:54.715] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2'
[LOG 23:36:54.736] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral'
[LOG 23:36:54.756] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3'
[LOG 23:36:54.776] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1'
[LOG 23:36:54.799] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge'
[LOG 23:36:54.816] PartLoader: Compiling Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice'
[LOG 23:36:54.845] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1'
[LOG 23:36:54.859] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder'
[LOG 23:36:54.882] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay'
[LOG 23:36:54.900] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1'
[LOG 23:36:54.944] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2'
[LOG 23:36:54.969] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg'
[LOG 23:36:54.992] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter'
[LOG 23:36:55.007] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2'
[LOG 23:36:55.025] PartLoader: Compiling Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1'
[LOG 23:36:55.051] PartLoader: Compiling Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem'
[LOG 23:36:55.072] PartLoader: Compiling Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs'
[LOG 23:36:55.088] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL'
[LOG 23:36:55.109] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS'
[LOG 23:36:55.126] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin'
[LOG 23:36:55.150] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort'
[LOG 23:36:55.169] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL'
[LOG 23:36:55.185] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM'
[LOG 23:36:55.205] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp'
[LOG 23:36:55.222] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS'
[LOG 23:36:55.240] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle'
[LOG 23:36:55.267] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue'
[LOG 23:36:55.285] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge'
[LOG 23:36:55.308] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial'
[LOG 23:36:55.327] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue'
[LOG 23:36:55.347] PartLoader: Compiling Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1'
[LOG 23:36:55.362] PartLoader: Compiling Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock'
[LOG 23:36:55.386] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100'
[LOG 23:36:55.402] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5'
[LOG 23:36:55.421] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50'
[LOG 23:36:55.436] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125'
[LOG 23:36:55.488] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250'
[LOG 23:36:55.508] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1'
[LOG 23:36:55.527] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2'
[LOG 23:36:55.543] PartLoader: Compiling Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler'
[LOG 23:36:55.561] PartLoader: Compiling Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler'
[LOG 23:36:55.581] PartLoader: Compiling Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler'
[LOG 23:36:55.601] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge'
[LOG 23:36:55.635] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed'
[LOG 23:36:55.654] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree'
[LOG 23:36:55.676] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium'
[LOG 23:36:55.705] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall'
[LOG 23:36:55.734] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay'
[LOG 23:36:55.763] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1'
[LOG 23:36:55.789] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2'
[LOG 23:36:55.812] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed'
[LOG 23:36:55.835] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3'
[LOG 23:36:55.860] PartLoader: Compiling Internal Prop 'Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands'
[LOG 23:36:55.876] PartLoader: Compiling Internal Prop 'Squad/Props/AtmosphereDepth/prop/AtmosphereDepth'
[LOG 23:36:55.893] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch'
[LOG 23:36:55.911] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll'
[LOG 23:36:55.926] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw'
[LOG 23:36:55.946] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/circularButton/genericCircularButton'
[LOG 23:36:55.965] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons'
[LOG 23:36:55.980] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2'
[LOG 23:36:55.999] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs'
[LOG 23:36:56.019] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2'
[LOG 23:36:56.035] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed'
[LOG 23:36:56.055] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01'
[LOG 23:36:56.075] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02'
[LOG 23:36:56.095] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03'
[LOG 23:36:56.112] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04'
[LOG 23:36:56.132] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05'
[LOG 23:36:56.150] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06'
[LOG 23:36:56.170] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07'
[LOG 23:36:56.187] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob'
[LOG 23:36:56.207] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2'
[LOG 23:36:56.227] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch'
[LOG 23:36:56.246] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/squareButton/genericSquareButton'
[LOG 23:36:56.263] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch'
[LOG 23:36:56.283] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switch/genericSwitch'
[LOG 23:36:56.302] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards'
[LOG 23:36:56.318] PartLoader: Compiling Internal Prop 'Squad/Props/ButtonSquare/prop/ButtonSquare'
[LOG 23:36:56.339] PartLoader: Compiling Internal Prop 'Squad/Props/circularButton/prop/circularButton'
[LOG 23:36:56.366] PartLoader: Compiling Internal Prop 'Squad/Props/Compass/prop/Compass'
[LOG 23:36:56.384] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob/prop/directionalKnob'
[LOG 23:36:56.400] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob2/prop/directionalKnob2'
[LOG 23:36:56.419] PartLoader: Compiling Internal Prop 'Squad/Props/IndicatorPanel/prop/IndicatorPanel'
[LOG 23:36:56.437] PartLoader: Compiling Internal Prop 'Squad/Props/IVANavBall/prop/NavBall'
[LOG 23:36:56.456] PartLoader: Compiling Internal Prop 'Squad/Props/ledPanelSpeed/prop/ledPanelSpeed'
[LOG 23:36:56.470] PartLoader: Compiling Internal Prop 'Squad/Props/Monitor/DockingMode/MonitorDockingMode'
[LOG 23:36:56.488] PartLoader: Compiling Internal Prop 'Squad/Props/NavBall/prop/NavBall'
[LOG 23:36:56.504] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode'
[LOG 23:36:56.521] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagA/CargoBagA'
[LOG 23:36:56.540] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagB/CargoBagB'
[LOG 23:36:56.556] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagC/CargoBagC'
[LOG 23:36:56.575] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane'
[LOG 23:36:56.594] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90'
[LOG 23:36:56.610] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame'
[LOG 23:36:56.630] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger'
[LOG 23:36:56.649] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot'
[LOG 23:36:56.665] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet'
[LOG 23:36:56.684] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/SideStick/SideStick'
[LOG 23:36:56.700] PartLoader: Compiling Internal Prop 'Squad/Props/pullSwitch/prop/pullSwitch'
[LOG 23:36:56.719] PartLoader: Compiling Internal Prop 'Squad/Props/radarAltitude/prop/RadarAltimeter'
[LOG 23:36:56.739] PartLoader: Compiling Internal Prop 'Squad/Props/squareButton/prop/squareButton'
[LOG 23:36:56.755] PartLoader: Compiling Internal Prop 'Squad/Props/standingSwitch/prop/standingSwitch'
[LOG 23:36:56.774] PartLoader: Compiling Internal Prop 'Squad/Props/switch/prop/switch'
[LOG 23:36:56.789] PartLoader: Compiling Internal Prop 'Squad/Props/switchGuard/prop/switchGuard'
[LOG 23:36:56.808] PartLoader: Compiling Internal Prop 'Squad/Props/switchWithGuards/prop/switchWithGuards'
[LOG 23:36:56.824] PartLoader: Compiling Internal Prop 'Squad/Props/throttle/prop/throttle'
[LOG 23:36:56.844] PartLoader: Compiling Internal Prop 'Squad/Props/VSI/prop/VSI'
[LOG 23:36:56.857] PartLoader: Compiling Internal Space 'Squad/Spaces/crewCabinInternals/internal/crewCabinInternals'
[LOG 23:36:56.882] PartLoader: Compiling Internal Space 'Squad/Spaces/cupolaInternal/internal/cupolaInternal'
[LOG 23:36:56.931] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace1/internal/GenericSpace1'
[LOG 23:36:56.945] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace3/internal/GenericSpace3'
[LOG 23:36:56.965] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinInternals/internal/landerCabinInternals'
[LOG 23:36:56.985] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal'
[LOG 23:36:57.003] PartLoader: Compiling Internal Space 'Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int'
[LOG 23:36:57.022] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal'
[LOG 23:36:57.045] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal'
[LOG 23:36:57.065] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal'
[LOG 23:36:57.082] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit'
[LOG 23:36:57.101] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals'
[LOG 23:36:57.125] PartLoader: Compiling Internal Space 'Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int'
[LOG 23:36:57.143] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal'
[LOG 23:36:57.168] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int'
[LOG 23:36:57.192] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int'
[LOG 23:36:57.207] InternalSeat: Cannot find portraitCamera of name 'Camera_Left003'
[LOG 23:36:57.227] PartLoader: Compiling Internal Space 'Squad/Spaces/Placeholder/internal/Placeholder'
[LOG 23:36:57.249] PartLoader: Compiling Internal Space 'Squad/Spaces/PodCockpit/internal/PodCockpit'
[LOG 23:36:57.310] Loading Systems: Elapsed time is 64.11449s
[WRN 23:36:58.891] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.897] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.907] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.913] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.923] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.932] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.938] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.947] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 23:36:58.956] The referenced script on this Behaviour (Game Object '<null>') is missing!
[LOG 23:37:01.424] [UIMasterController]: HideUI
[LOG 23:37:01.436] [Agent]: Found 19 agent mentality types
[LOG 23:37:01.447] [AgentList]: 27 agents parsed and loaded.
[LOG 23:37:01.846] [CelestialBody]: Kerbin's solar day length is 1d, 0h, 0m long. sidereal day length is 5h, 59m, 9s long
[LOG 23:37:02.258] [UIMasterController]: HideUI
[LOG 23:37:02.270] [HighLogic]: =========================== Scene Change : From LOADING to MAINMENU =====================
[LOG 23:37:02.551] [UIMasterController]: ShowUI
[LOG 23:37:02.896] [GameParameters]: Loaded custom parameter class CommNetParams.
[LOG 23:37:02.907] [GameParameters]: Loaded custom parameter class AdvancedParams.
[LOG 23:37:03.794] [ApplicationLauncher] Awake False
[LOG 23:37:03.804] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 23:37:03.829] [UiApp] Awake: MessageSystem
[LOG 23:37:03.838] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop True
[LOG 23:37:03.891] [UIApp] Adding MessageSystem to Application Launcher
[LOG 23:37:03.904] [ApplicationLauncher] SetHidden: 
[LOG 23:37:03.930] [MessageSystem] OnAppInitialized
[LOG 23:37:03.942] [MessageSystem] Reposition 0.08376417 43896
[LOG 23:37:16.489] KerbalSimPit: SYN received on port COM4. Replying.
[LOG 23:37:16.501] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 23:37:19.668] [ExperienceSystem]: Found 0 trait types
[LOG 23:37:19.680] [ExperienceSystem]: Found 16 effect types
[LOG 23:37:19.693] Game State Created.
[LOG 23:37:19.710] [ScenarioTypes]: List Created 17 scenario types loaded from 5 loaded assemblies.
[LOG 23:37:19.734] Game State Saved to saves/default/persistent
[LOG 23:37:19.797] [UIMasterController]: HideUI
[LOG 23:37:19.807] [HighLogic]: =========================== Scene Change : From MAINMENU to SPACECENTER (Async) =====================
[LOG 23:37:19.940] [UIMasterController]: HideUI
[LOG 23:37:20.788] [AddonLoader]: Instantiating addon 'ContractDefs' from assembly 'KSP'
[LOG 23:37:25.298] [UIMasterController]: HideUI
[LOG 23:37:25.421] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 23:37:25.959] [UiApp] Awake: KSPedia
[LOG 23:37:25.970] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 23:37:25.991] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 23:37:26.006] [ApplicationLauncher] SetVisible: 
[LOG 23:37:26.068] [UIApp] OnDestroy: ContractsApp
[LOG 23:37:26.147] [MessageSystem] Reposition 0.02 44787
[LOG 23:37:26.490] [UIApp] Adding KSPedia to Application Launcher
[LOG 23:37:26.517] Flight State Captured
[LOG 23:37:26.528] Saving Achievements Tree...
[LOG 23:37:26.541] [MessageSystem] Save Messages
[LOG 23:37:26.562] Game State Saved to saves/default/persistent
[LOG 23:37:26.695] [UIMasterController]: ShowUI
[LOG 23:37:30.899] [ReflectionUtil]: Found 4 types with UpgradeModule attribute in 5 assemblies.
[LOG 23:37:30.924] [KSPUpgradePipeline]: Kerbal 1 (Stock) updated from 1.2.0 to 1.2.2.
[LOG 23:37:30.936] [UIMasterController] RemoveCanvas:VesselSpawnDialog
[LOG 23:37:30.959] [Pre-Flight Check]: Checking for CraftWithinPartCountLimit: PASS!
[LOG 23:37:30.970] [Pre-Flight Check]: Checking for CraftWithinSizeLimits: PASS!
[LOG 23:37:30.984] [Pre-Flight Check]: Checking for CraftWithinMassLimits: PASS!
[LOG 23:37:31.001] [Pre-Flight Check]: Checking for ExperimentalPartsAvailable: PASS!
[LOG 23:37:31.015] [Pre-Flight Check]: Checking for CanAffordLaunchTest: PASS!
[LOG 23:37:31.032] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 23:37:31.045] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 23:37:31.060] [Pre-Flight Check]: Checking for NoControlSources: PASS!
[LOG 23:37:31.082] [Pre-Flight Check]: Checking for WrongVesselTypeForLaunchSite: PASS!
[LOG 23:37:31.093] [Pre-Flight Check]: All Checks Complete. Go for Launch!
[LOG 23:37:31.105] Launching vessel from LaunchPad. Craft file: D:\SteamLibrary\steamapps\common\Kerbal Space Program\Ships\VAB\Kerbal 1.craft
[LOG 23:37:31.126] Flight State Captured
[LOG 23:37:31.137] Saving Achievements Tree...
[LOG 23:37:31.152] [MessageSystem] Save Messages
[LOG 23:37:31.173] Game State Saved to saves/default/persistent
[LOG 23:37:31.237] [UIMasterController]: HideUI
[LOG 23:37:31.254] [HighLogic]: =========================== Scene Change : From SPACECENTER to FLIGHT (Async) =====================
[LOG 23:37:31.728] [UIApp] OnDestroy: KSPedia
[LOG 23:37:31.759] [PlanetariumCamera]: Focus: Kerbin
[LOG 23:37:31.768] [UIMasterController]: HideUI
[LOG 23:37:32.603] UICanvasPrefabSpawner FlightUI spawning Flight
[LOG 23:37:32.634] UICanvasPrefabSpawner FlightUI spawning VesselLabels
[LOG 23:37:32.644] [UiApp] Awake: ResourceDisplay
[LOG 23:37:32.663] [AddonLoader]: Instantiating addon 'AeroGUI' from assembly 'KSP'
[LOG 23:37:32.676] [AddonLoader]: Instantiating addon 'KerbalSimPitCAGProvider' from assembly 'KerbalSimPit'
[LOG 23:37:32.692] [AddonLoader]: Instantiating addon 'KerbalSimPitActionProvider' from assembly 'KerbalSimPit'
[LOG 23:37:32.711] [AddonLoader]: Instantiating addon 'KerbalSimPitEchoProvider' from assembly 'KerbalSimPit'
[LOG 23:37:32.726] [AddonLoader]: Instantiating addon 'KerbalSimPitTelemetryProvider' from assembly 'KerbalSimPit'
[LOG 23:37:32.743] [PlanetariumCamera]: Focus: Kerbin
[LOG 23:37:32.756] [UIMasterController]: HideUI
[LOG 23:37:32.860] ------------------- initializing flight mode... ------------------
[LOG 23:37:32.875] [MessageSystem] Save Messages
[LOG 23:37:32.887] Loading Depletion Nodes
[LOG 23:37:32.898] DepNodeCount:  0
[LOG 23:37:32.909] Loading Biome Nodes
[LOG 23:37:32.921] BiomeNodeCount:  0
[LOG 23:37:32.932] Loading Planet Nodes
[LOG 23:37:32.943] PlanetNodeCount:  0
[LOG 23:37:32.957] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 23:37:32.972] Loading ship from file: D:\SteamLibrary\steamapps\common\Kerbal Space Program\Ships\VAB\Kerbal 1.craft
[LOG 23:37:33.053] Kerbal 1 loaded!
[LOG 23:37:36.799] putting ship to ground: 5.02401
[LOG 23:37:36.818] [Kerbal 1]: Ready to Launch - waiting to start physics...
[LOG 23:37:36.846] Crewmember Jebediah Kerman assigned to Mk1 Command Pod, seat # 0 (crew seat index: 0)
[LOG 23:37:36.858] [FLIGHT GLOBALS]: Switching To Vessel Kerbal 1 ---------------------- 
[LOG 23:37:36.875] setting new dominant body: Kerbin
FlightGlobals.mainBody: Kerbin
[LOG 23:37:36.894] Reference Frame: Rotating
[LOG 23:37:36.923] Vessel assembly complete!
[LOG 23:37:36.932] all systems started
[ERR 23:37:36.958] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[ERR 23:37:36.969] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[LOG 23:37:36.986] KerbalSimPit: ActionGroupsExtended installed: False
[LOG 23:37:37.058] [AsteroidSpawner]: New object found near Kerbin: Ast. HSJ-227!
[LOG 23:37:37.627] [UiApp] Awake: CurrencyWidgetsApp
[LOG 23:37:37.641] [UiApp] Awake: ResourceDisplay
[LOG 23:37:37.653] [UiApp] Awake: KSPedia
[LOG 23:37:37.664] [ApplicationLauncher] OnSceneLoadedGUIReady: scene FLIGHT ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 23:37:37.685] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 23:37:37.705] [KnowledgeBase] OnAppLauncherReady 45045
[LOG 23:37:37.733] [UIApp] OnDestroy: ContractsApp
[LOG 23:37:37.755] [MessageSystem] Reposition 0.02 45046
[LOG 23:37:37.786] [FlightIntegrator]: Reloaded drag cube for zeroed cube root part mk1pod on vessel Kerbal 1
[LOG 23:37:37.808] [FlightIntegrator]: Vessel Kerbal 1 has been unloaded 1.79769313486232E+308, applying analytic temperature 308.21362975195
[LOG 23:37:37.914] [PlanetariumCamera]: Focus: Kerbal 1
[LOG 23:37:37.944] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 23:37:37.955] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 23:37:37.978] [ResourceDisplay] OnAppStarted(): id: -186132
[LOG 23:37:37.990] [GenericAppFrame] Reposition 0.1693559 45050
[LOG 23:37:38.004] [ResourceDisplay] OnAppStarted(): id: 112538
[LOG 23:37:38.017] ResourceDisplay already exist, destroying this instance
[LOG 23:37:38.030] [UIApp] OnDestroy: ResourceDisplay
[LOG 23:37:38.062] CURRENCY WIDGET False False False
[LOG 23:37:38.072] [UIApp] OnDestroy: CurrencyWidgetsApp
[LOG 23:37:38.089] [UIApp] Adding KSPedia to Application Launcher
[WRN 23:37:38.126] HighlightingSystem : Framebuffer depth data is not available and can't be used to occlude highlighting. Highlighting occluders enabled.
[LOG 23:37:38.212] [UIMasterController]: ShowUI
[LOG 23:37:38.225] Flight State Captured
[LOG 23:37:38.234] Saving Achievements Tree...
[LOG 23:37:38.246] [MessageSystem] Save Messages
[LOG 23:37:38.301] Game State Saved as persistent
[LOG 23:37:39.314] Unpacking Kerbal 1
[LOG 23:37:39.430] [Progress Node Reached]: RecordsAltitude
[LOG 23:37:39.440] [Progress Node Reached]: RecordsSpeed
[LOG 23:37:39.452] [Progress Node Reached]: RecordsDistance
[ERR 23:37:42.304] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:42.346] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:42.416] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:42.459] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:42.531] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:42.578] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:42.653] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:42.696] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:42.771] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:42.812] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:43.224] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:43.263] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:43.336] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:43.380] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:43.455] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:43.499] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:43.568] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:43.616] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:43.695] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:43.738] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:43.811] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:43.854] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[ERR 23:37:43.926] Exception handling event onSerialReceived5 in class KerbalSimPitActionProvider:System.IndexOutOfRangeException: Array index is out of range.
  at KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data) [0x00000] in <filename unknown>:0 
  at EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1) [0x00000] in <filename unknown>:0 

[EXC 23:37:43.970] IndexOutOfRangeException: Array index is out of range.
	KerbalSimPitActionProvider.stageCallback (Byte ID, System.Object Data)
	EventData`2[System.Byte,System.Object].Fire (Byte data0, System.Object data1)
	UnityEngine.Debug:LogException(Exception)
	EventData`2:Fire(Byte, Object)
	KSPSerialPort:OnPacketReceived(Byte, Byte[], Byte)
	KSPSerialPort:ReceivedDataEvent(Byte[], Int32)
	<ReaderWorker>c__AnonStorey0:<>m__1(IAsyncResult)
	System.IO.Stream:BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)
	<ReaderWorker>c__AnonStorey0:<>m__0()
	KSPSerialPort:ReaderWorker()
[LOG 23:37:46.131] [Progress Node Reached]: FirstLaunch
[LOG 23:37:46.140] [Progress Node Complete]: FirstLaunch
[LOG 23:37:46.430] [UIMasterController]: ShowUI
[LOG 23:37:46.439] Game Paused!
[LOG 23:37:46.450] Active Vessel is in atmosphere. Cannot save.
[LOG 23:37:50.981] [UIApp] OnDestroy: ResourceDisplay
[LOG 23:37:51.006] KerbalSimPit: Succesfully removed AltitudeProvider
[LOG 23:37:51.017] KbApp.OnDestroy Vessel Crew
[LOG 23:37:51.029] KbApp.OnDestroy Planet Resources
[LOG 23:37:51.042] KbApp.OnDestroy Unowned Info
[LOG 23:37:51.064] KbApp.OnDestroy Planet Info
[LOG 23:37:51.084] [UIApp] OnDestroy: MessageSystem
[EXC 23:37:51.094] NullReferenceException: Object reference not set to an instance of an object
	PopupDialog.OnDestroy ()
[LOG 23:37:51.612] KerbalSimPit: Trying to read port COM4 that isn't open, sleeping
[LOG 23:37:51.714] KerbalSimPit: Shutting down.
[LOG 23:37:51.786] KbApp.OnDestroy Vessel Info

I was staging via the space-bar at 23:37:46.131 . Just checking if staging is working in general.

 

I hope my feedback isn't to frustrating. Perhaps I'm doing something fundamentally wrong?

Thanks for your effort.

Link to comment
Share on other sites

On 11/04/2017 at 7:43 AM, Benji said:

I hope my feedback isn't to frustrating.

Definitely not! :D Apologies for the delayed response, between work and a brief holiday last weekend I haven't had much time for working on this project recently. But I really do appreciate somebody else running it now to help make sure it's easy to use and robust enough.

I did spend some time on this a couple of nights ago, and pushed a few changes to the Arduino library. That fixes the compile error with the new stage code, but I still haven't properly tested it. Will give it some time to properly test the staging functionality this coming weekend though.

I've pushed some changes to the Arduino library that fix the compile error, and some dumb bugs I'd left in the demo sketches. I've also tweaked the handshaking again - all of the demos now turn on pin 13 as soon as the arduino starts, and turns it off when handshaking is complete. Hopefully a little easier to tell what's going on. :)

On 04/04/2017 at 2:32 AM, Benji said:

Do I have to split receiving and sending Arduinos? Is it meant to be this way?

Definitely not, although the only extensive testing I've done of both sending and receiving at once is in the HelloWorld sketch. I hadn't yet tried writing any code to combine the altitude and staging stuff, and I strongly suspect the stage code is pretty broken, sorry. :(

On 11/04/2017 at 7:27 AM, Benji said:

[LOG 23:15:26.177] KerbalSimPit: ActionGroupsExtended installed: False
[LOG 23:15:26.200] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.236] [AsteroidSpawner]: New object found near Kerbin: Ast. HSJ-227!
[LOG 23:15:26.281] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.363] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.365] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 23:15:26.446] KerbalSimPit: Serial port 0 subscribing to channel 4

 

This bit of your log is really weird. The "subscribing to channel" message should only be logged when the plugin gets a subscribe packet - that is, when you call SimPit.registerChannel(), and you're only doing that in init.

I uploaded your code to my spare Mega board, although unfortunately I don't have any other hardware to properly test what you're doing - it'll have to wait until I'm back in front of my workbench this weekend. But I'm definitely not seeing the same weird logs.

On 11/04/2017 at 7:43 AM, Benji said:

I was staging via the space-bar at 23:37:46.131 . Just checking if staging is working in general.

*sigh* Probably not. That exception looks like the changes I made in the plugin to support the stageEvent() shortcut aren't going as expected. The entire staging stuff was a bit of a hack and kind of rushed. I'll sit down with some real hardware over the weekend and make sure it's properly working.

Again, I really appreciate your time testing this stuff. :) 

Link to comment
Share on other sites

Oh, I nearly forgot about this:

On 05/04/2017 at 7:35 PM, Benji said:

I assume executing the ActionGroups works this way?:


      mySimPit.send(CAGACTIVATE_PACKET, ....etc.

What goes in the etc.-part ? How do I choose the ACG (0-9) I want to trigger. (activate, deactivate?)

 

I also see CAGDEACTIVATE_PACKET in the header-file. How does this work KSP-internally?

Does activating and deactivating CAG in the arduino-code correspond to activating, deactivating an antenna, when it's action is assigned to toggle in the VAB-ACG-Menu?

For the action groups, the payload should be the number of the action group to trigger. This can be either one byte, or an array of bytes to activate several at the same time.

eg, for custom action group 4, you want to call

byte ActionGroupID = 4;
mySimPit.send(CAGACTIVATE_PACKET, ActionGroupID);

It's important to make sure that if you're only sending one, it is sent as a single byte, either a byte or a char or an int_8t or similar. Trying to send 4 as an int above will mean two bytes are sent, which will be interpreted as activating action groups 0 and 4.

If you want to activate 4, 8, and 12 at the same time, then something like this should work:

byte ActionGroupArray[] = { 4, 8, 12 };
mySimPit.send(CAGACTIVATE_PACKET, ActionGroupArray);

As for how activate and deactivate are treated by the game, my understanding is that a boolean state is maintained for every custom action group, just like it is for the action groups like brakes, lights, etc. Every time you hit the 4 key on your keyboard, the game flips the boolean state of the action group. The activate and deactivate methods I'm using just make those explicit.

If you send multiple activate packets for action group 4, then the first will act as if 4 was pressed on the keyboard but the others won't have any effect. But sending an activate and then deactivate packet for group 4 will behave as if the 4 key was pressed twice. This makes it easy to work with flip switches - you can poll the switch every 100ms and send an activate/deactivate packet every time. But if you're using push buttons then you'll have to track the last sent packet so that the opposite one is sent on the next press.

That said, it would also be fairly simple to add a toggle packet that ignores state, just flips it. I'd be happy to add that to my todo list. In addition, I plan on making action group status a channel that can be subscribed to, so that when a new vessel loads a control panel can find out which action groups are already active.

Ugh, I'm setting some time aside to write up real API docs for the arduino library too.

Link to comment
Share on other sites

12 hours ago, stibbons said:

Oh, I nearly forgot about this:

For the action groups, the payload should be the number of the action group to trigger. This can be either one byte, or an array of bytes to activate several at the same time.

eg, for custom action group 4, you want to call


byte ActionGroupID = 4;
mySimPit.send(CAGACTIVATE_PACKET, ActionGroupID);

It's important to make sure that if you're only sending one, it is sent as a single byte, either a byte or a char or an int_8t or similar. Trying to send 4 as an int above will mean two bytes are sent, which will be interpreted as activating action groups 0 and 4.

If you want to activate 4, 8, and 12 at the same time, then something like this should work:


byte ActionGroupArray[] = { 4, 8, 12 };
mySimPit.send(CAGACTIVATE_PACKET, ActionGroupArray);

As for how activate and deactivate are treated by the game, my understanding is that a boolean state is maintained for every custom action group, just like it is for the action groups like brakes, lights, etc. Every time you hit the 4 key on your keyboard, the game flips the boolean state of the action group. The activate and deactivate methods I'm using just make those explicit.

If you send multiple activate packets for action group 4, then the first will act as if 4 was pressed on the keyboard but the others won't have any effect. But sending an activate and then deactivate packet for group 4 will behave as if the 4 key was pressed twice. This makes it easy to work with flip switches - you can poll the switch every 100ms and send an activate/deactivate packet every time. But if you're using push buttons then you'll have to track the last sent packet so that the opposite one is sent on the next press.

That said, it would also be fairly simple to add a toggle packet that ignores state, just flips it. I'd be happy to add that to my todo list. In addition, I plan on making action group status a channel that can be subscribed to, so that when a new vessel loads a control panel can find out which action groups are already active.

Ugh, I'm setting some time aside to write up real API docs for the arduino library too.

I have a little compiler-thingie.

Using this:
   byte ActionGroupID = 9;
   mySimPit.send(CAGACTIVATE_PACKET, ActionGroupID);

The compiler tells me that:
   no matching function for call to 'KerbalSimPit::send(const byte&, byte&)'

 

Hmmm, that's hard to decide between buttons and switches for the action groups. Until now I always used Action Groups to toggle things, but I'm definitly tempted by switches. Codewise it would be a little-tiny bit more, since I need to remember and check if the current status was already send, but hey...why not...

Could you do me a favor? I'm building my new panel in moduls and since I already have an abort button installed (hardware-wise), would you integrate an abortEvent next?

I'm really looking forward for this to work. I had a little board (stage, throttle and 2 joysticks for "SAS" and RCS) communicating via KSPIO, but I had so much trouble with the different Windows versions and the USB-Serial connections. At some point I gave up.

Is it okai for me to take a look at your sourcecode. I'm a little curious on how you actually talk to KSP.

Link to comment
Share on other sites

 

37 minutes ago, Benji said:

The compiler tells me that:
   no matching function for call to 'KerbalSimPit::send(const byte&, byte&)'

Oh, I messed up, forgot that you need to be sending the size as well. You want to be calling it as

mySimPit.send(CAGACTIVATE_PACKET, ActionGroupID, 1);
// Or, to be thorough, mySimPit.send(CAGACTIVATE_PACKET, ActionGroupID, sizeof(ActionGroupID))

 

37 minutes ago, Benji said:

Hmmm, that's hard to decide between buttons and switches for the action groups. Until now I always used Action Groups to toggle things, but I'm definitly tempted by switches. Codewise it would be a little-tiny bit more, since I need to remember and check if the current status was already send, but hey...why not...

I wrote a long explanation of how I'm using push buttons to toggle actions in my KSPSerialIO controller here. Like you say, it's a little bit more code and a couple more variables to track state, but if you're doing it all with bitwise math, then the extra variables only come down to a few ints.

37 minutes ago, Benji said:

Could you do me a favor? I'm building my new panel in moduls and since I already have an abort button installed (hardware-wise), would you integrate an abortEvent next?

Heh, the standard action groups (brake, lights, abort, etc) were next on my list anyway, so yeah they'll be coming next after I've gotten the current providers a little more solid.

37 minutes ago, Benji said:

Is it okai for me to take a look at your sourcecode. I'm a little curious on how you actually talk to KSP.

Of course! The plugin source code lives at https://bitbucket.org/pjhardy/kerbalsimpit , and there's a growing body of documentation for it at https://bitbucket.org/pjhardy/kerbalsimpit/wiki/Home . The arduino library code is at https://bitbucket.org/pjhardy/kerbalsimpit-arduino . And finally I track what I'm working on and what I want to work on next on a trello board at https://trello.com/b/t6YUftuS/kerbalsimpit-progress

 

Edited by stibbons
Link to comment
Share on other sites

16 hours ago, stibbons said:

Hmm. I never bothered using bitshifting and things.

But now I roughly counted up to 40 booleans I would use, working with switches. But I think I'll change this. I can do this in three 16bit uint's. That's cool. And if I understand correctly, it will be faster too.

 

Thanks for your push, driving me to learn new things.

Link to comment
Share on other sites

Lots of small changes to the Arduino library, and I've uploaded a new 0.4 prerelease of the plugin. The CKAN will index it shortly.

I've changed some core functionality in the way the library is used. First of all, the serial object you're planning on using needs to be passed in when you declare your KerbalSimPit object, for most people this means calling it like this:

// KerbalSimPit object
KerbalSimPit mySimPit(&Serial);

And in your init() method, set up your serial speed as usual, and call mySimPit.init() without any arguments. This allows use of any serial device your hardware supports (Serial1 on a Mega, for example). In theory, SoftwareSerial connections are also supported, but I haven't yet tested this setup.

All of the example sketches have been updated to work with the library, have a look through those for more detail.

The 0.4 plugin release is a small update that just fixes the staging functionality. Can confirm that the current arduino demo and plugin now actually really does work properly for staging events. :)

My plan at the moment is to do some proper testing of the action group functionality, and hopefully sort that out in the next day or two. Following that, I'll be looking at applying the last little bits of polish to the Arduino library before tagging a real release and getting it included in the Arduino Library Manager. And then I'll be in a good position to start expanding the game functionality

Link to comment
Share on other sites

Just uploaded a 0.5 prerelease. The plugin now supports a "toggle CAG" packet, so you can just toggle the current custom action group state without needing to know what it is - sending a toggleCAG packet is basically the equivalent of hitting the keyboard key for the action group.

The arduino library has these functions for working with action groups:

KerbalSimPit::activateCAG(byte actionGroupID);
KerbalSimPit::deactivateCAG(byte actionGroupID);
KerbalSimPit::toggleCAG(byte actionGroupID);

Note that these now only accept a single ID, so to toggle action group 4 you just need to call mySimPit.toggleCAG(4); . If you need to work with multiple AGs at once, your only real option right now is to send a custom payload. I'll be sticking to this pattern moving forward - the helper functions only operate on a single element at a time where it makes sense, but multiple elements still supported by calling send directly.

Top of the to-do list now is the regular action groups.

Link to comment
Share on other sites

3 hours ago, stibbons said:

Just uploaded a 0.5 prerelease. The plugin now supports a "toggle CAG" packet, so you can just toggle the current custom action group state without needing to know what it is - sending a toggleCAG packet is basically the equivalent of hitting the keyboard key for the action group.

The arduino library has these functions for working with action groups:


KerbalSimPit::activateCAG(byte actionGroupID);
KerbalSimPit::deactivateCAG(byte actionGroupID);
KerbalSimPit::toggleCAG(byte actionGroupID);

Note that these now only accept a single ID, so to toggle action group 4 you just need to call mySimPit.toggleCAG(4); . If you need to work with multiple AGs at once, your only real option right now is to send a custom payload. I'll be sticking to this pattern moving forward - the helper functions only operate on a single element at a time where it makes sense, but multiple elements still supported by calling send directly.

Top of the to-do list now is the regular action groups.

Wow, your fast. I missed the 0.4 prerelease while I was rewriting my code. I think I'll stick to activate and deactivate the CAG. Rewrote some code, switching from booleans to bit-manipulation and cleaning some other parts. I'm not a pro at this, but I have to say it's so elegant to manipulate and compare these uint.

 

I'm currently not at hometo test. Does this work?

activateCAG((byte)2);

Or do I have to go the long way:

byte dings = 2;

activateCAG(dings); ?

 

Yeah. I'm looking forward to the regular action groups, since hardware-wise these are what I started with.

 

Besides. I blew one Arduino. I had a switch that needed 12V for the indicator lights, so I hooked it up, but I didn't realise that the two connectors I connected to the Arduino where (inside the switch) wired with the two connectors to my 12V source. Some weird way to build a switch like that.

Link to comment
Share on other sites

4 hours ago, Benji said:

I'm currently not at hometo test. Does this work?

activateCAG((byte)2);

Or do I have to go the long way:

byte dings = 2;

activateCAG(dings); ?

So the test code I was using (literally the existing stage demo with simpit call changed) does the long way

byte dings = 2;
mySimPit.activateCAG(dings);

I don't have my hardware here to test it either, but there's no reason you can't just do

mySimPit.activateCAG(2);

You shouldn't even need an explicit cast to a byte, it'll be taken care of for you.

 

5 hours ago, Benji said:

I had a switch that needed 12V for the indicator lights, so I hooked it up, but I didn't realise that the two connectors I connected to the Arduino where (inside the switch) wired with the two connectors to my 12V source.

Ow. :( Did that blow the whole chip? You'll sometimes find that overdriving will burn out that one pin, but the rest of the board will keep working. Either way, letting the magic smoke out is never fun.

Link to comment
Share on other sites

1 hour ago, stibbons said:

 

1 hour ago, stibbons said:

So the test code I was using (literally the existing stage demo with simpit call changed) does the long way



byte dings = 2;
mySimPit.activateCAG(dings);

I don't have my hardware here to test it either, but there's no reason you can't just do



mySimPit.activateCAG(2);

You shouldn't even need an explicit cast to a byte, it'll be taken care of for you.

 

I will try this very short one. I wasn't brave enough to just throw numbers in.

 

1 hour ago, stibbons said:
1 hour ago, stibbons said:

Ow. :( Did that blow the whole chip? You'll sometimes find that overdriving will burn out that one pin, but the rest of the board will keep working. Either way, letting the magic smoke out is never fun.

 

Ja, the whole board is dead. There was a saying I think. I love the smell of (frying capacitors or some ceramic elements) in the morning. Very special smell.

Link to comment
Share on other sites

v0.6 prerelease is live. This version adds support for the standard action groups. There are three new methods (activateAction, deactivateAction, toggleAction), and constants for STAGE_ACTION, GEAR_ACTION, LIGHT_ACTION, RCS_ACTION, SAS_ACTION, BRAKES_ACTION, ABORT_ACTION.

Activate the brakes by calling 

mySimPit.activateAction(BRAKES_ACTION);

Actions can be combined by ORing them together, so the states of several can be changed at once. To turn off both RCS and SAS, call

mySimPit.deactivateAction(RCS_ACTION | SAS_ACTION);

The toggle command, as with custom action groups, flips the state of the given action group without needing to know the current state.

Finally, I've rejigged the way the stage handler works again. At the end of the day, the stage action is the same as the others, just with some special bits tacked on. To activate the next stage, call

mySimPit.activateAction(STAGE_ACTION);

If you do happen to be adding other actions to the Stage action group, it's worthwhile knowing that deactivating STAGE_ACTION does indeed work, and won't activate the next stage.

Currently working on writing up proper API docs for the Arduino library, and the next prerelease will help bed down how I'm sending telemetry out of the game, with a few more telemetry providers.

Link to comment
Share on other sites

Just pushed some changes to the arduino library:

  • Fixes a really terrible piece of code that was working fine when compiled with the teensy toolchain, but was causing packet receiving to fail on AVR boards. All of the demo code now runs properly on my Arduino Mega.
  • Stream objects are now passed to the initialiser by reference instead of a pointer. That is, you now initialise the library like this:
    KerbalSimPit mySimPit(Serial);

    Just a small quality of life hack to improve readability and bring the library closer to Arduino style guidelines. All of the demos have been updated to use this.

  • Oh, and I dropped the altitude in the altitude trigger demo down to 500m, so you don't have to wait around for ages.

Those changes have been pushed up now, and I'd strongly recommend updating if you're using a Uno or a Mega. Sorry. :(

Still working on adding a couple more telemetry handlers to the plugin. Then I'll tidy up the arduino code a little more before opening a pull request to add it to the Arduino Library Manager, to make it much easier to install.

(also, can you tell that I'm at the end of my second four-day weekend in a row? Easter and ANZAC day were great for getting some solid hacking done :D )

 

Link to comment
Share on other sites

I've been doing a lot more cleanup of the Arduino library.

For messages that include multiple variables, I'm now including a struct describing the packet, and a method to parse it. To decode the altitude packet, you can now just do this

// The altitudeMessage struct contains sea level and surface altitude
altitudeMessage myAltitude;
// Convert the received message to an altitude struct
myAltitude = parseAltitude(msg);
// Display the surface altitude on an LCD
lcd.print(myAltitude.surface);

All of the constants related to message types have been renamed to *_MESSAGE, and all of the examples now name their functions messageHandler. And there's some other minor cosmetic changes to the interfaces designed to more closely fit in with the Arduino style guide. This is all prep work for including more telemetry handlers, and getting the library ready for a 1.0 release.

Link to comment
Share on other sites

Hej.

You're code-clean-up updates are great.It's starting to really look good now. But unfortunatly I still get Spamming in the log: [LOG 11:48:02.616] KerbalSimPit: Serial port 0 subscribing to channel 4 when I subscribe to the altitudeMessage.

 

After I tried my code; it didn't wok at all. I wasn't around for a while, so I thought maybe I messed up some changes. I think foor debugging I'll stick to your demos. I loaded up your Altitude Demo. The LED doesn't light up at 500m.

Here's the log:

[LOG 11:47:12.954] ******* Log Initiated for Kerbal Space Program - 1.2.9.1750 (WindowsPlayer x64)-pre en-us *******
Kerbal Space Program - 1.2.9.1750 (WindowsPlayer x64)-pre en-us


OS: Windows 7 Service Pack 1 (6.1.7601) 64bit
CPU: AMD FX-8370 Eight-Core Processor  (8)
RAM: 16341
GPU: NVIDIA GeForce GTX 970 (4008MB)
SM: 30 (Direct3D 9.0c [nvd3dumx.dll 22.21.13.8165])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, Default, ARGB2101010, DefaultHDR, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf, R8


Log started: Thu, Apr 27, 2017 11:47:12


[LOG 11:47:13.422] AppCanvas MASK: 3458764513820540928
[LOG 11:47:13.423] ActionCanvas MASK: 3458764513820540928
[LOG 11:47:13.428] PhysicsGlobals: Loading database
[WRN 11:47:14.593] [SpaceNavigatorWindows]: Could not initialize device.

[LOG 11:47:14.599] Updating font: JD-LCD_rounded SDF to en-us
[LOG 11:47:15.689] Load(Assembly): KerbalSimPit/KerbalSimPit
[LOG 11:47:15.691] AssemblyLoader: Loading assembly at D:\SteamLibrary\KSP\SimPitTest\GameData\KerbalSimPit\KerbalSimPit.dll
[LOG 11:47:15.723] AssemblyLoader: KSPAssembly 'KerbalSimPit' V0.6
[LOG 11:47:15.724] Load(Assembly): KerbalSimPit/SerialPortLib2
[LOG 11:47:15.724] AssemblyLoader: Loading assembly at D:\SteamLibrary\KSP\SimPitTest\GameData\KerbalSimPit\SerialPortLib2.dll
[LOG 11:47:15.727] Load(Assembly): Squad/Plugins/KSPSteamCtrlr
[LOG 11:47:15.728] AssemblyLoader: Loading assembly at D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\Plugins\KSPSteamCtrlr.dll
[LOG 11:47:15.730] Load(Assembly): Squad/Plugins/Steamworks.NET
[LOG 11:47:15.731] AssemblyLoader: Loading assembly at D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\Plugins\Steamworks.NET.dll
[LOG 11:47:15.735] AssemblyLoader: Loading assemblies
[LOG 11:47:15.793] VesselModules: Found VesselModule of type CommNetVessel with order 999
[LOG 11:47:15.797] VesselModules: Found VesselModule of type FlightIntegrator with order 0
[LOG 11:47:15.799] VesselModules: Found 2 VesselModule types
[LOG 11:47:15.807] 
************************************************************************

Environment Info
Win32NT 7FFFFFFFFFFFFFFF  Args: KSP_x64.exe 

Mod DLLs found:
Stock assembly: Assembly-CSharp v1.0.0.0
KerbalSimPit v0.6.0.0
SerialPortLib2 v1.0.2.0
Stock assembly: KSPSteamCtrlr v0.0.1.35
Stock assembly: Steamworks.NET v8.0.0.0 / v8.0.0

Folders and files in GameData:
KerbalSimPit
Stock folder: Squad


************************************************************************

[LOG 11:47:15.818] [AddonLoader]: Instantiating addon 'KerbalSimPit' from assembly 'KerbalSimPit'
[LOG 11:47:15.820] [AddonLoader]: Instantiating addon 'KSPSteamController' from assembly 'KSPSteamCtrlr'
[LOG 11:47:16.405] Load(Audio): Squad/Sounds/editorLoop01
[LOG 11:47:16.422] MainCanvas MASK: 3458764513820540928
[LOG 11:47:16.429] KerbalSimPit: Settings loaded.
[LOG 11:47:16.431] KerbalSimPit: Found 1 serial ports
[LOG 11:47:16.445] KerbalSimPit: Opened COM4
[LOG 11:47:16.445] KerbalSimPit: Starting read thread for port COM4
[LOG 11:47:16.446] KerbalSimPit: Started.
[LOG 11:47:16.446] KerbalSimPit: Starting event dispatch loop
[LOG 11:47:16.759] Load(Audio): Squad/Sounds/elev_loop
[LOG 11:47:16.773] Load(Audio): Squad/Sounds/elev_start
[LOG 11:47:16.785] Load(Audio): Squad/Sounds/elev_stop
[LOG 11:47:16.804] Load(Audio): Squad/Sounds/sound_ambience_nature
[LOG 11:47:16.825] Load(Audio): Squad/Sounds/sound_click_flick
[LOG 11:47:16.836] Load(Audio): Squad/Sounds/sound_click_latch
[LOG 11:47:16.848] Load(Audio): Squad/Sounds/sound_click_sharp
[LOG 11:47:16.859] Load(Audio): Squad/Sounds/sound_click_tick
[LOG 11:47:16.870] Load(Audio): Squad/Sounds/sound_click_tock
[LOG 11:47:16.880] Load(Audio): Squad/Sounds/sound_decoupler_fire
[LOG 11:47:16.891] Load(Audio): Squad/Sounds/sound_delete_bin
[LOG 11:47:16.902] Load(Audio): Squad/Sounds/sound_explosion_debris1
[LOG 11:47:16.914] Load(Audio): Squad/Sounds/sound_explosion_debris2
[LOG 11:47:16.926] Load(Audio): Squad/Sounds/sound_explosion_large
[LOG 11:47:16.939] Load(Audio): Squad/Sounds/sound_rocket_mini
[LOG 11:47:16.950] Load(Audio): Squad/Sounds/sound_rocket_spurts
[LOG 11:47:16.963] Load(Audio): Squad/Sounds/sound_servomotor
[LOG 11:47:16.973] Load(Audio): Squad/Sounds/sound_tab_extend
[LOG 11:47:16.983] Load(Audio): Squad/Sounds/sound_tab_retreat
[LOG 11:47:16.993] Load(Texture): Squad/Agencies/C7AerospaceDivision
[LOG 11:47:17.000] Load(Texture): Squad/Agencies/C7AerospaceDivision_scaled
[LOG 11:47:17.007] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium
[LOG 11:47:17.012] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium_scaled
[LOG 11:47:17.017] Load(Texture): Squad/Agencies/ExperimentalEngineering
[LOG 11:47:17.022] Load(Texture): Squad/Agencies/ExperimentalEngineering_scaled
[LOG 11:47:17.027] Load(Texture): Squad/Agencies/FlooydResearchLab
[LOG 11:47:17.031] Load(Texture): Squad/Agencies/FlooydResearchLab_scaled
[LOG 11:47:17.036] Load(Texture): Squad/Agencies/GoliathNationalProducts
[LOG 11:47:17.041] Load(Texture): Squad/Agencies/GoliathNationalProducts_scaled
[LOG 11:47:17.046] Load(Texture): Squad/Agencies/IntegratedIntegrals
[LOG 11:47:17.051] Load(Texture): Squad/Agencies/IntegratedIntegrals_scaled
[LOG 11:47:17.056] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics
[LOG 11:47:17.060] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics_scaled
[LOG 11:47:17.065] Load(Texture): Squad/Agencies/JebsJunkyard
[LOG 11:47:17.070] Load(Texture): Squad/Agencies/JebsJunkyard_scaled
[LOG 11:47:17.074] Load(Texture): Squad/Agencies/KerbalMotion
[LOG 11:47:17.079] Load(Texture): Squad/Agencies/KerbalMotion_scaled
[LOG 11:47:17.084] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety
[LOG 11:47:17.088] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety_scaled
[LOG 11:47:17.093] Load(Texture): Squad/Agencies/Kerbodyne
[LOG 11:47:17.098] Load(Texture): Squad/Agencies/Kerbodyne_scaled
[LOG 11:47:17.102] Load(Texture): Squad/Agencies/Kerlington
[LOG 11:47:17.107] Load(Texture): Squad/Agencies/Kerlington_scaled
[LOG 11:47:17.111] Load(Texture): Squad/Agencies/MaxoConstructionToys
[LOG 11:47:17.116] Load(Texture): Squad/Agencies/MaxoConstructionToys_scaled
[LOG 11:47:17.121] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup
[LOG 11:47:17.125] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup_scaled
[LOG 11:47:17.130] Load(Texture): Squad/Agencies/OMBDemolition
[LOG 11:47:17.134] Load(Texture): Squad/Agencies/OMBDemolition_scaled
[LOG 11:47:17.139] Load(Texture): Squad/Agencies/PeriapsisCo
[LOG 11:47:17.143] Load(Texture): Squad/Agencies/PeriapsisCo_scaled
[LOG 11:47:17.148] Load(Texture): Squad/Agencies/Probodobodyne
[LOG 11:47:17.152] Load(Texture): Squad/Agencies/Probodobodyne_scaled
[LOG 11:47:17.157] Load(Texture): Squad/Agencies/R&D
[LOG 11:47:17.161] Load(Texture): Squad/Agencies/R&D_scaled
[LOG 11:47:17.166] Load(Texture): Squad/Agencies/ReactionSystemsLtd
[LOG 11:47:17.170] Load(Texture): Squad/Agencies/ReactionSystemsLtd_scaled
[LOG 11:47:17.175] Load(Texture): Squad/Agencies/Rockomax
[LOG 11:47:17.179] Load(Texture): Squad/Agencies/Rockomax_scaled
[LOG 11:47:17.184] Load(Texture): Squad/Agencies/Rokea
[LOG 11:47:17.189] Load(Texture): Squad/Agencies/Rokea_scaled
[LOG 11:47:17.193] Load(Texture): Squad/Agencies/SeansCannery
[LOG 11:47:17.198] Load(Texture): Squad/Agencies/SeansCannery_scaled
[LOG 11:47:17.202] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps
[LOG 11:47:17.207] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps_scaled
[LOG 11:47:17.212] Load(Texture): Squad/Agencies/StrutCo
[LOG 11:47:17.216] Load(Texture): Squad/Agencies/StrutCo_scaled
[LOG 11:47:17.221] Load(Texture): Squad/Agencies/Vac-Co
[LOG 11:47:17.225] Load(Texture): Squad/Agencies/Vac-Co_scaled
[LOG 11:47:17.230] Load(Texture): Squad/Agencies/WinterOwl
[LOG 11:47:17.234] Load(Texture): Squad/Agencies/WinterOwl_scaled
[LOG 11:47:17.239] Load(Texture): Squad/Agencies/ZaltonicElectronics
[LOG 11:47:17.243] Load(Texture): Squad/Agencies/ZaltonicElectronics_scaled
[LOG 11:47:17.248] Load(Texture): Squad/Contracts/Icons/balloon
[LOG 11:47:17.253] Load(Texture): Squad/Contracts/Icons/custom
[LOG 11:47:17.257] Load(Texture): Squad/Contracts/Icons/default
[LOG 11:47:17.261] Load(Texture): Squad/Contracts/Icons/dish
[LOG 11:47:17.266] Load(Texture): Squad/Contracts/Icons/eva
[LOG 11:47:17.270] Load(Texture): Squad/Contracts/Icons/gravity
[LOG 11:47:17.274] Load(Texture): Squad/Contracts/Icons/marker
[LOG 11:47:17.279] Load(Texture): Squad/Contracts/Icons/pressure
[LOG 11:47:17.283] Load(Texture): Squad/Contracts/Icons/report
[LOG 11:47:17.287] Load(Texture): Squad/Contracts/Icons/sample
[LOG 11:47:17.292] Load(Texture): Squad/Contracts/Icons/seismic
[LOG 11:47:17.296] Load(Texture): Squad/Contracts/Icons/thermometer
[LOG 11:47:17.301] Load(Texture): Squad/Contracts/Icons/vessel
[LOG 11:47:17.305] Load(Texture): Squad/Flags/09
[LOG 11:47:17.324] Load(Texture): Squad/Flags/blorbs
[LOG 11:47:17.338] Load(Texture): Squad/Flags/bullseye
[LOG 11:47:17.352] Load(Texture): Squad/Flags/capsule
[LOG 11:47:17.366] Load(Texture): Squad/Flags/circles
[LOG 11:47:17.379] Load(Texture): Squad/Flags/default
[LOG 11:47:17.393] Load(Texture): Squad/Flags/esa_dark_blue
[LOG 11:47:17.407] Load(Texture): Squad/Flags/hexagon
[LOG 11:47:17.420] Load(Texture): Squad/Flags/hexagonCircles
[LOG 11:47:17.434] Load(Texture): Squad/Flags/kerbal1
[LOG 11:47:17.447] Load(Texture): Squad/Flags/kerbal2
[LOG 11:47:17.460] Load(Texture): Squad/Flags/kerbin
[LOG 11:47:17.475] Load(Texture): Squad/Flags/kerbinmunflag
[LOG 11:47:17.489] Load(Texture): Squad/Flags/line
[LOG 11:47:17.502] Load(Texture): Squad/Flags/minimalistic
[LOG 11:47:17.517] Load(Texture): Squad/Flags/NASA
[LOG 11:47:17.532] Load(Texture): Squad/Flags/orbit
[LOG 11:47:17.545] Load(Texture): Squad/Flags/orbs
[LOG 11:47:17.558] Load(Texture): Squad/Flags/retro
[LOG 11:47:17.572] Load(Texture): Squad/Flags/rings
[LOG 11:47:17.587] Load(Texture): Squad/Flags/rocketScience
[LOG 11:47:17.601] Load(Texture): Squad/Flags/satellite
[LOG 11:47:17.615] Load(Texture): Squad/Flags/spheres
[LOG 11:47:17.629] Load(Texture): Squad/Flags/squadLogo
[LOG 11:47:17.643] Load(Texture): Squad/Flags/squadLogo2
[LOG 11:47:17.656] Load(Texture): Squad/Flags/stripes
[LOG 11:47:17.669] Load(Texture): Squad/Flags/trees
[LOG 11:47:17.683] Load(Texture): Squad/Flags/trippy
[LOG 11:47:17.698] Load(Texture): Squad/Flags/uk_space_agency
[LOG 11:47:17.710] Load(Texture): Squad/FX/DiamondBlue
[LOG 11:47:17.712] Load(Texture): Squad/FX/FlameBlueOrange
[LOG 11:47:17.714] Load(Texture): Squad/FX/FlamePurple
[LOG 11:47:17.716] Load(Texture): Squad/FX/FlameRed
[LOG 11:47:17.717] Load(Texture): Squad/FX/FlameRedOrange
[LOG 11:47:17.719] Load(Texture): Squad/FX/Monoprop
[LOG 11:47:17.721] Load(Texture): Squad/FX/plasma2
[LOG 11:47:17.722] Load(Texture): Squad/FX/rocketplume2
[LOG 11:47:17.724] Load(Texture): Squad/FX/shockDiamond2
[LOG 11:47:17.726] Load(Texture): Squad/FX/smokepuff1
[LOG 11:47:17.728] Load(Texture): Squad/Interiors/Administration/AdminBuilding_Lvl1
[LOG 11:47:17.747] Load(Texture): Squad/Interiors/Administration/AdminBuilding_Lvl2
[LOG 11:47:17.776] Load(Texture): Squad/Interiors/Administration/AdminBuilding_Lvl3
[LOG 11:47:17.794] Load(Texture): Squad/MenuProps/MunOrBust
[LOG 11:47:17.800] Load(Texture): Squad/PartList/SimpleIcons/cs_main
[LOG 11:47:17.810] Load(Texture): Squad/PartList/SimpleIcons/cs_mk2
[LOG 11:47:17.822] Load(Texture): Squad/PartList/SimpleIcons/cs_mk3
[LOG 11:47:17.835] Load(Texture): Squad/PartList/SimpleIcons/cs_size0
[LOG 11:47:17.844] Load(Texture): Squad/PartList/SimpleIcons/cs_size1
[LOG 11:47:17.853] Load(Texture): Squad/PartList/SimpleIcons/cs_size2
[LOG 11:47:17.862] Load(Texture): Squad/PartList/SimpleIcons/cs_size3
[LOG 11:47:17.872] Load(Texture): Squad/PartList/SimpleIcons/cs_surface
[LOG 11:47:17.881] Load(Texture): Squad/PartList/SimpleIcons/fuels_monopropellant
[LOG 11:47:17.891] Load(Texture): Squad/PartList/SimpleIcons/fuels_ore
[LOG 11:47:17.901] Load(Texture): Squad/PartList/SimpleIcons/fuels_oxidizer
[LOG 11:47:17.910] Load(Texture): Squad/PartList/SimpleIcons/fuels_solidfuel
[LOG 11:47:17.920] Load(Texture): Squad/PartList/SimpleIcons/fuels_xenongas
[LOG 11:47:17.929] Load(Texture): Squad/PartList/SimpleIcons/number1
[LOG 11:47:17.939] Load(Texture): Squad/PartList/SimpleIcons/number2
[LOG 11:47:17.953] Load(Texture): Squad/PartList/SimpleIcons/number3
[LOG 11:47:17.963] Load(Texture): Squad/PartList/SimpleIcons/number4
[LOG 11:47:17.971] Load(Texture): Squad/PartList/SimpleIcons/number5
[LOG 11:47:17.980] Load(Texture): Squad/PartList/SimpleIcons/number6
[LOG 11:47:17.989] Load(Texture): Squad/PartList/SimpleIcons/number7
[LOG 11:47:17.999] Load(Texture): Squad/PartList/SimpleIcons/number8
[LOG 11:47:18.008] Load(Texture): Squad/PartList/SimpleIcons/number9
[LOG 11:47:18.017] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advaerodynamics
[LOG 11:47:18.027] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advancedmotors
[LOG 11:47:18.036] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advconstruction
[LOG 11:47:18.045] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advelectrics
[LOG 11:47:18.054] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advexploration
[LOG 11:47:18.064] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advflightcontrol
[LOG 11:47:18.073] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advlanding
[LOG 11:47:18.083] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advmetalworks
[LOG 11:47:18.094] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advrocketry
[LOG 11:47:18.104] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advsciencetech
[LOG 11:47:18.113] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advunmanned
[LOG 11:47:18.122] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerodynamicsystems
[LOG 11:47:18.131] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerospacetech
[LOG 11:47:18.140] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_automation
[LOG 11:47:18.149] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicprobes
[LOG 11:47:18.158] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicrocketry
[LOG 11:47:18.166] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_composites
[LOG 11:47:18.176] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electrics
[LOG 11:47:18.185] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electronics
[LOG 11:47:18.194] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_evatech
[LOG 11:47:18.203] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalaerodynamics
[LOG 11:47:18.212] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalelectrics
[LOG 11:47:18.221] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalmotors
[LOG 11:47:18.230] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalrocketry
[LOG 11:47:18.238] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalscience
[LOG 11:47:18.247] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fieldscience
[LOG 11:47:18.256] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_flightcontrol
[LOG 11:47:18.265] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fuelsystems
[LOG 11:47:18.274] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalconstruction
[LOG 11:47:18.283] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalrocketry
[LOG 11:47:18.292] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generic
[LOG 11:47:18.300] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavierrocketry
[LOG 11:47:18.309] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyaerodynamics
[LOG 11:47:18.317] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyrocketry
[LOG 11:47:18.326] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudeflight
[LOG 11:47:18.336] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudepropulsion
[LOG 11:47:18.345] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_hypersonicflight
[LOG 11:47:18.354] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_ionpropulsion
[LOG 11:47:18.363] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_landing
[LOG 11:47:18.372] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largecontrol
[LOG 11:47:18.381] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeelectrics
[LOG 11:47:18.391] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeprobes
[LOG 11:47:18.400] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_metamaterials
[LOG 11:47:18.409] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nanolathing
[LOG 11:47:18.418] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nuclearpropulsion
[LOG 11:47:18.428] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_precisionengineering
[LOG 11:47:18.437] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_robotics
[LOG 11:47:18.446] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_sciencetech
[LOG 11:47:18.456] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedconstruction
[LOG 11:47:18.465] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedcontrol
[LOG 11:47:18.474] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedelectrics
[LOG 11:47:18.483] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_stability
[LOG 11:47:18.492] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_start
[LOG 11:47:18.500] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_supersonicflight
[LOG 11:47:18.509] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_survivability
[LOG 11:47:18.519] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_unmannedtech
[LOG 11:47:18.528] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_veryheavyrocketry
[LOG 11:47:18.536] Load(Texture): Squad/PartList/SimpleIcons/RDicon_aerospaceTech2
[LOG 11:47:18.545] Load(Texture): Squad/PartList/SimpleIcons/RDicon_commandmodules
[LOG 11:47:18.554] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-advanced
[LOG 11:47:18.563] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-highPerformance
[LOG 11:47:18.572] Load(Texture): Squad/PartList/SimpleIcons/RDicon_largeVolumeContainment
[LOG 11:47:18.581] Load(Texture): Squad/PartList/SimpleIcons/RDicon_miniaturization
[LOG 11:47:18.590] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsion-precision
[LOG 11:47:18.599] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsionSystems
[LOG 11:47:18.608] Load(Texture): Squad/PartList/SimpleIcons/RDicon_telescope
[LOG 11:47:18.617] Load(Texture): Squad/Parts/Aero/aerodynamicNoseCone/Nosecone
[LOG 11:47:18.635] Load(Texture): Squad/Parts/Aero/airbrake/Airbrake
[LOG 11:47:18.637] Load(Texture): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 11:47:18.639] Load(Texture): Squad/Parts/Aero/airlinerWings/AirlinerWings
[LOG 11:47:18.657] Load(Texture): Squad/Parts/Aero/airplaneFins/AirplaneFins
[LOG 11:47:18.662] Load(Texture): Squad/Parts/Aero/basicFin/BasicFin
[LOG 11:47:18.664] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes
[LOG 11:47:18.666] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes_Heat
[LOG 11:47:18.668] Load(Texture): Squad/Parts/Aero/cones/Cones
[LOG 11:47:18.671] Load(Texture): Squad/Parts/Aero/cones/Cones_Heat
[LOG 11:47:18.672] Load(Texture): Squad/Parts/Aero/fairings/AutoTruss
[LOG 11:47:18.675] Load(Texture): Squad/Parts/Aero/fairings/FairingBase
[LOG 11:47:18.676] Load(Texture): Squad/Parts/Aero/fairings/fairings_diff
[LOG 11:47:18.680] Load(Texture): Squad/Parts/Aero/HeatShield/Fairing
[LOG 11:47:18.681] Load(Texture): Squad/Parts/Aero/HeatShield/heatshield
[LOG 11:47:18.684] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 11:47:18.689] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShieldFairing
[LOG 11:47:18.691] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield_NRM
[LOG 11:47:18.696] Load(Texture): Squad/Parts/Aero/intakeRadialLong/Radial_long
[LOG 11:47:18.714] Load(Texture): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 11:47:18.716] Load(Texture): Squad/Parts/Aero/protectiveRocketNoseMk7/model000
[LOG 11:47:18.718] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 11:47:18.721] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake_Heat
[LOG 11:47:18.723] Load(Texture): Squad/Parts/Aero/shuttleWings/ShuttleWings
[LOG 11:47:18.738] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model000
[LOG 11:47:18.740] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model001
[LOG 11:47:18.743] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model000
[LOG 11:47:18.745] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model001
[LOG 11:47:18.747] Load(Texture): Squad/Parts/Aero/wingletDeltaDeluxe/model000
[LOG 11:47:18.750] Load(Texture): Squad/Parts/Aero/wings/Wings
[LOG 11:47:18.754] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model000
[LOG 11:47:18.756] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model001
[LOG 11:47:18.759] Load(Texture): Squad/Parts/Command/cupola/cupola_Emissive
[LOG 11:47:18.762] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_diff
[LOG 11:47:18.767] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_normal
[LOG 11:47:18.787] Load(Texture): Squad/Parts/Command/cupola/window
[LOG 11:47:18.789] Load(Texture): Squad/Parts/Command/externalCommandSeat/model000
[LOG 11:47:18.793] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin
[LOG 11:47:18.798] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_Illum
[LOG 11:47:18.800] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_n
[LOG 11:47:18.805] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/window
[LOG 11:47:18.807] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model000
[LOG 11:47:18.809] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model001
[LOG 11:47:18.811] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model000
[LOG 11:47:18.814] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model001
[LOG 11:47:18.816] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model002
[LOG 11:47:18.818] Load(Texture): Squad/Parts/Command/Mk1-2Pod/ladder
[LOG 11:47:18.820] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch NRM
[LOG 11:47:18.825] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch
[LOG 11:47:18.828] Load(Texture): Squad/Parts/Command/Mk1-2Pod/Mk1-2_illum
[LOG 11:47:18.830] Load(Texture): Squad/Parts/Command/Mk1-2Pod/walls
[LOG 11:47:18.832] Load(Texture): Squad/Parts/Command/Mk1-2Pod/window
[LOG 11:47:18.834] Load(Texture): Squad/Parts/Command/mk1Cockpits/GLOW
[LOG 11:47:18.837] Load(Texture): Squad/Parts/Command/mk1Cockpits/Mk1Cockpit
[LOG 11:47:18.842] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_diff
[LOG 11:47:18.846] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_normal
[LOG 11:47:18.864] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_psd_illum
[LOG 11:47:18.866] Load(Texture): Squad/Parts/Command/mk1pod/hatch
[LOG 11:47:18.868] Load(Texture): Squad/Parts/Command/mk1pod/ladderrung
[LOG 11:47:18.870] Load(Texture): Squad/Parts/Command/mk1pod/outer shell NRM
[LOG 11:47:18.873] Load(Texture): Squad/Parts/Command/mk1pod/outer shell
[LOG 11:47:18.875] Load(Texture): Squad/Parts/Command/mk1pod/window
[LOG 11:47:18.877] Load(Texture): Squad/Parts/Command/mk1pod/window_illum
[LOG 11:47:18.879] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_A
[LOG 11:47:18.883] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_Emissive
[LOG 11:47:18.886] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_normal
[LOG 11:47:18.891] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit
[LOG 11:47:18.899] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_Lum
[LOG 11:47:18.902] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_NRM
[LOG 11:47:18.910] Load(Texture): Squad/Parts/Command/mk2DroneCore/mk2Dronecore
[LOG 11:47:18.912] Load(Texture): Squad/Parts/Command/mk2LanderCan/Illum
[LOG 11:47:18.914] Load(Texture): Squad/Parts/Command/mk2LanderCan/ladder
[LOG 11:47:18.916] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell
[LOG 11:47:18.921] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell_n
[LOG 11:47:18.939] Load(Texture): Squad/Parts/Command/mk2LanderCan/window
[LOG 11:47:18.941] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle
[LOG 11:47:18.945] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle_LUM
[LOG 11:47:18.948] Load(Texture): Squad/Parts/Command/probeCoreCube/model000
[LOG 11:47:18.950] Load(Texture): Squad/Parts/Command/probeCoreCube/model001
[LOG 11:47:18.952] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_diff
[LOG 11:47:18.957] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_normal
[LOG 11:47:18.959] Load(Texture): Squad/Parts/Command/probeCoreOcto/model000
[LOG 11:47:18.961] Load(Texture): Squad/Parts/Command/probeCoreOcto/model001
[LOG 11:47:18.964] Load(Texture): Squad/Parts/Command/probeCoreOcto2/model000
[LOG 11:47:18.966] Load(Texture): Squad/Parts/Command/probeRoverBody/model000
[LOG 11:47:18.968] Load(Texture): Squad/Parts/Command/probeRoverBody/model001
[LOG 11:47:18.970] Load(Texture): Squad/Parts/Command/probeStackLarge/model000
[LOG 11:47:18.975] Load(Texture): Squad/Parts/Command/probeStackLarge/model001
[LOG 11:47:18.980] Load(Texture): Squad/Parts/Command/probeStackSmall/model000
[LOG 11:47:18.985] Load(Texture): Squad/Parts/Command/probeStackSmall/model001
[LOG 11:47:18.989] Load(Texture): Squad/Parts/Command/probeStackSphere/model000
[LOG 11:47:18.992] Load(Texture): Squad/Parts/Command/probeStackSphere/model001
[LOG 11:47:18.994] Load(Texture): Squad/Parts/CompoundParts/fuelLine/FTX-2 External Fuel Duct
[LOG 11:47:18.996] Load(Texture): Squad/Parts/CompoundParts/strutConnector/EAS-4 Strut Connector
[LOG 11:47:18.998] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model000
[LOG 11:47:19.000] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model001
[LOG 11:47:19.003] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model002
[LOG 11:47:19.005] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model000
[LOG 11:47:19.007] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model001
[LOG 11:47:19.009] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model002
[LOG 11:47:19.011] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model000
[LOG 11:47:19.013] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model001
[LOG 11:47:19.032] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model002
[LOG 11:47:19.035] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model000
[LOG 11:47:19.037] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model001
[LOG 11:47:19.039] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model002
[LOG 11:47:19.041] Load(Texture): Squad/Parts/Electrical/gigantorXlSolarArray/panel
[LOG 11:47:19.044] Load(Texture): Squad/Parts/Electrical/radialFlatSolarPanel/model000
[LOG 11:47:19.046] Load(Texture): Squad/Parts/Electrical/RTG/model000
[LOG 11:47:19.048] Load(Texture): Squad/Parts/Electrical/z-100Battery/model000
[LOG 11:47:19.050] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model000
[LOG 11:47:19.052] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model001
[LOG 11:47:19.054] Load(Texture): Squad/Parts/Electrical/z-200Battery/ksp_m_batteryPack_diff
[LOG 11:47:19.056] Load(Texture): Squad/Parts/Electrical/z-400Battery/model000
[LOG 11:47:19.058] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_diff
[LOG 11:47:19.061] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_normal
[LOG 11:47:19.064] Load(Texture): Squad/Parts/Engine/ionEngine/model000
[LOG 11:47:19.066] Load(Texture): Squad/Parts/Engine/jetEngines/Jet Engines
[LOG 11:47:19.071] Load(Texture): Squad/Parts/Engine/jetEngines/Jet_Heat
[LOG 11:47:19.073] Load(Texture): Squad/Parts/Engine/liquidEngine24-77/model000
[LOG 11:47:19.076] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_diff
[LOG 11:47:19.078] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_norm
[LOG 11:47:19.081] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_norm
[LOG 11:47:19.084] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_psd
[LOG 11:47:19.086] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike
[LOG 11:47:19.088] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike_Heat
[LOG 11:47:19.090] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/alternatebracket
[LOG 11:47:19.092] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/engine
[LOG 11:47:19.094] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1R/ksp_r_microEngine_diff
[LOG 11:47:19.096] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/bigfairing
[LOG 11:47:19.099] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3
[LOG 11:47:19.101] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_emissive
[LOG 11:47:19.103] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_n
[LOG 11:47:19.106] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model000
[LOG 11:47:19.109] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model001
[LOG 11:47:19.111] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model002
[LOG 11:47:19.113] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model003
[LOG 11:47:19.116] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model000
[LOG 11:47:19.118] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model001
[LOG 11:47:19.121] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model002
[LOG 11:47:19.123] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model000
[LOG 11:47:19.126] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model001
[LOG 11:47:19.128] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model002
[LOG 11:47:19.130] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model003
[LOG 11:47:19.132] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model000
[LOG 11:47:19.135] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model001
[LOG 11:47:19.137] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model002
[LOG 11:47:19.139] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model003
[LOG 11:47:19.142] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model004
[LOG 11:47:19.144] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 11:47:19.146] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud_Heat
[LOG 11:47:19.171] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model000
[LOG 11:47:19.173] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model001
[LOG 11:47:19.175] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model002
[LOG 11:47:19.177] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model003
[LOG 11:47:19.179] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_diff
[LOG 11:47:19.182] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_emissive
[LOG 11:47:19.186] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_diff
[LOG 11:47:19.189] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_norm
[LOG 11:47:19.193] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_normal
[LOG 11:47:19.196] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 11:47:19.198] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_GLOW
[LOG 11:47:19.200] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_NRM
[LOG 11:47:19.203] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_cm
[LOG 11:47:19.205] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_em
[LOG 11:47:19.208] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_nm
[LOG 11:47:19.211] Load(Texture): Squad/Parts/Engine/miniJet/SmallJet
[LOG 11:47:19.213] Load(Texture): Squad/Parts/Engine/OMSEngine/engineoms 1
[LOG 11:47:19.215] Load(Texture): Squad/Parts/Engine/rapierEngine/rapierDiffuse
[LOG 11:47:19.217] Load(Texture): Squad/Parts/Engine/rapierEngine/rapieremit
[LOG 11:47:19.219] Load(Texture): Squad/Parts/Engine/Size2LFB/Size2LFBEmissive
[LOG 11:47:19.221] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_cm
[LOG 11:47:19.226] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_nm
[LOG 11:47:19.230] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/decoupler_and_adaptor_cm
[LOG 11:47:19.235] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineDiffuse
[LOG 11:47:19.255] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineEmissive
[LOG 11:47:19.258] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineNormal
[LOG 11:47:19.260] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/ClusterEngineEmit
[LOG 11:47:19.262] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_cm
[LOG 11:47:19.267] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_nm
[LOG 11:47:19.272] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model000
[LOG 11:47:19.274] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model001
[LOG 11:47:19.276] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model002
[LOG 11:47:19.279] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model000
[LOG 11:47:19.283] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model001
[LOG 11:47:19.286] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model002
[LOG 11:47:19.288] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5
[LOG 11:47:19.290] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5_N_NRM
[LOG 11:47:19.293] Load(Texture): Squad/Parts/Engine/solidBoosterSep/model000
[LOG 11:47:19.294] Load(Texture): Squad/Parts/Engine/vernorEngine/vernierEngine3UV
[LOG 11:47:19.296] Load(Texture): Squad/Parts/FuelTank/adapterTanks/Mk3Adapters
[LOG 11:47:19.305] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model000
[LOG 11:47:19.308] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model001
[LOG 11:47:19.311] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model000
[LOG 11:47:19.313] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model001
[LOG 11:47:19.315] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank
[LOG 11:47:19.319] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank_n
[LOG 11:47:19.323] Load(Texture): Squad/Parts/FuelTank/fuelTankT100/tank4
[LOG 11:47:19.342] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3
[LOG 11:47:19.344] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3_n
[LOG 11:47:19.346] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model000
[LOG 11:47:19.349] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model001
[LOG 11:47:19.353] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model000
[LOG 11:47:19.356] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model001
[LOG 11:47:19.359] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model000
[LOG 11:47:19.361] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model001
[LOG 11:47:19.364] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model000
[LOG 11:47:19.366] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model001
[LOG 11:47:19.369] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model000
[LOG 11:47:19.374] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model001
[LOG 11:47:19.376] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model000
[LOG 11:47:19.381] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model001
[LOG 11:47:19.384] Load(Texture): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 11:47:19.386] Load(Texture): Squad/Parts/FuelTank/mk2Adapters/mk2adapters1m
[LOG 11:47:19.390] Load(Texture): Squad/Parts/FuelTank/mk2FuselageLong/mk2Fuselage
[LOG 11:47:19.395] Load(Texture): Squad/Parts/FuelTank/mk2FuselageShort/mk2FuselageShort
[LOG 11:47:19.400] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage
[LOG 11:47:19.424] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage_LUM
[LOG 11:47:19.426] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model000
[LOG 11:47:19.428] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model001
[LOG 11:47:19.431] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_diff
[LOG 11:47:19.433] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_normal
[LOG 11:47:19.436] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/FL-R25 RCS Fuel Tank_D
[LOG 11:47:19.438] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/FL-R25 RCS Fuel Tank_N
[LOG 11:47:19.440] Load(Texture): Squad/Parts/FuelTank/RCSTankRadial/model000
[LOG 11:47:19.442] Load(Texture): Squad/Parts/FuelTank/RCStankRadialLong/ksp_r_rcsCylTank_diff
[LOG 11:47:19.445] Load(Texture): Squad/Parts/FuelTank/Size3Tanks/fueltTanks_cm
[LOG 11:47:19.449] Load(Texture): Squad/Parts/FuelTank/xenonTank/model000
[LOG 11:47:19.452] Load(Texture): Squad/Parts/FuelTank/xenonTank/model001
[LOG 11:47:19.454] Load(Texture): Squad/Parts/FuelTank/xenonTankLarge/tank
[LOG 11:47:19.457] Load(Texture): Squad/Parts/FuelTank/xenonTankRadial/ksp_r_xenonTank_diff
[LOG 11:47:19.459] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat
[LOG 11:47:19.462] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_glow
[LOG 11:47:19.464] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_N_NRM
[LOG 11:47:19.468] Load(Texture): Squad/Parts/Misc/AsteroidDay/default
[LOG 11:47:19.470] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe
[LOG 11:47:19.472] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe_NORM_NRM
[LOG 11:47:19.475] Load(Texture): Squad/Parts/Resources/FuelCell/FCLamp
[LOG 11:47:19.477] Load(Texture): Squad/Parts/Resources/FuelCell/FuelCellRack
[LOG 11:47:19.479] Load(Texture): Squad/Parts/Resources/FuelCell/fuellcell
[LOG 11:47:19.481] Load(Texture): Squad/Parts/Resources/ISRU/Processor_Large
[LOG 11:47:19.483] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_diff
[LOG 11:47:19.488] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_norm
[LOG 11:47:19.508] Load(Texture): Squad/Parts/Resources/MiniDrill/DustParticle
[LOG 11:47:19.510] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_diff
[LOG 11:47:19.515] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_PSD
[LOG 11:47:19.519] Load(Texture): Squad/Parts/Resources/MiniISRU/ksp_s_processorSmall_diff
[LOG 11:47:19.522] Load(Texture): Squad/Parts/Resources/OrbitalScanner/detector
[LOG 11:47:19.524] Load(Texture): Squad/Parts/Resources/RadialDrill/DustParticle
[LOG 11:47:19.526] Load(Texture): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 11:47:19.529] Load(Texture): Squad/Parts/Resources/RadialTank/ksp_r_resourceContainer_psd_2
[LOG 11:47:19.531] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_diff
[LOG 11:47:19.536] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_normal
[LOG 11:47:19.541] Load(Texture): Squad/Parts/Resources/SurfaceScanner/ksp_r_samplerAir_diff
[LOG 11:47:19.546] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish
[LOG 11:47:19.549] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish_n
[LOG 11:47:19.554] Load(Texture): Squad/Parts/Science/AtmosphereSensor/ksp_r_hydroscoop_diff
[LOG 11:47:19.572] Load(Texture): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 11:47:19.577] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab
[LOG 11:47:19.582] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab_glow
[LOG 11:47:19.591] Load(Texture): Squad/Parts/Science/LargeCrewedLab/window
[LOG 11:47:19.593] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 11:47:19.597] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_emit
[LOG 11:47:19.600] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_nrm
[LOG 11:47:19.603] Load(Texture): Squad/Parts/Science/MaterialBay/wires
[LOG 11:47:19.605] Load(Texture): Squad/Parts/Science/ScienceBox/Container
[LOG 11:47:19.607] Load(Texture): Squad/Parts/Science/sensorAccelerometer/model000
[LOG 11:47:19.609] Load(Texture): Squad/Parts/Science/sensorBarometer/model000
[LOG 11:47:19.611] Load(Texture): Squad/Parts/Science/sensorGravimeter/model000
[LOG 11:47:19.614] Load(Texture): Squad/Parts/Science/sensorThermometer/model000
[LOG 11:47:19.616] Load(Texture): Squad/Parts/Structural/adapterLargeSmallBi/ksp_l_biAdapter_diff
[LOG 11:47:19.619] Load(Texture): Squad/Parts/Structural/adapterLargeSmallQuad/ksp_l_quadAdapter_diff
[LOG 11:47:19.622] Load(Texture): Squad/Parts/Structural/adapterLargeSmallTri/ksp_l_triAdapter_diff
[LOG 11:47:19.625] Load(Texture): Squad/Parts/Structural/adapterSmallMiniShort/ksp_s_adapterShort_diff
[LOG 11:47:19.628] Load(Texture): Squad/Parts/Structural/adapterSmallMiniTall/ksp_s_adapterLong_diff
[LOG 11:47:19.631] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1Structural
[LOG 11:47:19.651] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1StructuralHeat
[LOG 11:47:19.656] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_cm
[LOG 11:47:19.660] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_nm
[LOG 11:47:19.665] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_cm
[LOG 11:47:19.670] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_nm
[LOG 11:47:19.675] Load(Texture): Squad/Parts/Structural/stationHub/model000
[LOG 11:47:19.677] Load(Texture): Squad/Parts/Structural/stationHub/model001
[LOG 11:47:19.680] Load(Texture): Squad/Parts/Structural/structuralIBeam200/model000
[LOG 11:47:19.682] Load(Texture): Squad/Parts/Structural/structuralIBeam200Pocket/model000
[LOG 11:47:19.684] Load(Texture): Squad/Parts/Structural/structuralIBeam650/model000
[LOG 11:47:19.686] Load(Texture): Squad/Parts/Structural/structuralMicronode/model000
[LOG 11:47:19.688] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model000
[LOG 11:47:19.690] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model001
[LOG 11:47:19.692] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model000
[LOG 11:47:19.694] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model001
[LOG 11:47:19.697] Load(Texture): Squad/Parts/Structural/structuralPylons/Pylons
[LOG 11:47:19.699] Load(Texture): Squad/Parts/Structural/strutCubicOcto/cubestrut
[LOG 11:47:19.701] Load(Texture): Squad/Parts/Structural/strutOcto/model000
[LOG 11:47:19.703] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model000
[LOG 11:47:19.705] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model001
[LOG 11:47:19.707] Load(Texture): Squad/Parts/Structural/trussGirderL/model000
[LOG 11:47:19.710] Load(Texture): Squad/Parts/Structural/trussGirderXL/model000
[LOG 11:47:19.713] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator
[LOG 11:47:19.716] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator_N_NRM
[LOG 11:47:19.736] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel
[LOG 11:47:19.739] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel_N_NRM
[LOG 11:47:19.744] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_array
[LOG 11:47:19.747] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_v2_diff
[LOG 11:47:19.749] Load(Texture): Squad/Parts/Utility/commDish88-88/model000
[LOG 11:47:19.751] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 11:47:19.756] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna_Emit
[LOG 11:47:19.758] Load(Texture): Squad/Parts/Utility/commsDish16/model000
[LOG 11:47:19.760] Load(Texture): Squad/Parts/Utility/decouplerRadialHDM/model000
[LOG 11:47:19.762] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model000
[LOG 11:47:19.764] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model001
[LOG 11:47:19.766] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-70/model000
[LOG 11:47:19.768] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model000
[LOG 11:47:19.771] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model001
[LOG 11:47:19.773] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-2C/model000
[LOG 11:47:19.775] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-XL/model000
[LOG 11:47:19.778] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model000
[LOG 11:47:19.780] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model001
[LOG 11:47:19.782] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model000
[LOG 11:47:19.784] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model001
[LOG 11:47:19.786] Load(Texture): Squad/Parts/Utility/decouplerStackTR-2V/model000
[LOG 11:47:19.788] Load(Texture): Squad/Parts/Utility/DirectAntennas/MiniAntenna
[LOG 11:47:19.790] Load(Texture): Squad/Parts/Utility/dockingPort/model000
[LOG 11:47:19.793] Load(Texture): Squad/Parts/Utility/dockingPort/model001
[LOG 11:47:19.795] Load(Texture): Squad/Parts/Utility/dockingPortInline/model000
[LOG 11:47:19.797] Load(Texture): Squad/Parts/Utility/dockingPortInline/model001
[LOG 11:47:19.800] Load(Texture): Squad/Parts/Utility/dockingPortInline/model002
[LOG 11:47:19.803] Load(Texture): Squad/Parts/Utility/dockingPortJr/model000
[LOG 11:47:19.804] Load(Texture): Squad/Parts/Utility/dockingPortJr/model001
[LOG 11:47:19.806] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model000
[LOG 11:47:19.809] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model001
[LOG 11:47:19.811] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model002
[LOG 11:47:19.813] Load(Texture): Squad/Parts/Utility/dockingPortSr/model000
[LOG 11:47:19.818] Load(Texture): Squad/Parts/Utility/dockingPortSr/model001
[LOG 11:47:19.822] Load(Texture): Squad/Parts/Utility/GrapplingDevice/grabberDiffuse
[LOG 11:47:19.840] Load(Texture): Squad/Parts/Utility/GrapplingDevice/window
[LOG 11:47:19.842] Load(Texture): Squad/Parts/Utility/ladderRadial/model000
[LOG 11:47:19.844] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model000
[LOG 11:47:19.847] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model001
[LOG 11:47:19.852] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model002
[LOG 11:47:19.855] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model000
[LOG 11:47:19.860] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model001
[LOG 11:47:19.864] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 11:47:19.867] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 11:47:19.869] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 11:47:19.871] Load(Texture): Squad/Parts/Utility/landingLegLT-5/model000
[LOG 11:47:19.873] Load(Texture): Squad/Parts/Utility/largeAdapter/model000
[LOG 11:47:19.876] Load(Texture): Squad/Parts/Utility/largeAdapterShort/model000
[LOG 11:47:19.878] Load(Texture): Squad/Parts/Utility/launchClamp1/model000
[LOG 11:47:19.880] Load(Texture): Squad/Parts/Utility/launchClamp1/model001
[LOG 11:47:19.882] Load(Texture): Squad/Parts/Utility/launchEscapeSystem/LES_Diffuse
[LOG 11:47:19.887] Load(Texture): Squad/Parts/Utility/linearRCS/rcs
[LOG 11:47:19.889] Load(Texture): Squad/Parts/Utility/mk2CargoBay/mk2CargoBay
[LOG 11:47:19.893] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin
[LOG 11:47:19.896] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin_LUM
[LOG 11:47:19.899] Load(Texture): Squad/Parts/Utility/mk2DockingPort/mk2DockingPort
[LOG 11:47:19.903] Load(Texture): Squad/Parts/Utility/mk3CargoBay/Mk3CargoBay
[LOG 11:47:19.923] Load(Texture): Squad/Parts/Utility/parachuteMk1/model000
[LOG 11:47:19.926] Load(Texture): Squad/Parts/Utility/parachuteMk1/model001
[LOG 11:47:19.928] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model000
[LOG 11:47:19.931] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model001
[LOG 11:47:19.933] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model000
[LOG 11:47:19.935] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model001
[LOG 11:47:19.937] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model000
[LOG 11:47:19.939] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model001
[LOG 11:47:19.945] Load(Texture): Squad/Parts/Utility/parachuteMk25/model000
[LOG 11:47:19.950] Load(Texture): Squad/Parts/Utility/parachuteMk25/model001
[LOG 11:47:19.953] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model000
[LOG 11:47:19.955] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model001
[LOG 11:47:19.957] Load(Texture): Squad/Parts/Utility/rcsBlockRV-105/rcs
[LOG 11:47:19.959] Load(Texture): Squad/Parts/Utility/RelayAntennas/DishAntenna
[LOG 11:47:19.962] Load(Texture): Squad/Parts/Utility/RelayAntennas/MiniAntenna
[LOG 11:47:19.964] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay
[LOG 11:47:19.967] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay_N_NRM
[LOG 11:47:19.969] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1
[LOG 11:47:19.971] Load(Texture): Squad/Parts/Utility/spotLightMk1/light1_em
[LOG 11:47:19.974] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2
[LOG 11:47:19.976] Load(Texture): Squad/Parts/Utility/spotLightMk2/light2_em
[LOG 11:47:19.977] Load(Texture): Squad/Parts/Utility/stackBiCoupler/model000
[LOG 11:47:19.980] Load(Texture): Squad/Parts/Utility/stackQuadCoupler/ksp_s_quadCoupler_diff
[LOG 11:47:19.983] Load(Texture): Squad/Parts/Utility/stackTriCoupler/model000
[LOG 11:47:19.985] Load(Texture): Squad/Parts/Wheel/LandingGear/Flare
[LOG 11:47:19.987] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear
[LOG 11:47:19.992] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear_Emissive
[LOG 11:47:19.994] Load(Texture): Squad/Parts/Wheel/roverWheelM1/model000
[LOG 11:47:19.996] Load(Texture): Squad/Parts/Wheel/roverWheelM1/roverwheel1
[LOG 11:47:20.015] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model000
[LOG 11:47:20.017] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model001
[LOG 11:47:20.020] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2
[LOG 11:47:20.027] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2_n
[LOG 11:47:20.043] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_diff
[LOG 11:47:20.047] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_normal
[LOG 11:47:20.067] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_diff
[LOG 11:47:20.072] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_normal
[LOG 11:47:20.077] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount
[LOG 11:47:20.082] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount_n
[LOG 11:47:20.084] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel
[LOG 11:47:20.086] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel_n
[LOG 11:47:20.088] Load(Texture): Squad/Props/AltimeterThreeHands/model000
[LOG 11:47:20.090] Load(Texture): Squad/Props/AltimeterThreeHands/model001
[LOG 11:47:20.092] Load(Texture): Squad/Props/AtmosphereDepth/model000
[LOG 11:47:20.094] Load(Texture): Squad/Props/AtmosphereDepth/model001
[LOG 11:47:20.096] Load(Texture): Squad/Props/AxisIndicator/model000
[LOG 11:47:20.098] Load(Texture): Squad/Props/buttonsGeneric/ButtonsAndSwitches
[LOG 11:47:20.100] Load(Texture): Squad/Props/ButtonSquare/model000
[LOG 11:47:20.103] Load(Texture): Squad/Props/circularButton/model000
[LOG 11:47:20.105] Load(Texture): Squad/Props/Compass/model000
[LOG 11:47:20.107] Load(Texture): Squad/Props/directionalKnob/model000
[LOG 11:47:20.109] Load(Texture): Squad/Props/directionalKnob2/model000
[LOG 11:47:20.111] Load(Texture): Squad/Props/IndicatorPanel/model000
[LOG 11:47:20.113] Load(Texture): Squad/Props/IndicatorPanel/model001
[LOG 11:47:20.115] Load(Texture): Squad/Props/IVANavBall/Arrows8dir
[LOG 11:47:20.117] Load(Texture): Squad/Props/IVANavBall/IVANavBall
[LOG 11:47:20.119] Load(Texture): Squad/Props/IVANavBall/IVANavBall_Glow
[LOG 11:47:20.121] Load(Texture): Squad/Props/IVANavBall/ManeuverNode_vectors
[LOG 11:47:20.123] Load(Texture): Squad/Props/IVANavBall/navball2
[LOG 11:47:20.125] Load(Texture): Squad/Props/IVANavBall/navBall_DV_IVA
[LOG 11:47:20.127] Load(Texture): Squad/Props/IVANavBall/navBall_vectors_IVA
[LOG 11:47:20.129] Load(Texture): Squad/Props/ledPanelSpeed/model000
[LOG 11:47:20.131] Load(Texture): Squad/Props/ledPanelSpeed/model001
[LOG 11:47:20.133] Load(Texture): Squad/Props/Monitor/Emissives
[LOG 11:47:20.135] Load(Texture): Squad/Props/Monitor/Emissives_glow
[LOG 11:47:20.137] Load(Texture): Squad/Props/Monitor/Monitor
[LOG 11:47:20.139] Load(Texture): Squad/Props/NavBall/model000
[LOG 11:47:20.141] Load(Texture): Squad/Props/NavBall/model001
[LOG 11:47:20.143] Load(Texture): Squad/Props/NavBall/model002
[LOG 11:47:20.145] Load(Texture): Squad/Props/NavBall/model003
[LOG 11:47:20.147] Load(Texture): Squad/Props/PropsGeneric/propsGeneric
[LOG 11:47:20.152] Load(Texture): Squad/Props/pullSwitch/model000
[LOG 11:47:20.154] Load(Texture): Squad/Props/pullSwitch/model001
[LOG 11:47:20.155] Load(Texture): Squad/Props/radarAltitude/model000
[LOG 11:47:20.158] Load(Texture): Squad/Props/squareButton/model000
[LOG 11:47:20.160] Load(Texture): Squad/Props/standingSwitch/model000
[LOG 11:47:20.162] Load(Texture): Squad/Props/standingSwitch/model001
[LOG 11:47:20.164] Load(Texture): Squad/Props/switch/model000
[LOG 11:47:20.166] Load(Texture): Squad/Props/switchGuard/model000
[LOG 11:47:20.168] Load(Texture): Squad/Props/switchWithGuards/model000
[LOG 11:47:20.170] Load(Texture): Squad/Props/switchWithGuards/model001
[LOG 11:47:20.172] Load(Texture): Squad/Props/switchWithGuards/model002
[LOG 11:47:20.174] Load(Texture): Squad/Props/throttle/model000
[LOG 11:47:20.176] Load(Texture): Squad/Props/throttle/model001
[LOG 11:47:20.196] Load(Texture): Squad/Props/VSI/model000
[LOG 11:47:20.198] Load(Texture): Squad/Spaces/crewCabinInternals/model000
[LOG 11:47:20.200] Load(Texture): Squad/Spaces/crewCabinInternals/model001
[LOG 11:47:20.209] Load(Texture): Squad/Spaces/crewCabinInternals/model002
[LOG 11:47:20.211] Load(Texture): Squad/Spaces/crewCabinInternals/model003
[LOG 11:47:20.216] Load(Texture): Squad/Spaces/crewCabinInternals/model004
[LOG 11:47:20.218] Load(Texture): Squad/Spaces/crewCabinInternals/model005
[LOG 11:47:20.223] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_diff
[LOG 11:47:20.238] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_normal
[LOG 11:47:20.271] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_windows_alpha
[LOG 11:47:20.275] Load(Texture): Squad/Spaces/cupolaInternal/pilot Seat
[LOG 11:47:20.280] Load(Texture): Squad/Spaces/GenericSpace1/model000
[LOG 11:47:20.285] Load(Texture): Squad/Spaces/GenericSpace1/model001
[LOG 11:47:20.289] Load(Texture): Squad/Spaces/GenericSpace1/model002
[LOG 11:47:20.295] Load(Texture): Squad/Spaces/GenericSpace1/model003
[LOG 11:47:20.300] Load(Texture): Squad/Spaces/GenericSpace1/model004
[LOG 11:47:20.305] Load(Texture): Squad/Spaces/GenericSpace1/model005
[LOG 11:47:20.310] Load(Texture): Squad/Spaces/GenericSpace3/model000
[LOG 11:47:20.330] Load(Texture): Squad/Spaces/GenericSpace3/model001
[LOG 11:47:20.332] Load(Texture): Squad/Spaces/GenericSpace3/model002
[LOG 11:47:20.337] Load(Texture): Squad/Spaces/GenericSpace3/model003
[LOG 11:47:20.342] Load(Texture): Squad/Spaces/GenericSpace3/model004
[LOG 11:47:20.347] Load(Texture): Squad/Spaces/GenericSpace3/model005
[LOG 11:47:20.351] Load(Texture): Squad/Spaces/GenericSpace3/model006
[LOG 11:47:20.354] Load(Texture): Squad/Spaces/GenericSpace3/model007
[LOG 11:47:20.358] Load(Texture): Squad/Spaces/landerCabinInternals/model000
[LOG 11:47:20.363] Load(Texture): Squad/Spaces/landerCabinInternals/model001
[LOG 11:47:20.368] Load(Texture): Squad/Spaces/landerCabinInternals/model002
[LOG 11:47:20.372] Load(Texture): Squad/Spaces/landerCabinInternals/model003
[LOG 11:47:20.396] Load(Texture): Squad/Spaces/landerCabinInternals/model004
[LOG 11:47:20.401] Load(Texture): Squad/Spaces/landerCabinInternals/model005
[LOG 11:47:20.403] Load(Texture): Squad/Spaces/landerCabinInternals/model006
[LOG 11:47:20.408] Load(Texture): Squad/Spaces/landerCabinInternals/model007
[LOG 11:47:20.410] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_diff
[LOG 11:47:20.425] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_normal
[LOG 11:47:20.443] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_window_alpha
[LOG 11:47:20.464] Load(Texture): Squad/Spaces/landerCabinSmallInternal/pilot Seat
[LOG 11:47:20.468] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/Glass
[LOG 11:47:20.471] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int
[LOG 11:47:20.487] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int_n_NRM
[LOG 11:47:20.490] Load(Texture): Squad/Spaces/mk1CabinInternal/Cabin_Lightmap
[LOG 11:47:20.492] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric
[LOG 11:47:20.494] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric_NRM
[LOG 11:47:20.496] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric
[LOG 11:47:20.498] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric_NRM
[LOG 11:47:20.500] Load(Texture): Squad/Spaces/mk1CockpitInternal/IVAMAP
[LOG 11:47:20.505] Load(Texture): Squad/Spaces/mk1CockpitInternal/Windows
[LOG 11:47:20.507] Load(Texture): Squad/Spaces/mk1InlineInternal/Canopy
[LOG 11:47:20.513] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric
[LOG 11:47:20.515] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric_NRM
[LOG 11:47:20.517] Load(Texture): Squad/Spaces/mk1InlineInternal/Mk1Inline_Lightmap
[LOG 11:47:20.519] Load(Texture): Squad/Spaces/mk1PodCockpit/model000
[LOG 11:47:20.524] Load(Texture): Squad/Spaces/mk1PodCockpit/model001
[LOG 11:47:20.544] Load(Texture): Squad/Spaces/mk1PodCockpit/model002
[LOG 11:47:20.549] Load(Texture): Squad/Spaces/mk1PodCockpit/model003
[LOG 11:47:20.553] Load(Texture): Squad/Spaces/mk1PodCockpit/model004
[LOG 11:47:20.561] Load(Texture): Squad/Spaces/mk1PodCockpit/model005
[LOG 11:47:20.564] Load(Texture): Squad/Spaces/mk1PodCockpit/model006
[LOG 11:47:20.568] Load(Texture): Squad/Spaces/mk1PodCockpit/model007
[LOG 11:47:20.570] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/CargoBagA
[LOG 11:47:20.572] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Mk2StandardIVA
[LOG 11:47:20.575] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Pilotseat
[LOG 11:47:20.578] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Windows
[LOG 11:47:20.580] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/CargoBagA
[LOG 11:47:20.582] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Glass
[LOG 11:47:20.584] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Mk2StandardIVA
[LOG 11:47:20.587] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Pilotseat
[LOG 11:47:20.590] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric
[LOG 11:47:20.595] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric_NRM
[LOG 11:47:20.599] Load(Texture): Squad/Spaces/mk2InlineInternal/Mk2InlineLightmap
[LOG 11:47:20.604] Load(Texture): Squad/Spaces/mk2InlineInternal/propsGeneric
[LOG 11:47:20.624] Load(Texture): Squad/Spaces/MK3CockpitInternal/Glass
[LOG 11:47:20.627] Load(Texture): Squad/Spaces/MK3CockpitInternal/Mk2StandardIVA
[LOG 11:47:20.630] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Glass
[LOG 11:47:20.632] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/GlassMK3CC
[LOG 11:47:20.634] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Mk2StandardIVA
[LOG 11:47:20.637] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 11:47:20.642] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int_n
[LOG 11:47:20.644] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Pilotseat
[LOG 11:47:20.647] Load(Texture): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 11:47:20.649] Load(Texture): Squad/Spaces/PodCockpit/model000
[LOG 11:47:20.653] Load(Texture): Squad/Spaces/PodCockpit/model001
[LOG 11:47:20.658] Load(Texture): Squad/Spaces/PodCockpit/model002
[LOG 11:47:20.662] Load(Texture): Squad/Spaces/PodCockpit/model003
[LOG 11:47:20.667] Load(Texture): Squad/Spaces/PodCockpit/model004
[LOG 11:47:20.671] Load(Texture): Squad/Spaces/PodCockpit/model005
[LOG 11:47:20.676] Load(Texture): Squad/Spaces/PodCockpit/model006
[LOG 11:47:20.679] Load(Texture): Squad/Spaces/PodCockpit/model007
[LOG 11:47:20.699] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric
[LOG 11:47:20.704] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric_NRM
[LOG 11:47:20.708] Load(Texture): Squad/Strategies/Icons/AggressiveNegotiations
[LOG 11:47:20.718] Load(Texture): Squad/Strategies/Icons/AppreciationCampaign
[LOG 11:47:20.727] Load(Texture): Squad/Strategies/Icons/BailOutGrant
[LOG 11:47:20.736] Load(Texture): Squad/Strategies/Icons/FundraisingCampaign
[LOG 11:47:20.745] Load(Texture): Squad/Strategies/Icons/LeadershipInitiative
[LOG 11:47:20.753] Load(Texture): Squad/Strategies/Icons/OpenSourceTechProgram
[LOG 11:47:20.762] Load(Texture): Squad/Strategies/Icons/OutsourcedResearch
[LOG 11:47:20.771] Load(Texture): Squad/Strategies/Icons/PatentsLicensing
[LOG 11:47:20.779] Load(Texture): Squad/Strategies/Icons/RecoveryTransponderFitting
[LOG 11:47:20.788] Load(Texture): Squad/Strategies/Icons/ResearchRightsSellOut
[LOG 11:47:20.797] Load(Texture): Squad/Strategies/Icons/UnpaidResearchProgram
[LOG 11:47:20.805] Load(Texture): Squad/Tutorials/ChuteColors
[LOG 11:47:20.814] Load(Texture): Squad/Tutorials/EditorCoM
[LOG 11:47:20.823] Load(Texture): Squad/Tutorials/EditorSnap
[LOG 11:47:20.832] Load(Texture): Squad/Tutorials/EditorSnap4x
[LOG 11:47:20.841] Load(Texture): Squad/Tutorials/EditorSymm
[LOG 11:47:20.851] Load(Texture): Squad/Tutorials/StagingStack
[LOG 11:47:20.860] Load(Texture): Squad/Tutorials/YPRDiagram
[LOG 11:47:20.872] Load(Model): Squad/FX/afterburner_flame
[LOG 11:47:20.882] Load(Model): Squad/FX/afterburner_shock
[LOG 11:47:20.884] Load(Model): Squad/FX/diamondBlue
[LOG 11:47:20.886] Load(Model): Squad/FX/exhaustFlames_blue
[LOG 11:47:20.889] Load(Model): Squad/FX/hydroLOXFlame
[LOG 11:47:20.891] Load(Model): Squad/FX/IonPlume
[LOG 11:47:20.893] Load(Model): Squad/FX/ks1_Exhaust
[LOG 11:47:20.895] Load(Model): Squad/FX/ks25_Exhaust
[LOG 11:47:20.897] Load(Model): Squad/FX/ksX_Exhaust
[LOG 11:47:20.899] Load(Model): Squad/FX/LES_Thruster
[LOG 11:47:20.901] Load(Model): Squad/FX/Monoprop_big
[LOG 11:47:20.904] Load(Model): Squad/FX/Monoprop_medium
[LOG 11:47:20.906] Load(Model): Squad/FX/Monoprop_small
[LOG 11:47:20.908] Load(Model): Squad/FX/shockExhaust_blue
[LOG 11:47:20.910] Load(Model): Squad/FX/shockExhaust_blue_small
[LOG 11:47:20.912] Load(Model): Squad/FX/shockExhaust_red_small
[LOG 11:47:20.914] Load(Model): Squad/FX/SRB_Large
[LOG 11:47:20.916] Load(Model): Squad/FX/SRB_LargeSparks
[LOG 11:47:20.918] Load(Model): Squad/Parts/Aero/aerodynamicNoseCone/model
[LOG 11:47:20.926] Load(Model): Squad/Parts/Aero/airbrake/Airbrake
[LOG 11:47:20.932] Load(Model): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 11:47:20.936] Load(Model): Squad/Parts/Aero/airlinerWings/ControlSurface
[LOG 11:47:20.939] Load(Model): Squad/Parts/Aero/airlinerWings/MainWing
[LOG 11:47:20.943] Load(Model): Squad/Parts/Aero/airlinerWings/TailFin
[LOG 11:47:20.950] Load(Model): Squad/Parts/Aero/airplaneFins/AdvCanard
[LOG 11:47:20.952] Load(Model): Squad/Parts/Aero/airplaneFins/Canard
[LOG 11:47:20.955] Load(Model): Squad/Parts/Aero/airplaneFins/Swept
[LOG 11:47:20.958] Load(Model): Squad/Parts/Aero/airplaneFins/TailFin
[LOG 11:47:20.960] Load(Model): Squad/Parts/Aero/basicFin/basicFin
[LOG 11:47:20.963] Load(Model): Squad/Parts/Aero/circularIntake/CircularIntake
[LOG 11:47:20.970] Load(Model): Squad/Parts/Aero/circularIntake/ConeIntake
[LOG 11:47:20.974] Load(Model): Squad/Parts/Aero/cones/AvioCone
[LOG 11:47:20.977] Load(Model): Squad/Parts/Aero/cones/ConeA
[LOG 11:47:20.980] Load(Model): Squad/Parts/Aero/cones/ConeB
[LOG 11:47:20.983] Load(Model): Squad/Parts/Aero/cones/NCS
[LOG 11:47:20.987] Load(Model): Squad/Parts/Aero/cones/TailA
[LOG 11:47:20.990] Load(Model): Squad/Parts/Aero/cones/TailB
[LOG 11:47:20.993] Load(Model): Squad/Parts/Aero/cones/TinyCone
[LOG 11:47:20.996] Load(Model): Squad/Parts/Aero/fairings/AutoTruss
[LOG 11:47:21.003] Load(Model): Squad/Parts/Aero/fairings/fairingSize1
[LOG 11:47:21.007] Load(Model): Squad/Parts/Aero/fairings/fairingSize2
[LOG 11:47:21.011] Load(Model): Squad/Parts/Aero/fairings/fairingSize3
[LOG 11:47:21.015] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield0
[LOG 11:47:21.019] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield1
[LOG 11:47:21.024] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield2
[LOG 11:47:21.029] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield3
[LOG 11:47:21.034] Load(Model): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 11:47:21.047] Load(Model): Squad/Parts/Aero/intakeRadialLong/IntakeRadial
[LOG 11:47:21.050] Load(Model): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 11:47:21.053] Load(Model): Squad/Parts/Aero/protectiveRocketNoseMk7/model
[LOG 11:47:21.057] Load(Model): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 11:47:21.060] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleDeltaWing
[LOG 11:47:21.063] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonA
[LOG 11:47:21.065] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonB
[LOG 11:47:21.068] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleRudder
[LOG 11:47:21.071] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleStrake
[LOG 11:47:21.073] Load(Model): Squad/Parts/Aero/wingletAV-R8/model
[LOG 11:47:21.076] Load(Model): Squad/Parts/Aero/wingletAV-T1/model
[LOG 11:47:21.078] Load(Model): Squad/Parts/Aero/wingletDeltaDeluxe/model
[LOG 11:47:21.081] Load(Model): Squad/Parts/Aero/wings/connector1
[LOG 11:47:21.083] Load(Model): Squad/Parts/Aero/wings/connector2
[LOG 11:47:21.085] Load(Model): Squad/Parts/Aero/wings/connector3
[LOG 11:47:21.087] Load(Model): Squad/Parts/Aero/wings/connector4
[LOG 11:47:21.089] Load(Model): Squad/Parts/Aero/wings/connector5
[LOG 11:47:21.091] Load(Model): Squad/Parts/Aero/wings/delta
[LOG 11:47:21.093] Load(Model): Squad/Parts/Aero/wings/delta_small
[LOG 11:47:21.095] Load(Model): Squad/Parts/Aero/wings/elevon1
[LOG 11:47:21.098] Load(Model): Squad/Parts/Aero/wings/elevon2
[LOG 11:47:21.100] Load(Model): Squad/Parts/Aero/wings/elevon3
[LOG 11:47:21.102] Load(Model): Squad/Parts/Aero/wings/elevon4
[LOG 11:47:21.105] Load(Model): Squad/Parts/Aero/wings/elevon5
[LOG 11:47:21.107] Load(Model): Squad/Parts/Aero/wings/strake
[LOG 11:47:21.109] Load(Model): Squad/Parts/Aero/wings/structural1
[LOG 11:47:21.111] Load(Model): Squad/Parts/Aero/wings/structural2
[LOG 11:47:21.113] Load(Model): Squad/Parts/Aero/wings/structural3
[LOG 11:47:21.115] Load(Model): Squad/Parts/Aero/wings/structural4
[LOG 11:47:21.118] Load(Model): Squad/Parts/Aero/wings/swept1
[LOG 11:47:21.120] Load(Model): Squad/Parts/Aero/wings/swept2
[LOG 11:47:21.122] Load(Model): Squad/Parts/Command/advancedSasModuleLarge/model
[LOG 11:47:21.128] Load(Model): Squad/Parts/Command/cupola/model
[LOG 11:47:21.137] Load(Model): Squad/Parts/Command/externalCommandSeat/model
[LOG 11:47:21.151] Load(Model): Squad/Parts/Command/hitchhikerStorageContainer/model
[LOG 11:47:21.157] Load(Model): Squad/Parts/Command/inlineAdvancedStabilizer/model
[LOG 11:47:21.160] Load(Model): Squad/Parts/Command/inlineReactionWheel/model
[LOG 11:47:21.164] Load(Model): Squad/Parts/Command/Mk1-2Pod/model
[LOG 11:47:21.169] Load(Model): Squad/Parts/Command/mk1Cockpits/Cabin
[LOG 11:47:21.172] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitInline
[LOG 11:47:21.177] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitStandard
[LOG 11:47:21.185] Load(Model): Squad/Parts/Command/mk1LanderCan/model
[LOG 11:47:21.189] Load(Model): Squad/Parts/Command/mk1pod/model
[LOG 11:47:21.194] Load(Model): Squad/Parts/Command/mk2CockpitInline/model
[LOG 11:47:21.199] Load(Model): Squad/Parts/Command/mk2CockpitStandard/model
[LOG 11:47:21.204] Load(Model): Squad/Parts/Command/mk2DroneCore/model
[LOG 11:47:21.208] Load(Model): Squad/Parts/Command/mk2LanderCan/model
[LOG 11:47:21.217] Load(Model): Squad/Parts/Command/mk3CockpitShuttle/model
[LOG 11:47:21.223] Load(Model): Squad/Parts/Command/probeCoreCube/model
[LOG 11:47:21.225] Load(Model): Squad/Parts/Command/probeCoreHex/model
[LOG 11:47:21.228] Load(Model): Squad/Parts/Command/probeCoreOcto/model
[LOG 11:47:21.231] Load(Model): Squad/Parts/Command/probeCoreOcto2/model
[LOG 11:47:21.234] Load(Model): Squad/Parts/Command/probeRoverBody/model
[LOG 11:47:21.237] Load(Model): Squad/Parts/Command/probeStackLarge/model
[LOG 11:47:21.241] Load(Model): Squad/Parts/Command/probeStackSmall/model
[LOG 11:47:21.245] Load(Model): Squad/Parts/Command/probeStackSphere/model
[LOG 11:47:21.248] Load(Model): Squad/Parts/CompoundParts/fuelLine/model
[LOG 11:47:21.251] Load(Model): Squad/Parts/CompoundParts/strutConnector/model
[LOG 11:47:21.254] Load(Model): Squad/Parts/Electrical/1x6ShroudSolarPanels/model
[LOG 11:47:21.259] Load(Model): Squad/Parts/Electrical/1x6SolarPanels/model
[LOG 11:47:21.263] Load(Model): Squad/Parts/Electrical/3x2ShroudSolarPanels/model
[LOG 11:47:21.267] Load(Model): Squad/Parts/Electrical/3x2SolarPanels/model
[LOG 11:47:21.271] Load(Model): Squad/Parts/Electrical/gigantorXlSolarArray/model
[LOG 11:47:21.274] Load(Model): Squad/Parts/Electrical/radialFlatSolarPanel/model
[LOG 11:47:21.277] Load(Model): Squad/Parts/Electrical/RTG/model
[LOG 11:47:21.280] Load(Model): Squad/Parts/Electrical/z-100Battery/model
[LOG 11:47:21.283] Load(Model): Squad/Parts/Electrical/z-1kBattery/model
[LOG 11:47:21.286] Load(Model): Squad/Parts/Electrical/z-200Battery/model
[LOG 11:47:21.289] Load(Model): Squad/Parts/Electrical/z-400Battery/model
[LOG 11:47:21.292] Load(Model): Squad/Parts/Electrical/z-4kBattery/model
[LOG 11:47:21.295] Load(Model): Squad/Parts/Engine/ionEngine/model
[LOG 11:47:21.299] Load(Model): Squad/Parts/Engine/jetEngines/turbineInside
[LOG 11:47:21.302] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize1
[LOG 11:47:21.307] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize2
[LOG 11:47:21.315] Load(Model): Squad/Parts/Engine/jetEngines/turboJet
[LOG 11:47:21.321] Load(Model): Squad/Parts/Engine/jetEngines/turboRamJet
[LOG 11:47:21.327] Load(Model): Squad/Parts/Engine/liquidEngine24-77/model
[LOG 11:47:21.330] Load(Model): Squad/Parts/Engine/liquidEngine48-7S/model
[LOG 11:47:21.334] Load(Model): Squad/Parts/Engine/liquidEngineAerospike/AeroSpike
[LOG 11:47:21.338] Load(Model): Squad/Parts/Engine/liquidEngineLV-1/model
[LOG 11:47:21.341] Load(Model): Squad/Parts/Engine/liquidEngineLV-1R/model
[LOG 11:47:21.343] Load(Model): Squad/Parts/Engine/liquidEngineLV-909/model
[LOG 11:47:21.348] Load(Model): Squad/Parts/Engine/liquidEngineLV-N/model
[LOG 11:47:21.354] Load(Model): Squad/Parts/Engine/liquidEngineLV-T30/model
[LOG 11:47:21.359] Load(Model): Squad/Parts/Engine/liquidEngineLV-T45/model
[LOG 11:47:21.365] Load(Model): Squad/Parts/Engine/liquidEngineMainsail/model
[LOG 11:47:21.372] Load(Model): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 11:47:21.376] Load(Model): Squad/Parts/Engine/liquidEnginePoodle/model
[LOG 11:47:21.382] Load(Model): Squad/Parts/Engine/liquidEngineSkipper/model
[LOG 11:47:21.388] Load(Model): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 11:47:21.394] Load(Model): Squad/Parts/Engine/MassiveSRB/MassiveSRB
[LOG 11:47:21.399] Load(Model): Squad/Parts/Engine/miniJet/SmallJet
[LOG 11:47:21.402] Load(Model): Squad/Parts/Engine/OMSEngine/NewModel
[LOG 11:47:21.405] Load(Model): Squad/Parts/Engine/rapierEngine/rapier
[LOG 11:47:21.411] Load(Model): Squad/Parts/Engine/Size2LFB/Size2LFB
[LOG 11:47:21.420] Load(Model): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngine
[LOG 11:47:21.427] Load(Model): Squad/Parts/Engine/Size3EngineCluster/Size3EngineCluster
[LOG 11:47:21.437] Load(Model): Squad/Parts/Engine/solidBoosterBACC/model
[LOG 11:47:21.440] Load(Model): Squad/Parts/Engine/solidBoosterRT-10/model
[LOG 11:47:21.446] Load(Model): Squad/Parts/Engine/solidBoosterRT-5/SRB_RT5
[LOG 11:47:21.452] Load(Model): Squad/Parts/Engine/solidBoosterSep/model
[LOG 11:47:21.454] Load(Model): Squad/Parts/Engine/vernorEngine/NewModel
[LOG 11:47:21.458] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2
[LOG 11:47:21.462] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2
[LOG 11:47:21.466] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant
[LOG 11:47:21.469] Load(Model): Squad/Parts/FuelTank/adapterTanks/ShuttleAdapter
[LOG 11:47:21.473] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Mk2
[LOG 11:47:21.476] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1
[LOG 11:47:21.479] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant
[LOG 11:47:21.482] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size3-Mk3
[LOG 11:47:21.485] Load(Model): Squad/Parts/FuelTank/fuelTankJumbo-64/model
[LOG 11:47:21.490] Load(Model): Squad/Parts/FuelTank/fuelTankOscarB/model
[LOG 11:47:21.493] Load(Model): Squad/Parts/FuelTank/fuelTankT100/model
[LOG 11:47:21.496] Load(Model): Squad/Parts/FuelTank/fuelTankT200/model
[LOG 11:47:21.500] Load(Model): Squad/Parts/FuelTank/fuelTankT400/model
[LOG 11:47:21.503] Load(Model): Squad/Parts/FuelTank/fuelTankT800/model
[LOG 11:47:21.507] Load(Model): Squad/Parts/FuelTank/fuelTankToroidal/model
[LOG 11:47:21.514] Load(Model): Squad/Parts/FuelTank/fuelTankX200-16/model
[LOG 11:47:21.518] Load(Model): Squad/Parts/FuelTank/fuelTankX200-32/model
[LOG 11:47:21.522] Load(Model): Squad/Parts/FuelTank/fuelTankX200-8/model
[LOG 11:47:21.526] Load(Model): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 11:47:21.529] Load(Model): Squad/Parts/FuelTank/mk2Adapters/bicoupler
[LOG 11:47:21.533] Load(Model): Squad/Parts/FuelTank/mk2Adapters/long
[LOG 11:47:21.537] Load(Model): Squad/Parts/FuelTank/mk2Adapters/standard
[LOG 11:47:21.540] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLFO
[LOG 11:47:21.543] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLiquid
[LOG 11:47:21.546] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLFO
[LOG 11:47:21.549] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLiquid
[LOG 11:47:21.552] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortMono
[LOG 11:47:21.556] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/CREW
[LOG 11:47:21.560] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_100
[LOG 11:47:21.563] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_25
[LOG 11:47:21.565] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_50
[LOG 11:47:21.568] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_100
[LOG 11:47:21.571] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_25
[LOG 11:47:21.573] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_50
[LOG 11:47:21.576] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/MONO
[LOG 11:47:21.579] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR1/model
[LOG 11:47:21.582] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR10/model
[LOG 11:47:21.585] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25
[LOG 11:47:21.589] Load(Model): Squad/Parts/FuelTank/RCSTankRadial/model
[LOG 11:47:21.591] Load(Model): Squad/Parts/FuelTank/RCStankRadialLong/model
[LOG 11:47:21.594] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3LargeTank
[LOG 11:47:21.598] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3MediumTank
[LOG 11:47:21.603] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3SmallTank
[LOG 11:47:21.607] Load(Model): Squad/Parts/FuelTank/xenonTank/model
[LOG 11:47:21.610] Load(Model): Squad/Parts/FuelTank/xenonTankLarge/model
[LOG 11:47:21.616] Load(Model): Squad/Parts/FuelTank/xenonTankRadial/model
[LOG 11:47:21.619] Load(Model): Squad/Parts/Misc/AsteroidDay/HECS2
[LOG 11:47:21.622] Load(Model): Squad/Parts/Misc/AsteroidDay/HighGainAntenna
[LOG 11:47:21.629] Load(Model): Squad/Parts/Misc/AsteroidDay/LgRadialSolar
[LOG 11:47:21.631] Load(Model): Squad/Parts/Misc/PotatoRoid/Cube
[LOG 11:47:21.634] Load(Model): Squad/Parts/Resources/FuelCell/FuelCell
[LOG 11:47:21.636] Load(Model): Squad/Parts/Resources/FuelCell/FuelCellArray
[LOG 11:47:21.643] Load(Model): Squad/Parts/Resources/ISRU/ISRU
[LOG 11:47:21.652] Load(Model): Squad/Parts/Resources/LargeTank/LargeTank
[LOG 11:47:21.656] Load(Model): Squad/Parts/Resources/MiniDrill/MiniDrill
[LOG 11:47:21.662] Load(Model): Squad/Parts/Resources/MiniISRU/MiniISRU
[LOG 11:47:21.684] Load(Model): Squad/Parts/Resources/OrbitalScanner/OrbitalScanner
[LOG 11:47:21.689] Load(Model): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 11:47:21.701] Load(Model): Squad/Parts/Resources/RadialTank/RadialOreTank
[LOG 11:47:21.705] Load(Model): Squad/Parts/Resources/SmallTank/SmallTank
[LOG 11:47:21.709] Load(Model): Squad/Parts/Resources/SurfaceScanner/SurfaceScanner
[LOG 11:47:21.712] Load(Model): Squad/Parts/Resources/SurveyScanner/SurveyScanner
[LOG 11:47:21.716] Load(Model): Squad/Parts/Science/AtmosphereSensor/model
[LOG 11:47:21.720] Load(Model): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 11:47:21.724] Load(Model): Squad/Parts/Science/LargeCrewedLab/large_crewed_lab
[LOG 11:47:21.737] Load(Model): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 11:47:21.744] Load(Model): Squad/Parts/Science/ScienceBox/ScienceBox
[LOG 11:47:21.748] Load(Model): Squad/Parts/Science/sensorAccelerometer/model
[LOG 11:47:21.751] Load(Model): Squad/Parts/Science/sensorBarometer/model
[LOG 11:47:21.755] Load(Model): Squad/Parts/Science/sensorGravimeter/model
[LOG 11:47:21.758] Load(Model): Squad/Parts/Science/sensorThermometer/model
[LOG 11:47:21.761] Load(Model): Squad/Parts/Structural/adapterLargeSmallBi/model
[LOG 11:47:21.766] Load(Model): Squad/Parts/Structural/adapterLargeSmallQuad/model
[LOG 11:47:21.770] Load(Model): Squad/Parts/Structural/adapterLargeSmallTri/model
[LOG 11:47:21.775] Load(Model): Squad/Parts/Structural/adapterSmallMiniShort/model
[LOG 11:47:21.779] Load(Model): Squad/Parts/Structural/adapterSmallMiniTall/model
[LOG 11:47:21.784] Load(Model): Squad/Parts/Structural/mk1Parts/Fuselage
[LOG 11:47:21.788] Load(Model): Squad/Parts/Structural/mk1Parts/IntakeFuselage
[LOG 11:47:21.793] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle1
[LOG 11:47:21.798] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle2
[LOG 11:47:21.803] Load(Model): Squad/Parts/Structural/mk1Parts/Structural
[LOG 11:47:21.807] Load(Model): Squad/Parts/Structural/mk1Parts/StructuralHollow
[LOG 11:47:21.812] Load(Model): Squad/Parts/Structural/Size3Decoupler/size3Decoupler
[LOG 11:47:21.817] Load(Model): Squad/Parts/Structural/Size3To2Adapter/Size3Adapter
[LOG 11:47:21.823] Load(Model): Squad/Parts/Structural/stationHub/model
[LOG 11:47:21.830] Load(Model): Squad/Parts/Structural/structuralIBeam200/model
[LOG 11:47:21.833] Load(Model): Squad/Parts/Structural/structuralIBeam200Pocket/model
[LOG 11:47:21.836] Load(Model): Squad/Parts/Structural/structuralIBeam650/model
[LOG 11:47:21.839] Load(Model): Squad/Parts/Structural/structuralMicronode/model
[LOG 11:47:21.842] Load(Model): Squad/Parts/Structural/structuralPanel1x1/model
[LOG 11:47:21.845] Load(Model): Squad/Parts/Structural/structuralPanel2x2/model
[LOG 11:47:21.849] Load(Model): Squad/Parts/Structural/structuralPylons/PylonBig
[LOG 11:47:21.853] Load(Model): Squad/Parts/Structural/structuralPylons/PylonSmall
[LOG 11:47:21.857] Load(Model): Squad/Parts/Structural/strutCubicOcto/model
[WRN 11:47:21.860] BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "strutCube/cubestrut"
[LOG 11:47:21.862] Load(Model): Squad/Parts/Structural/strutOcto/model
[LOG 11:47:21.867] Load(Model): Squad/Parts/Structural/trussGirderAdapter/model
[LOG 11:47:21.871] Load(Model): Squad/Parts/Structural/trussGirderL/model
[LOG 11:47:21.875] Load(Model): Squad/Parts/Structural/trussGirderXL/model
[LOG 11:47:21.879] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge
[LOG 11:47:21.906] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadMed
[LOG 11:47:21.918] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall
[LOG 11:47:21.929] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelEdge
[LOG 11:47:21.933] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelLg
[LOG 11:47:21.937] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelSm
[LOG 11:47:21.944] Load(Model): Squad/Parts/Utility/commDish88-88/model
[LOG 11:47:21.972] Load(Model): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 11:47:21.980] Load(Model): Squad/Parts/Utility/commsDish16/model
[LOG 11:47:21.984] Load(Model): Squad/Parts/Utility/decouplerRadialHDM/model
[LOG 11:47:21.988] Load(Model): Squad/Parts/Utility/decouplerRadialTT-38K/model
[LOG 11:47:21.992] Load(Model): Squad/Parts/Utility/decouplerRadialTT-70/model
[LOG 11:47:21.996] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-18D/model
[LOG 11:47:22.000] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-2C/model
[LOG 11:47:22.005] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-XL/model
[LOG 11:47:22.009] Load(Model): Squad/Parts/Utility/decouplerStack2m/model
[LOG 11:47:22.015] Load(Model): Squad/Parts/Utility/decouplerStackTR-18A/model
[LOG 11:47:22.019] Load(Model): Squad/Parts/Utility/decouplerStackTR-2V/model
[LOG 11:47:22.023] Load(Model): Squad/Parts/Utility/DirectAntennas/HGAntenna
[LOG 11:47:22.032] Load(Model): Squad/Parts/Utility/DirectAntennas/SurfAntenna
[LOG 11:47:22.035] Load(Model): Squad/Parts/Utility/dockingPort/model
[LOG 11:47:22.041] Load(Model): Squad/Parts/Utility/dockingPortInline/model
[LOG 11:47:22.048] Load(Model): Squad/Parts/Utility/dockingPortJr/model
[LOG 11:47:22.053] Load(Model): Squad/Parts/Utility/dockingPortShielded/model
[LOG 11:47:22.060] Load(Model): Squad/Parts/Utility/dockingPortSr/model
[LOG 11:47:22.066] Load(Model): Squad/Parts/Utility/GrapplingDevice/GrapplingArm
[LOG 11:47:22.097] Load(Model): Squad/Parts/Utility/ladderRadial/model
[LOG 11:47:22.101] Load(Model): Squad/Parts/Utility/ladderTelescopic/model
[LOG 11:47:22.109] Load(Model): Squad/Parts/Utility/ladderTelescopicBay/model
[LOG 11:47:22.120] Load(Model): Squad/Parts/Utility/landingLegLT-1/model
[LOG 11:47:22.125] Load(Model): Squad/Parts/Utility/landingLegLT-2/model
[LOG 11:47:22.130] Load(Model): Squad/Parts/Utility/landingLegLT-5/model
[WRN 11:47:22.135] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.135] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.138] Load(Model): Squad/Parts/Utility/largeAdapter/model
[LOG 11:47:22.142] Load(Model): Squad/Parts/Utility/largeAdapterShort/model
[LOG 11:47:22.146] Load(Model): Squad/Parts/Utility/launchClamp1/model
[LOG 11:47:22.151] Load(Model): Squad/Parts/Utility/launchEscapeSystem/LaunchEscapeSystem
[LOG 11:47:22.160] Load(Model): Squad/Parts/Utility/linearRCS/model
[LOG 11:47:22.163] Load(Model): Squad/Parts/Utility/mk2CargoBay/BayLarge
[LOG 11:47:22.170] Load(Model): Squad/Parts/Utility/mk2CargoBay/BaySmall
[LOG 11:47:22.176] Load(Model): Squad/Parts/Utility/mk2CrewCabin/model
[LOG 11:47:22.181] Load(Model): Squad/Parts/Utility/mk2DockingPort/model
[LOG 11:47:22.188] Load(Model): Squad/Parts/Utility/mk3CargoBay/long
[LOG 11:47:22.196] Load(Model): Squad/Parts/Utility/mk3CargoBay/medium
[LOG 11:47:22.203] Load(Model): Squad/Parts/Utility/mk3CargoBay/ramp
[LOG 11:47:22.216] Load(Model): Squad/Parts/Utility/mk3CargoBay/short
[LOG 11:47:22.222] Load(Model): Squad/Parts/Utility/parachuteMk1/model
[LOG 11:47:22.233] Load(Model): Squad/Parts/Utility/parachuteMk12-R/model
[LOG 11:47:22.238] Load(Model): Squad/Parts/Utility/parachuteMk16-XL/model
[LOG 11:47:22.244] Load(Model): Squad/Parts/Utility/parachuteMk2-R/model
[LOG 11:47:22.249] Load(Model): Squad/Parts/Utility/parachuteMk25/model
[LOG 11:47:22.255] Load(Model): Squad/Parts/Utility/radialAttachmentPoint/model
[LOG 11:47:22.259] Load(Model): Squad/Parts/Utility/rcsBlockRV-105/model
[LOG 11:47:22.263] Load(Model): Squad/Parts/Utility/RelayAntennas/HGAntenna
[LOG 11:47:22.271] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-100
[LOG 11:47:22.276] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-5
[LOG 11:47:22.280] Load(Model): Squad/Parts/Utility/RelayAntennas/RA-50
[LOG 11:47:22.284] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_125
[LOG 11:47:22.296] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_250
[LOG 11:47:22.308] Load(Model): Squad/Parts/Utility/spotLightMk1/model
[LOG 11:47:22.312] Load(Model): Squad/Parts/Utility/spotLightMk2/model
[LOG 11:47:22.318] Load(Model): Squad/Parts/Utility/stackBiCoupler/model
[LOG 11:47:22.322] Load(Model): Squad/Parts/Utility/stackQuadCoupler/model
[LOG 11:47:22.327] Load(Model): Squad/Parts/Utility/stackTriCoupler/model
[LOG 11:47:22.331] Load(Model): Squad/Parts/Wheel/LandingGear/GearExtraLarge
[WRN 11:47:22.343] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.343] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.346] Load(Model): Squad/Parts/Wheel/LandingGear/GearFixed
[WRN 11:47:22.349] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.350] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.351] Load(Model): Squad/Parts/Wheel/LandingGear/GearFree
[WRN 11:47:22.353] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.354] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.357] Load(Model): Squad/Parts/Wheel/LandingGear/GearLarge
[WRN 11:47:22.359] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.359] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.366] Load(Model): Squad/Parts/Wheel/LandingGear/GearMedium
[WRN 11:47:22.372] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.372] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.374] Load(Model): Squad/Parts/Wheel/LandingGear/GearSmall
[WRN 11:47:22.376] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.376] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.381] Load(Model): Squad/Parts/Wheel/roverWheelM1/model
[WRN 11:47:22.386] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.386] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.388] Load(Model): Squad/Parts/Wheel/roverWheelS2/model
[WRN 11:47:22.390] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.390] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.396] Load(Model): Squad/Parts/Wheel/roverWheelTR-2L/model
[WRN 11:47:22.401] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.402] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.404] Load(Model): Squad/Parts/Wheel/roverWheelXL3/model
[WRN 11:47:22.418] WheelCollider requires an attached Rigidbody to function.
[WRN 11:47:22.419] WheelCollider requires an attached Rigidbody to function.
[LOG 11:47:22.420] Load(Model): Squad/Props/AltimeterThreeHands/model
[LOG 11:47:22.424] Load(Model): Squad/Props/AtmosphereDepth/model
[LOG 11:47:22.427] Load(Model): Squad/Props/AxisIndicator/model
[LOG 11:47:22.431] Load(Model): Squad/Props/buttonsGeneric/circularButton
[LOG 11:47:22.434] Load(Model): Squad/Props/buttonsGeneric/clusterButtons
[LOG 11:47:22.437] Load(Model): Squad/Props/buttonsGeneric/clusterButtons2
[LOG 11:47:22.441] Load(Model): Squad/Props/buttonsGeneric/clusterKnob
[LOG 11:47:22.445] Load(Model): Squad/Props/buttonsGeneric/clusterKnob2
[LOG 11:47:22.450] Load(Model): Squad/Props/buttonsGeneric/clusterMixed
[LOG 11:47:22.454] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches01
[LOG 11:47:22.464] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches02
[LOG 11:47:22.470] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches03
[LOG 11:47:22.477] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches04
[LOG 11:47:22.482] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches05
[LOG 11:47:22.487] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches06
[LOG 11:47:22.491] Load(Model): Squad/Props/buttonsGeneric/clusterSwitches07
[LOG 11:47:22.496] Load(Model): Squad/Props/buttonsGeneric/directionalKnob
[LOG 11:47:22.499] Load(Model): Squad/Props/buttonsGeneric/directionalKnob2
[LOG 11:47:22.502] Load(Model): Squad/Props/buttonsGeneric/pullSwitch
[LOG 11:47:22.505] Load(Model): Squad/Props/buttonsGeneric/squareButton
[LOG 11:47:22.508] Load(Model): Squad/Props/buttonsGeneric/standingSwitch
[LOG 11:47:22.511] Load(Model): Squad/Props/buttonsGeneric/switch
[LOG 11:47:22.514] Load(Model): Squad/Props/buttonsGeneric/switchWithGuards
[LOG 11:47:22.518] Load(Model): Squad/Props/ButtonSquare/model
[LOG 11:47:22.521] Load(Model): Squad/Props/circularButton/model
[LOG 11:47:22.524] Load(Model): Squad/Props/Compass/model
[LOG 11:47:22.527] Load(Model): Squad/Props/directionalKnob/model
[LOG 11:47:22.530] Load(Model): Squad/Props/directionalKnob2/model
[LOG 11:47:22.534] Load(Model): Squad/Props/IndicatorPanel/model
[LOG 11:47:22.538] Load(Model): Squad/Props/IVANavBall/model
[LOG 11:47:22.545] Load(Model): Squad/Props/ledPanelSpeed/model
[LOG 11:47:22.549] Load(Model): Squad/Props/Monitor/MonitorDockingMode
[LOG 11:47:22.552] Load(Model): Squad/Props/NavBall/model
[LOG 11:47:22.558] Load(Model): Squad/Props/PropsGeneric/Button_DockingMode
[LOG 11:47:22.561] Load(Model): Squad/Props/PropsGeneric/CargoBagA
[LOG 11:47:22.566] Load(Model): Squad/Props/PropsGeneric/CargoBagB
[LOG 11:47:22.569] Load(Model): Squad/Props/PropsGeneric/CargoBagC
[LOG 11:47:22.573] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane
[LOG 11:47:22.576] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Curve90
[LOG 11:47:22.580] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Frame
[LOG 11:47:22.583] Load(Model): Squad/Props/PropsGeneric/Seat_Passenger
[LOG 11:47:22.586] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot
[LOG 11:47:22.591] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot_Helmet
[LOG 11:47:22.595] Load(Model): Squad/Props/PropsGeneric/SideStick
[LOG 11:47:22.598] Load(Model): Squad/Props/pullSwitch/model
[LOG 11:47:22.602] Load(Model): Squad/Props/radarAltitude/model
[LOG 11:47:22.605] Load(Model): Squad/Props/squareButton/model
[LOG 11:47:22.608] Load(Model): Squad/Props/standingSwitch/model
[LOG 11:47:22.611] Load(Model): Squad/Props/switch/model
[LOG 11:47:22.614] Load(Model): Squad/Props/switchGuard/model
[LOG 11:47:22.617] Load(Model): Squad/Props/switchWithGuards/model
[LOG 11:47:22.621] Load(Model): Squad/Props/throttle/model
[LOG 11:47:22.625] Load(Model): Squad/Props/VSI/model
[LOG 11:47:22.628] Load(Model): Squad/Spaces/crewCabinInternals/model
[LOG 11:47:22.646] Load(Model): Squad/Spaces/cupolaInternal/model
[LOG 11:47:22.674] Load(Model): Squad/Spaces/GenericSpace1/model
[LOG 11:47:22.691] Load(Model): Squad/Spaces/GenericSpace3/model
[LOG 11:47:22.712] Load(Model): Squad/Spaces/landerCabinInternals/model
[LOG 11:47:22.725] Load(Model): Squad/Spaces/landerCabinSmallInternal/model
[LOG 11:47:22.734] Load(Model): Squad/Spaces/LargeCrewedLabInternals/Large_Crewed_lab_Int
[LOG 11:47:22.757] Load(Model): Squad/Spaces/mk1CabinInternal/mk1cabin
[LOG 11:47:22.766] Load(Model): Squad/Spaces/mk1CockpitInternal/Mk1StandardIVA
[LOG 11:47:22.773] Load(Model): Squad/Spaces/mk1InlineInternal/Mk1InlineIVA
[LOG 11:47:22.783] Load(Model): Squad/Spaces/mk1PodCockpit/model
[LOG 11:47:22.796] Load(Model): Squad/Spaces/mk2CockpitStandardInternal/model
[LOG 11:47:22.809] Load(Model): Squad/Spaces/Mk2CrewCabinInternal/MK2_CrewCab_Int
[LOG 11:47:22.829] Load(Model): Squad/Spaces/mk2InlineInternal/mk2InlineIVA
[LOG 11:47:22.852] Load(Model): Squad/Spaces/MK3CockpitInternal/MK3_Cockpit_Int
[LOG 11:47:22.865] Load(Model): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 11:47:22.915] Load(Model): Squad/Spaces/OverlayMasks/CupolaMask
[LOG 11:47:22.919] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerBorder
[LOG 11:47:22.923] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerMask
[LOG 11:47:22.927] Load(Model): Squad/Spaces/OverlayMasks/LargeLabBorder
[LOG 11:47:22.931] Load(Model): Squad/Spaces/OverlayMasks/LargeLabMask
[LOG 11:47:22.935] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinBorder
[LOG 11:47:22.939] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinMask
[LOG 11:47:22.942] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask
[LOG 11:47:22.946] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask2
[LOG 11:47:22.949] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder2
[LOG 11:47:22.953] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder3
[LOG 11:47:22.956] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask
[LOG 11:47:22.960] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask2
[LOG 11:47:22.963] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask3
[LOG 11:47:22.967] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinBorder
[LOG 11:47:22.970] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinMask
[LOG 11:47:22.974] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineBorder
[LOG 11:47:22.977] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineMask
[LOG 11:47:22.981] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardBorder
[LOG 11:47:22.985] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardMask
[LOG 11:47:22.989] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinBorder
[LOG 11:47:22.992] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask
[LOG 11:47:22.996] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask2
[LOG 11:47:23.000] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleBorder
[LOG 11:47:23.003] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleMask
[LOG 11:47:23.007] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderBorder
[LOG 11:47:23.011] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderMask
[LOG 11:47:23.014] Load(Model): Squad/Spaces/OverlayMasks/Size1PodBorder
[LOG 11:47:23.018] Load(Model): Squad/Spaces/OverlayMasks/Size1PodMask
[LOG 11:47:23.021] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderBorder
[LOG 11:47:23.026] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderMask
[LOG 11:47:23.029] Load(Model): Squad/Spaces/OverlayMasks/Size2PodBorder
[LOG 11:47:23.033] Load(Model): Squad/Spaces/OverlayMasks/Size2PodMask
[LOG 11:47:23.037] Load(Model): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 11:47:23.042] Load(Model): Squad/Spaces/PodCockpit/model
[LOG 11:47:23.070] Loading Asset Bundle Definitions
[LOG 11:47:23.073] AssetLoader: Loading bundle definitions
[LOG 11:47:23.615] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\squadcore.ksp'
[LOG 11:47:23.684] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\squadcorefx.ksp'
[LOG 11:47:23.696] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia.ksp'
[LOG 11:47:23.776] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraft.ksp'
[LOG 11:47:23.823] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasics.ksp'
[LOG 11:47:23.859] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance.ksp'
[LOG 11:47:23.895] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance2.ksp'
[LOG 11:47:23.928] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicscol.ksp'
[LOG 11:47:23.964] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrol.ksp'
[LOG 11:47:23.997] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrolsurfaces.ksp'
[LOG 11:47:24.034] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicsdrag.ksp'
[LOG 11:47:24.066] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicsengines.ksp'
[LOG 11:47:24.094] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicsforces.ksp'
[LOG 11:47:24.128] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicsintakes.ksp'
[LOG 11:47:24.160] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicslandinggear.ksp'
[LOG 11:47:24.191] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_aircraftbasicslift.ksp'
[LOG 11:47:24.231] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_career.ksp'
[LOG 11:47:24.258] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerbasicscontracts.ksp'
[LOG 11:47:24.288] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerbasicscrew.ksp'
[LOG 11:47:24.312] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerbasicscurrencies.ksp'
[LOG 11:47:24.335] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerbasicsexperience.ksp'
[LOG 11:47:24.374] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerbasicsfacilities.ksp'
[LOG 11:47:24.403] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerbasicsstrategies.ksp'
[LOG 11:47:24.427] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerbasicstechnology.ksp'
[LOG 11:47:24.460] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui-ac.ksp'
[LOG 11:47:24.496] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui-admin.ksp'
[LOG 11:47:24.536] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui-ksc.ksp'
[LOG 11:47:24.566] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui-mc.ksp'
[LOG 11:47:24.594] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui-sciencearchives.ksp'
[LOG 11:47:24.619] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui-techtree.ksp'
[LOG 11:47:24.652] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui-ts.ksp'
[LOG 11:47:24.709] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_careerui.ksp'
[LOG 11:47:24.747] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnet.ksp'
[LOG 11:47:24.806] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetbasics.ksp'
[LOG 11:47:24.818] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetbuildingeffectivenetworks.ksp'
[LOG 11:47:24.829] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetcalculatingrange.ksp'
[LOG 11:47:24.840] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetcontrollevels.ksp'
[LOG 11:47:24.864] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetcontrollinks.ksp'
[LOG 11:47:24.875] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetcontrolpoints.ksp'
[LOG 11:47:24.903] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetgui.ksp'
[LOG 11:47:24.915] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetgui01.ksp'
[LOG 11:47:24.925] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetgui02.ksp'
[LOG 11:47:24.953] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetrange.ksp'
[LOG 11:47:24.982] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetrelays.ksp'
[LOG 11:47:24.993] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetsciencetransmission.ksp'
[LOG 11:47:25.004] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnetsignalstrength.ksp'
[LOG 11:47:25.030] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_commnettransmission.ksp'
[LOG 11:47:25.062] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-actiongroups.ksp'
[LOG 11:47:25.095] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-applauncher.ksp'
[LOG 11:47:25.126] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-crew.ksp'
[LOG 11:47:25.163] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-engineersreport.ksp'
[LOG 11:47:25.197] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-gizmos.ksp'
[LOG 11:47:25.225] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-infos.ksp'
[LOG 11:47:25.255] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-partdetails.ksp'
[LOG 11:47:25.287] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-parts.ksp'
[LOG 11:47:25.319] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-symmetry.ksp'
[LOG 11:47:25.350] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui-vesseldetails.ksp'
[LOG 11:47:25.401] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_constructionui.ksp'
[LOG 11:47:25.434] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-dockingmode.ksp'
[LOG 11:47:25.463] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-editor.ksp'
[LOG 11:47:25.494] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-editorgizmos.ksp'
[LOG 11:47:25.529] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-eva.ksp'
[LOG 11:47:25.560] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-flight.ksp'
[LOG 11:47:25.586] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-flightactivities.ksp'
[LOG 11:47:25.619] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-flightdirections.ksp'
[LOG 11:47:25.645] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-general.ksp'
[LOG 11:47:25.670] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-mapandtime.ksp'
[LOG 11:47:25.694] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-mouseconstruction.ksp'
[LOG 11:47:25.719] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-mouseflight.ksp'
[LOG 11:47:25.748] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls-rcs.ksp'
[LOG 11:47:25.805] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_controls.ksp'
[LOG 11:47:25.840] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_eastereggs.ksp'
[LOG 11:47:25.883] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-ac.ksp'
[LOG 11:47:25.927] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-admin.ksp'
[LOG 11:47:25.966] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-context.ksp'
[LOG 11:47:26.022] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-ksc.ksp'
[LOG 11:47:26.059] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-launchpad.ksp'
[LOG 11:47:26.102] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-mc.ksp'
[LOG 11:47:26.143] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-randd.ksp'
[LOG 11:47:26.179] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-runway.ksp'
[LOG 11:47:26.218] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-sph.ksp'
[LOG 11:47:26.258] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-ts.ksp'
[LOG 11:47:26.297] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_facilities-vab.ksp'
[LOG 11:47:26.324] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-altimeter.ksp'
[LOG 11:47:26.352] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-applauncher.ksp'
[LOG 11:47:26.405] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-evaactivities.ksp'
[LOG 11:47:26.433] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-modecontrol.ksp'
[LOG 11:47:26.463] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-navball.ksp'
[LOG 11:47:26.499] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-portraits.ksp'
[LOG 11:47:26.526] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-staging.ksp'
[LOG 11:47:26.556] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui-timeandaction.ksp'
[LOG 11:47:26.593] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_flightui.ksp'
[LOG 11:47:26.662] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heat.ksp'
[LOG 11:47:26.697] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heatactiveradiators.ksp'
[LOG 11:47:26.748] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heatcore.ksp'
[LOG 11:47:26.774] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heatengines.ksp'
[LOG 11:47:26.804] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heatflow.ksp'
[LOG 11:47:26.854] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heatpart.ksp'
[LOG 11:47:26.883] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heatpassiveradiators.ksp'
[LOG 11:47:26.928] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_heatshields.ksp'
[LOG 11:47:26.978] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_kerbnet.ksp'
[LOG 11:47:27.004] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_kerbnetinterface.ksp'
[LOG 11:47:27.033] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_kerbnetmodes.ksp'
[LOG 11:47:27.064] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_kerbnetwaypoints.ksp'
[LOG 11:47:27.099] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_locations.ksp'
[LOG 11:47:27.123] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_manual.ksp'
[LOG 11:47:27.168] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_mapui-mannodes.ksp'
[LOG 11:47:27.200] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes.ksp'
[LOG 11:47:27.250] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes2.ksp'
[LOG 11:47:27.282] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_mapui.ksp'
[LOG 11:47:27.312] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalbasics-atmosphere.ksp'
[LOG 11:47:27.343] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingbackdown.ksp'
[LOG 11:47:27.375] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingupthere.ksp'
[LOG 11:47:27.407] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalbasics-gravityturn.ksp'
[LOG 11:47:27.437] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalbasics-orbits.ksp'
[LOG 11:47:27.470] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalbasics-stayingupthere.ksp'
[LOG 11:47:27.503] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalbasics.ksp'
[LOG 11:47:27.536] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-appe.ksp'
[LOG 11:47:27.572] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-dirandinc.ksp'
[LOG 11:47:27.606] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-directions.ksp'
[LOG 11:47:27.638] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-eccentricity.ksp'
[LOG 11:47:27.669] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitaldefinitions.ksp'
[LOG 11:47:27.698] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-adjustinginclination.ksp'
[LOG 11:47:27.726] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-deltav.ksp'
[LOG 11:47:27.751] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-efficiency.ksp'
[LOG 11:47:27.779] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer.ksp'
[LOG 11:47:27.807] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer2.ksp'
[LOG 11:47:27.836] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-orbittypes.ksp'
[LOG 11:47:27.865] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-radandantirad.ksp'
[LOG 11:47:27.895] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-shapingup.ksp'
[LOG 11:47:27.925] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers.ksp'
[LOG 11:47:27.958] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-dres.ksp'
[LOG 11:47:27.994] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-duna.ksp'
[LOG 11:47:28.026] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-eeloo.ksp'
[LOG 11:47:28.058] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-eve.ksp'
[LOG 11:47:28.090] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-jool.ksp'
[LOG 11:47:28.123] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-kerbin.ksp'
[LOG 11:47:28.153] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-moho.ksp'
[LOG 11:47:28.192] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-sun.ksp'
[LOG 11:47:28.228] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_planets-system.ksp'
[LOG 11:47:28.260] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_resources-asteroidmining.ksp'
[LOG 11:47:28.272] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_resources-conversionmanagement.ksp'
[LOG 11:47:28.298] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_resources-drilling.ksp'
[LOG 11:47:28.332] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_resources-findingit.ksp'
[LOG 11:47:28.363] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_resources-findingit2.ksp'
[LOG 11:47:28.398] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_resources-storageandconversion.ksp'
[LOG 11:47:28.433] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_resources.ksp'
[LOG 11:47:28.487] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketry.ksp'
[LOG 11:47:28.518] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketryadvanced-fairings.ksp'
[LOG 11:47:28.552] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketryadvanced-girders.ksp'
[LOG 11:47:28.600] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketryadvanced.ksp'
[LOG 11:47:28.646] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasics.ksp'
[LOG 11:47:28.679] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsaero.ksp'
[LOG 11:47:28.707] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicscentered.ksp'
[LOG 11:47:28.739] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicschutes.ksp'
[LOG 11:47:28.774] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicscontrol.ksp'
[LOG 11:47:28.806] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsecrecharging.ksp'
[LOG 11:47:28.832] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsengines.ksp'
[LOG 11:47:28.858] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsforces.ksp'
[LOG 11:47:28.893] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicshatchesandladders.ksp'
[LOG 11:47:28.929] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsresources.ksp'
[LOG 11:47:28.963] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsservicecontainers.ksp'
[LOG 11:47:28.991] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsstability.ksp'
[LOG 11:47:29.022] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsstabilityassist.ksp'
[LOG 11:47:29.053] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicsstaging.ksp'
[LOG 11:47:29.083] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_rocketrybasicssymmetry.ksp'
[LOG 11:47:29.117] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_science.ksp'
[LOG 11:47:29.151] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_sciencedata.ksp'
[LOG 11:47:29.184] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_scienceexperiments.ksp'
[LOG 11:47:29.217] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_sciencelab.ksp'
[LOG 11:47:29.254] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_sciencetransmitted.ksp'
[LOG 11:47:29.289] AssetLoader: Loaded bundle 'D:\SteamLibrary\KSP\SimPitTest\GameData\Squad\KSPedia\kspedia_spacetravel.ksp'
[LOG 11:47:29.293] AssetLoader: Finished loading. 172 bundle definitions loaded.
[LOG 11:47:29.295] Config(AGENT) Squad/Agencies/Agents/C7 Aerospace Division
[LOG 11:47:29.297] Config(AGENT) Squad/Agencies/Agents/Dinkelstein Kerman's Construction Emporium
[LOG 11:47:29.298] Config(AGENT) Squad/Agencies/Agents/Experimental Engineering Group
[LOG 11:47:29.299] Config(AGENT) Squad/Agencies/Agents/FLOOYD Dynamics Research Labs
[LOG 11:47:29.300] Config(AGENT) Squad/Agencies/Agents/Goliath National Products
[LOG 11:47:29.301] Config(AGENT) Squad/Agencies/Agents/Integrated Integrals
[LOG 11:47:29.302] Config(AGENT) Squad/Agencies/Agents/Ionic Symphonic Protonic Electronics
[LOG 11:47:29.303] Config(AGENT) Squad/Agencies/Agents/Jebediah Kerman's Junkyard and Spacecraft Parts Co
[LOG 11:47:29.304] Config(AGENT) Squad/Agencies/Agents/Kerbal Motion LLC
[LOG 11:47:29.305] Config(AGENT) Squad/Agencies/Agents/Kerbin World-Firsts Record-Keeping Society
[LOG 11:47:29.306] Config(AGENT) Squad/Agencies/Agents/Kerbodyne
[LOG 11:47:29.307] Config(AGENT) Squad/Agencies/Agents/Kerlington Model Rockets and Paper Products Inc
[LOG 11:47:29.308] Config(AGENT) Squad/Agencies/Agents/Maxo Construction Toys
[LOG 11:47:29.309] Config(AGENT) Squad/Agencies/Agents/Moving Parts Experts Group
[LOG 11:47:29.310] Config(AGENT) Squad/Agencies/Agents/O.M.B. Demolition Enterprises
[LOG 11:47:29.311] Config(AGENT) Squad/Agencies/Agents/Periapsis Rocket Supplies Co
[LOG 11:47:29.312] Config(AGENT) Squad/Agencies/Agents/Probodobodyne Inc
[LOG 11:47:29.313] Config(AGENT) Squad/Agencies/Agents/Research & Development Department
[LOG 11:47:29.314] Config(AGENT) Squad/Agencies/Agents/Reaction Systems Ltd
[LOG 11:47:29.315] Config(AGENT) Squad/Agencies/Agents/Rockomax Conglomerate
[LOG 11:47:29.316] Config(AGENT) Squad/Agencies/Agents/Rokea Inc
[LOG 11:47:29.316] Config(AGENT) Squad/Agencies/Agents/Sean's Cannery
[LOG 11:47:29.317] Config(AGENT) Squad/Agencies/Agents/STEADLER Engineering Corps
[LOG 11:47:29.318] Config(AGENT) Squad/Agencies/Agents/StrutCo
[LOG 11:47:29.319] Config(AGENT) Squad/Agencies/Agents/Vac-Co Advanced Suction Systems
[LOG 11:47:29.320] Config(AGENT) Squad/Agencies/Agents/WinterOwl Aircraft Emporium
[LOG 11:47:29.321] Config(AGENT) Squad/Agencies/Agents/Zaltonic Electronics
[LOG 11:47:29.322] Config(Contracts) Squad/Contracts/Contracts/Contracts
[LOG 11:47:29.323] Config(KEYBOARD_LAYOUT) Squad/Controls/Azerty/French AZERTY Keyboard
[LOG 11:47:29.324] Config(PITCH_DOWN) Squad/Controls/Azerty/PITCH_DOWN
[LOG 11:47:29.325] Config(PITCH_UP) Squad/Controls/Azerty/PITCH_UP
[LOG 11:47:29.326] Config(YAW_LEFT) Squad/Controls/Azerty/YAW_LEFT
[LOG 11:47:29.327] Config(YAW_RIGHT) Squad/Controls/Azerty/YAW_RIGHT
[LOG 11:47:29.328] Config(ROLL_LEFT) Squad/Controls/Azerty/ROLL_LEFT
[LOG 11:47:29.329] Config(ROLL_RIGHT) Squad/Controls/Azerty/ROLL_RIGHT
[LOG 11:47:29.330] Config(THROTTLE_UP) Squad/Controls/Azerty/THROTTLE_UP
[LOG 11:47:29.331] Config(THROTTLE_DOWN) Squad/Controls/Azerty/THROTTLE_DOWN
[LOG 11:47:29.332] Config(SAS_HOLD) Squad/Controls/Azerty/SAS_HOLD
[LOG 11:47:29.333] Config(SAS_TOGGLE) Squad/Controls/Azerty/SAS_TOGGLE
[LOG 11:47:29.333] Config(LAUNCH_STAGES) Squad/Controls/Azerty/LAUNCH_STAGES
[LOG 11:47:29.334] Config(Docking_toggleRotLin) Squad/Controls/Azerty/Docking_toggleRotLin
[LOG 11:47:29.336] Config(CAMERA_MODE) Squad/Controls/Azerty/CAMERA_MODE
[LOG 11:47:29.336] Config(CAMERA_NEXT) Squad/Controls/Azerty/CAMERA_NEXT
[LOG 11:47:29.337] Config(PAUSE) Squad/Controls/Azerty/PAUSE
[LOG 11:47:29.338] Config(PRECISION_CTRL) Squad/Controls/Azerty/PRECISION_CTRL
[LOG 11:47:29.339] Config(ZOOM_IN) Squad/Controls/Azerty/ZOOM_IN
[LOG 11:47:29.340] Config(ZOOM_OUT) Squad/Controls/Azerty/ZOOM_OUT
[LOG 11:47:29.341] Config(SCROLL_VIEW_UP) Squad/Controls/Azerty/SCROLL_VIEW_UP
[LOG 11:47:29.342] Config(SCROLL_VIEW_DOWN) Squad/Controls/Azerty/SCROLL_VIEW_DOWN
[LOG 11:47:29.343] Config(SCROLL_ICONS_UP) Squad/Controls/Azerty/SCROLL_ICONS_UP
[LOG 11:47:29.344] Config(SCROLL_ICONS_DOWN) Squad/Controls/Azerty/SCROLL_ICONS_DOWN
[LOG 11:47:29.345] Config(CAMERA_ORBIT_UP) Squad/Controls/Azerty/CAMERA_ORBIT_UP
[LOG 11:47:29.346] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Azerty/CAMERA_ORBIT_DOWN
[LOG 11:47:29.347] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Azerty/CAMERA_ORBIT_LEFT
[LOG 11:47:29.348] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Azerty/CAMERA_ORBIT_RIGHT
[LOG 11:47:29.349] Config(CAMERA_RESET) Squad/Controls/Azerty/CAMERA_RESET
[LOG 11:47:29.350] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Azerty/CAMERA_MOUSE_TOGGLE
[LOG 11:47:29.351] Config(TIME_WARP_INCREASE) Squad/Controls/Azerty/TIME_WARP_INCREASE
[LOG 11:47:29.352] Config(TIME_WARP_DECREASE) Squad/Controls/Azerty/TIME_WARP_DECREASE
[LOG 11:47:29.353] Config(TIME_WARP_STOP) Squad/Controls/Azerty/TIME_WARP_STOP
[LOG 11:47:29.354] Config(MAP_VIEW_TOGGLE) Squad/Controls/Azerty/MAP_VIEW_TOGGLE
[LOG 11:47:29.355] Config(NAVBALL_TOGGLE) Squad/Controls/Azerty/NAVBALL_TOGGLE
[LOG 11:47:29.356] Config(UIMODE_STAGING) Squad/Controls/Azerty/UIMODE_STAGING
[LOG 11:47:29.357] Config(UIMODE_DOCKING) Squad/Controls/Azerty/UIMODE_DOCKING
[LOG 11:47:29.358] Config(TRANSLATE_DOWN) Squad/Controls/Azerty/TRANSLATE_DOWN
[LOG 11:47:29.359] Config(TRANSLATE_UP) Squad/Controls/Azerty/TRANSLATE_UP
[LOG 11:47:29.360] Config(TRANSLATE_LEFT) Squad/Controls/Azerty/TRANSLATE_LEFT
[LOG 11:47:29.361] Config(TRANSLATE_RIGHT) Squad/Controls/Azerty/TRANSLATE_RIGHT
[LOG 11:47:29.362] Config(TRANSLATE_FWD) Squad/Controls/Azerty/TRANSLATE_FWD
[LOG 11:47:29.363] Config(TRANSLATE_BACK) Squad/Controls/Azerty/TRANSLATE_BACK
[LOG 11:47:29.364] Config(RCS_TOGGLE) Squad/Controls/Azerty/RCS_TOGGLE
[LOG 11:47:29.365] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Azerty/FOCUS_NEXT_VESSEL
[LOG 11:47:29.366] Config(FOCUS_PREV_VESSEL) Squad/Controls/Azerty/FOCUS_PREV_VESSEL
[LOG 11:47:29.367] Config(TOGGLE_UI) Squad/Controls/Azerty/TOGGLE_UI
[LOG 11:47:29.368] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Azerty/TOGGLE_STATUS_SCREEN
[LOG 11:47:29.369] Config(TAKE_SCREENSHOT) Squad/Controls/Azerty/TAKE_SCREENSHOT
[LOG 11:47:29.370] Config(TOGGLE_LABELS) Squad/Controls/Azerty/TOGGLE_LABELS
[LOG 11:47:29.371] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Azerty/TOGGLE_TEMP_GAUGES
[LOG 11:47:29.372] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Azerty/TOGGLE_TEMP_OVERLAY
[LOG 11:47:29.373] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Azerty/TOGGLE_FLIGHT_FORCES
[LOG 11:47:29.374] Config(QUICKSAVE) Squad/Controls/Azerty/QUICKSAVE
[LOG 11:47:29.375] Config(QUICKLOAD) Squad/Controls/Azerty/QUICKLOAD
[LOG 11:47:29.376] Config(THROTTLE_CUTOFF) Squad/Controls/Azerty/THROTTLE_CUTOFF
[LOG 11:47:29.377] Config(THROTTLE_FULL) Squad/Controls/Azerty/THROTTLE_FULL
[LOG 11:47:29.378] Config(LANDING_GEAR) Squad/Controls/Azerty/LANDING_GEAR
[LOG 11:47:29.379] Config(HEADLIGHT_TOGGLE) Squad/Controls/Azerty/HEADLIGHT_TOGGLE
[LOG 11:47:29.380] Config(BRAKES) Squad/Controls/Azerty/BRAKES
[LOG 11:47:29.381] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Azerty/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 11:47:29.382] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Azerty/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 11:47:29.383] Config(WHEEL_STEER_LEFT) Squad/Controls/Azerty/WHEEL_STEER_LEFT
[LOG 11:47:29.384] Config(WHEEL_STEER_RIGHT) Squad/Controls/Azerty/WHEEL_STEER_RIGHT
[LOG 11:47:29.385] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Azerty/WHEEL_THROTTLE_DOWN
[LOG 11:47:29.386] Config(WHEEL_THROTTLE_UP) Squad/Controls/Azerty/WHEEL_THROTTLE_UP
[LOG 11:47:29.387] Config(EVA_forward) Squad/Controls/Azerty/EVA_forward
[LOG 11:47:29.388] Config(EVA_back) Squad/Controls/Azerty/EVA_back
[LOG 11:47:29.389] Config(EVA_left) Squad/Controls/Azerty/EVA_left
[LOG 11:47:29.390] Config(EVA_right) Squad/Controls/Azerty/EVA_right
[LOG 11:47:29.391] Config(EVA_yaw_left) Squad/Controls/Azerty/EVA_yaw_left
[LOG 11:47:29.392] Config(EVA_yaw_right) Squad/Controls/Azerty/EVA_yaw_right
[LOG 11:47:29.393] Config(EVA_Pack_forward) Squad/Controls/Azerty/EVA_Pack_forward
[LOG 11:47:29.394] Config(EVA_Pack_back) Squad/Controls/Azerty/EVA_Pack_back
[LOG 11:47:29.395] Config(EVA_Pack_left) Squad/Controls/Azerty/EVA_Pack_left
[LOG 11:47:29.396] Config(EVA_Pack_right) Squad/Controls/Azerty/EVA_Pack_right
[LOG 11:47:29.397] Config(EVA_Pack_up) Squad/Controls/Azerty/EVA_Pack_up
[LOG 11:47:29.398] Config(EVA_Pack_down) Squad/Controls/Azerty/EVA_Pack_down
[LOG 11:47:29.399] Config(EVA_Jump) Squad/Controls/Azerty/EVA_Jump
[LOG 11:47:29.400] Config(EVA_Run) Squad/Controls/Azerty/EVA_Run
[LOG 11:47:29.401] Config(EVA_ToggleMovementMode) Squad/Controls/Azerty/EVA_ToggleMovementMode
[LOG 11:47:29.402] Config(EVA_TogglePack) Squad/Controls/Azerty/EVA_TogglePack
[LOG 11:47:29.403] Config(EVA_Use) Squad/Controls/Azerty/EVA_Use
[LOG 11:47:29.404] Config(EVA_Board) Squad/Controls/Azerty/EVA_Board
[LOG 11:47:29.404] Config(EVA_Orient) Squad/Controls/Azerty/EVA_Orient
[LOG 11:47:29.405] Config(EVA_Lights) Squad/Controls/Azerty/EVA_Lights
[LOG 11:47:29.406] Config(Editor_pitchUp) Squad/Controls/Azerty/Editor_pitchUp
[LOG 11:47:29.407] Config(Editor_pitchDown) Squad/Controls/Azerty/Editor_pitchDown
[LOG 11:47:29.408] Config(Editor_yawLeft) Squad/Controls/Azerty/Editor_yawLeft
[LOG 11:47:29.409] Config(Editor_yawRight) Squad/Controls/Azerty/Editor_yawRight
[LOG 11:47:29.410] Config(Editor_rollLeft) Squad/Controls/Azerty/Editor_rollLeft
[LOG 11:47:29.411] Config(Editor_rollRight) Squad/Controls/Azerty/Editor_rollRight
[LOG 11:47:29.412] Config(Editor_resetRotation) Squad/Controls/Azerty/Editor_resetRotation
[LOG 11:47:29.413] Config(Editor_modePlace) Squad/Controls/Azerty/Editor_modePlace
[LOG 11:47:29.414] Config(Editor_modeOffset) Squad/Controls/Azerty/Editor_modeOffset
[LOG 11:47:29.415] Config(Editor_modeRotate) Squad/Controls/Azerty/Editor_modeRotate
[LOG 11:47:29.416] Config(Editor_modeRoot) Squad/Controls/Azerty/Editor_modeRoot
[LOG 11:47:29.417] Config(Editor_coordSystem) Squad/Controls/Azerty/Editor_coordSystem
[LOG 11:47:29.418] Config(Editor_toggleSymMethod) Squad/Controls/Azerty/Editor_toggleSymMethod
[LOG 11:47:29.419] Config(Editor_toggleSymMode) Squad/Controls/Azerty/Editor_toggleSymMode
[LOG 11:47:29.420] Config(Editor_toggleAngleSnap) Squad/Controls/Azerty/Editor_toggleAngleSnap
[LOG 11:47:29.422] Config(Editor_fineTweak) Squad/Controls/Azerty/Editor_fineTweak
[LOG 11:47:29.423] Config(Editor_partSearch) Squad/Controls/Azerty/Editor_partSearch
[LOG 11:47:29.424] Config(Editor_zoomScrollModifier) Squad/Controls/Azerty/Editor_zoomScrollModifier
[LOG 11:47:29.425] Config(MODIFIER_KEY) Squad/Controls/Azerty/MODIFIER_KEY
[LOG 11:47:29.426] Config(AbortActionGroup) Squad/Controls/Azerty/AbortActionGroup
[LOG 11:47:29.427] Config(CustomActionGroup1) Squad/Controls/Azerty/CustomActionGroup1
[LOG 11:47:29.428] Config(CustomActionGroup2) Squad/Controls/Azerty/CustomActionGroup2
[LOG 11:47:29.429] Config(CustomActionGroup3) Squad/Controls/Azerty/CustomActionGroup3
[LOG 11:47:29.430] Config(CustomActionGroup4) Squad/Controls/Azerty/CustomActionGroup4
[LOG 11:47:29.431] Config(CustomActionGroup5) Squad/Controls/Azerty/CustomActionGroup5
[LOG 11:47:29.432] Config(CustomActionGroup6) Squad/Controls/Azerty/CustomActionGroup6
[LOG 11:47:29.433] Config(CustomActionGroup7) Squad/Controls/Azerty/CustomActionGroup7
[LOG 11:47:29.434] Config(CustomActionGroup8) Squad/Controls/Azerty/CustomActionGroup8
[LOG 11:47:29.435] Config(CustomActionGroup9) Squad/Controls/Azerty/CustomActionGroup9
[LOG 11:47:29.436] Config(CustomActionGroup10) Squad/Controls/Azerty/CustomActionGroup10
[LOG 11:47:29.437] Config(KEY_MAP) Squad/Controls/Azerty/KEY_MAP
[LOG 11:47:29.438] Config(KEYBOARD_LAYOUT) Squad/Controls/Dvorak/US Dvorak Keyboard
[LOG 11:47:29.439] Config(PITCH_DOWN) Squad/Controls/Dvorak/PITCH_DOWN
[LOG 11:47:29.440] Config(PITCH_UP) Squad/Controls/Dvorak/PITCH_UP
[LOG 11:47:29.441] Config(YAW_LEFT) Squad/Controls/Dvorak/YAW_LEFT
[LOG 11:47:29.442] Config(YAW_RIGHT) Squad/Controls/Dvorak/YAW_RIGHT
[LOG 11:47:29.443] Config(ROLL_LEFT) Squad/Controls/Dvorak/ROLL_LEFT
[LOG 11:47:29.443] Config(ROLL_RIGHT) Squad/Controls/Dvorak/ROLL_RIGHT
[LOG 11:47:29.444] Config(THROTTLE_UP) Squad/Controls/Dvorak/THROTTLE_UP
[LOG 11:47:29.445] Config(THROTTLE_DOWN) Squad/Controls/Dvorak/THROTTLE_DOWN
[LOG 11:47:29.446] Config(SAS_HOLD) Squad/Controls/Dvorak/SAS_HOLD
[LOG 11:47:29.447] Config(SAS_TOGGLE) Squad/Controls/Dvorak/SAS_TOGGLE
[LOG 11:47:29.448] Config(LAUNCH_STAGES) Squad/Controls/Dvorak/LAUNCH_STAGES
[LOG 11:47:29.449] Config(Docking_toggleRotLin) Squad/Controls/Dvorak/Docking_toggleRotLin
[LOG 11:47:29.450] Config(CAMERA_MODE) Squad/Controls/Dvorak/CAMERA_MODE
[LOG 11:47:29.451] Config(CAMERA_NEXT) Squad/Controls/Dvorak/CAMERA_NEXT
[LOG 11:47:29.452] Config(PAUSE) Squad/Controls/Dvorak/PAUSE
[LOG 11:47:29.453] Config(PRECISION_CTRL) Squad/Controls/Dvorak/PRECISION_CTRL
[LOG 11:47:29.454] Config(ZOOM_IN) Squad/Controls/Dvorak/ZOOM_IN
[LOG 11:47:29.455] Config(ZOOM_OUT) Squad/Controls/Dvorak/ZOOM_OUT
[LOG 11:47:29.456] Config(SCROLL_VIEW_UP) Squad/Controls/Dvorak/SCROLL_VIEW_UP
[LOG 11:47:29.457] Config(SCROLL_VIEW_DOWN) Squad/Controls/Dvorak/SCROLL_VIEW_DOWN
[LOG 11:47:29.458] Config(SCROLL_ICONS_UP) Squad/Controls/Dvorak/SCROLL_ICONS_UP
[LOG 11:47:29.459] Config(SCROLL_ICONS_DOWN) Squad/Controls/Dvorak/SCROLL_ICONS_DOWN
[LOG 11:47:29.460] Config(CAMERA_ORBIT_UP) Squad/Controls/Dvorak/CAMERA_ORBIT_UP
[LOG 11:47:29.461] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Dvorak/CAMERA_ORBIT_DOWN
[LOG 11:47:29.462] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Dvorak/CAMERA_ORBIT_LEFT
[LOG 11:47:29.463] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Dvorak/CAMERA_ORBIT_RIGHT
[LOG 11:47:29.464] Config(CAMERA_RESET) Squad/Controls/Dvorak/CAMERA_RESET
[LOG 11:47:29.465] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Dvorak/CAMERA_MOUSE_TOGGLE
[LOG 11:47:29.466] Config(TIME_WARP_INCREASE) Squad/Controls/Dvorak/TIME_WARP_INCREASE
[LOG 11:47:29.467] Config(TIME_WARP_DECREASE) Squad/Controls/Dvorak/TIME_WARP_DECREASE
[LOG 11:47:29.468] Config(TIME_WARP_STOP) Squad/Controls/Dvorak/TIME_WARP_STOP
[LOG 11:47:29.469] Config(MAP_VIEW_TOGGLE) Squad/Controls/Dvorak/MAP_VIEW_TOGGLE
[LOG 11:47:29.470] Config(NAVBALL_TOGGLE) Squad/Controls/Dvorak/NAVBALL_TOGGLE
[LOG 11:47:29.471] Config(UIMODE_STAGING) Squad/Controls/Dvorak/UIMODE_STAGING
[LOG 11:47:29.472] Config(UIMODE_DOCKING) Squad/Controls/Dvorak/UIMODE_DOCKING
[LOG 11:47:29.473] Config(TRANSLATE_DOWN) Squad/Controls/Dvorak/TRANSLATE_DOWN
[LOG 11:47:29.474] Config(TRANSLATE_UP) Squad/Controls/Dvorak/TRANSLATE_UP
[LOG 11:47:29.475] Config(TRANSLATE_LEFT) Squad/Controls/Dvorak/TRANSLATE_LEFT
[LOG 11:47:29.476] Config(TRANSLATE_RIGHT) Squad/Controls/Dvorak/TRANSLATE_RIGHT
[LOG 11:47:29.477] Config(TRANSLATE_FWD) Squad/Controls/Dvorak/TRANSLATE_FWD
[LOG 11:47:29.478] Config(TRANSLATE_BACK) Squad/Controls/Dvorak/TRANSLATE_BACK
[LOG 11:47:29.479] Config(RCS_TOGGLE) Squad/Controls/Dvorak/RCS_TOGGLE
[LOG 11:47:29.480] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Dvorak/FOCUS_NEXT_VESSEL
[LOG 11:47:29.481] Config(FOCUS_PREV_VESSEL) Squad/Controls/Dvorak/FOCUS_PREV_VESSEL
[LOG 11:47:29.482] Config(TOGGLE_UI) Squad/Controls/Dvorak/TOGGLE_UI
[LOG 11:47:29.483] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Dvorak/TOGGLE_STATUS_SCREEN
[LOG 11:47:29.484] Config(TAKE_SCREENSHOT) Squad/Controls/Dvorak/TAKE_SCREENSHOT
[LOG 11:47:29.485] Config(TOGGLE_LABELS) Squad/Controls/Dvorak/TOGGLE_LABELS
[LOG 11:47:29.486] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Dvorak/TOGGLE_TEMP_GAUGES
[LOG 11:47:29.487] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Dvorak/TOGGLE_TEMP_OVERLAY
[LOG 11:47:29.488] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Dvorak/TOGGLE_FLIGHT_FORCES
[LOG 11:47:29.489] Config(QUICKSAVE) Squad/Controls/Dvorak/QUICKSAVE
[LOG 11:47:29.490] Config(QUICKLOAD) Squad/Controls/Dvorak/QUICKLOAD
[LOG 11:47:29.491] Config(THROTTLE_CUTOFF) Squad/Controls/Dvorak/THROTTLE_CUTOFF
[LOG 11:47:29.492] Config(THROTTLE_FULL) Squad/Controls/Dvorak/THROTTLE_FULL
[LOG 11:47:29.493] Config(LANDING_GEAR) Squad/Controls/Dvorak/LANDING_GEAR
[LOG 11:47:29.494] Config(HEADLIGHT_TOGGLE) Squad/Controls/Dvorak/HEADLIGHT_TOGGLE
[LOG 11:47:29.495] Config(BRAKES) Squad/Controls/Dvorak/BRAKES
[LOG 11:47:29.495] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Dvorak/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 11:47:29.497] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Dvorak/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 11:47:29.498] Config(WHEEL_STEER_LEFT) Squad/Controls/Dvorak/WHEEL_STEER_LEFT
[LOG 11:47:29.499] Config(WHEEL_STEER_RIGHT) Squad/Controls/Dvorak/WHEEL_STEER_RIGHT
[LOG 11:47:29.500] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Dvorak/WHEEL_THROTTLE_DOWN
[LOG 11:47:29.501] Config(WHEEL_THROTTLE_UP) Squad/Controls/Dvorak/WHEEL_THROTTLE_UP
[LOG 11:47:29.502] Config(EVA_forward) Squad/Controls/Dvorak/EVA_forward
[LOG 11:47:29.503] Config(EVA_back) Squad/Controls/Dvorak/EVA_back
[LOG 11:47:29.503] Config(EVA_left) Squad/Controls/Dvorak/EVA_left
[LOG 11:47:29.504] Config(EVA_right) Squad/Controls/Dvorak/EVA_right
[LOG 11:47:29.505] Config(EVA_yaw_left) Squad/Controls/Dvorak/EVA_yaw_left
[LOG 11:47:29.506] Config(EVA_yaw_right) Squad/Controls/Dvorak/EVA_yaw_right
[LOG 11:47:29.507] Config(EVA_Pack_forward) Squad/Controls/Dvorak/EVA_Pack_forward
[LOG 11:47:29.508] Config(EVA_Pack_back) Squad/Controls/Dvorak/EVA_Pack_back
[LOG 11:47:29.509] Config(EVA_Pack_left) Squad/Controls/Dvorak/EVA_Pack_left
[LOG 11:47:29.510] Config(EVA_Pack_right) Squad/Controls/Dvorak/EVA_Pack_right
[LOG 11:47:29.511] Config(EVA_Pack_up) Squad/Controls/Dvorak/EVA_Pack_up
[LOG 11:47:29.512] Config(EVA_Pack_down) Squad/Controls/Dvorak/EVA_Pack_down
[LOG 11:47:29.513] Config(EVA_Jump) Squad/Controls/Dvorak/EVA_Jump
[LOG 11:47:29.514] Config(EVA_Run) Squad/Controls/Dvorak/EVA_Run
[LOG 11:47:29.515] Config(EVA_ToggleMovementMode) Squad/Controls/Dvorak/EVA_ToggleMovementMode
[LOG 11:47:29.516] Config(EVA_TogglePack) Squad/Controls/Dvorak/EVA_TogglePack
[LOG 11:47:29.517] Config(EVA_Use) Squad/Controls/Dvorak/EVA_Use
[LOG 11:47:29.518] Config(EVA_Board) Squad/Controls/Dvorak/EVA_Board
[LOG 11:47:29.519] Config(EVA_Orient) Squad/Controls/Dvorak/EVA_Orient
[LOG 11:47:29.520] Config(EVA_Lights) Squad/Controls/Dvorak/EVA_Lights
[LOG 11:47:29.521] Config(Editor_pitchUp) Squad/Controls/Dvorak/Editor_pitchUp
[LOG 11:47:29.522] Config(Editor_pitchDown) Squad/Controls/Dvorak/Editor_pitchDown
[LOG 11:47:29.523] Config(Editor_yawLeft) Squad/Controls/Dvorak/Editor_yawLeft
[LOG 11:47:29.524] Config(Editor_yawRight) Squad/Controls/Dvorak/Editor_yawRight
[LOG 11:47:29.525] Config(Editor_rollLeft) Squad/Controls/Dvorak/Editor_rollLeft
[LOG 11:47:29.526] Config(Editor_rollRight) Squad/Controls/Dvorak/Editor_rollRight
[LOG 11:47:29.527] Config(Editor_resetRotation) Squad/Controls/Dvorak/Editor_resetRotation
[LOG 11:47:29.528] Config(Editor_modePlace) Squad/Controls/Dvorak/Editor_modePlace
[LOG 11:47:29.529] Config(Editor_modeOffset) Squad/Controls/Dvorak/Editor_modeOffset
[LOG 11:47:29.530] Config(Editor_modeRotate) Squad/Controls/Dvorak/Editor_modeRotate
[LOG 11:47:29.531] Config(Editor_modeRoot) Squad/Controls/Dvorak/Editor_modeRoot
[LOG 11:47:29.532] Config(Editor_coordSystem) Squad/Controls/Dvorak/Editor_coordSystem
[LOG 11:47:29.533] Config(Editor_toggleSymMethod) Squad/Controls/Dvorak/Editor_toggleSymMethod
[LOG 11:47:29.534] Config(Editor_toggleSymMode) Squad/Controls/Dvorak/Editor_toggleSymMode
[LOG 11:47:29.535] Config(Editor_toggleAngleSnap) Squad/Controls/Dvorak/Editor_toggleAngleSnap
[LOG 11:47:29.536] Config(Editor_fineTweak) Squad/Controls/Dvorak/Editor_fineTweak
[LOG 11:47:29.537] Config(Editor_partSearch) Squad/Controls/Dvorak/Editor_partSearch
[LOG 11:47:29.538] Config(Editor_zoomScrollModifier) Squad/Controls/Dvorak/Editor_zoomScrollModifier
[LOG 11:47:29.539] Config(MODIFIER_KEY) Squad/Controls/Dvorak/MODIFIER_KEY
[LOG 11:47:29.540] Config(AbortActionGroup) Squad/Controls/Dvorak/AbortActionGroup
[LOG 11:47:29.541] Config(CustomActionGroup1) Squad/Controls/Dvorak/CustomActionGroup1
[LOG 11:47:29.542] Config(CustomActionGroup2) Squad/Controls/Dvorak/CustomActionGroup2
[LOG 11:47:29.543] Config(CustomActionGroup3) Squad/Controls/Dvorak/CustomActionGroup3
[LOG 11:47:29.544] Config(CustomActionGroup4) Squad/Controls/Dvorak/CustomActionGroup4
[LOG 11:47:29.545] Config(CustomActionGroup5) Squad/Controls/Dvorak/CustomActionGroup5
[LOG 11:47:29.546] Config(CustomActionGroup6) Squad/Controls/Dvorak/CustomActionGroup6
[LOG 11:47:29.547] Config(CustomActionGroup7) Squad/Controls/Dvorak/CustomActionGroup7
[LOG 11:47:29.548] Config(CustomActionGroup8) Squad/Controls/Dvorak/CustomActionGroup8
[LOG 11:47:29.549] Config(CustomActionGroup9) Squad/Controls/Dvorak/CustomActionGroup9
[LOG 11:47:29.550] Config(CustomActionGroup10) Squad/Controls/Dvorak/CustomActionGroup10
[LOG 11:47:29.551] Config(KEY_MAP) Squad/Controls/Dvorak/KEY_MAP
[LOG 11:47:29.552] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty/US Keyboard
[LOG 11:47:29.553] Config(PITCH_DOWN) Squad/Controls/Qwerty/PITCH_DOWN
[LOG 11:47:29.554] Config(PITCH_UP) Squad/Controls/Qwerty/PITCH_UP
[LOG 11:47:29.555] Config(YAW_LEFT) Squad/Controls/Qwerty/YAW_LEFT
[LOG 11:47:29.556] Config(YAW_RIGHT) Squad/Controls/Qwerty/YAW_RIGHT
[LOG 11:47:29.557] Config(ROLL_LEFT) Squad/Controls/Qwerty/ROLL_LEFT
[LOG 11:47:29.558] Config(ROLL_RIGHT) Squad/Controls/Qwerty/ROLL_RIGHT
[LOG 11:47:29.559] Config(THROTTLE_UP) Squad/Controls/Qwerty/THROTTLE_UP
[LOG 11:47:29.560] Config(THROTTLE_DOWN) Squad/Controls/Qwerty/THROTTLE_DOWN
[LOG 11:47:29.561] Config(SAS_HOLD) Squad/Controls/Qwerty/SAS_HOLD
[LOG 11:47:29.561] Config(SAS_TOGGLE) Squad/Controls/Qwerty/SAS_TOGGLE
[LOG 11:47:29.562] Config(LAUNCH_STAGES) Squad/Controls/Qwerty/LAUNCH_STAGES
[LOG 11:47:29.563] Config(Docking_toggleRotLin) Squad/Controls/Qwerty/Docking_toggleRotLin
[LOG 11:47:29.564] Config(CAMERA_MODE) Squad/Controls/Qwerty/CAMERA_MODE
[LOG 11:47:29.565] Config(CAMERA_NEXT) Squad/Controls/Qwerty/CAMERA_NEXT
[LOG 11:47:29.566] Config(PAUSE) Squad/Controls/Qwerty/PAUSE
[LOG 11:47:29.567] Config(PRECISION_CTRL) Squad/Controls/Qwerty/PRECISION_CTRL
[LOG 11:47:29.568] Config(ZOOM_IN) Squad/Controls/Qwerty/ZOOM_IN
[LOG 11:47:29.569] Config(ZOOM_OUT) Squad/Controls/Qwerty/ZOOM_OUT
[LOG 11:47:29.570] Config(SCROLL_VIEW_UP) Squad/Controls/Qwerty/SCROLL_VIEW_UP
[LOG 11:47:29.571] Config(SCROLL_VIEW_DOWN) Squad/Controls/Qwerty/SCROLL_VIEW_DOWN
[LOG 11:47:29.572] Config(SCROLL_ICONS_UP) Squad/Controls/Qwerty/SCROLL_ICONS_UP
[LOG 11:47:29.573] Config(SCROLL_ICONS_DOWN) Squad/Controls/Qwerty/SCROLL_ICONS_DOWN
[LOG 11:47:29.574] Config(CAMERA_ORBIT_UP) Squad/Controls/Qwerty/CAMERA_ORBIT_UP
[LOG 11:47:29.575] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Qwerty/CAMERA_ORBIT_DOWN
[LOG 11:47:29.576] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Qwerty/CAMERA_ORBIT_LEFT
[LOG 11:47:29.577] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Qwerty/CAMERA_ORBIT_RIGHT
[LOG 11:47:29.578] Config(CAMERA_RESET) Squad/Controls/Qwerty/CAMERA_RESET
[LOG 11:47:29.579] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty/CAMERA_MOUSE_TOGGLE
[LOG 11:47:29.580] Config(TIME_WARP_INCREASE) Squad/Controls/Qwerty/TIME_WARP_INCREASE
[LOG 11:47:29.581] Config(TIME_WARP_DECREASE) Squad/Controls/Qwerty/TIME_WARP_DECREASE
[LOG 11:47:29.582] Config(TIME_WARP_STOP) Squad/Controls/Qwerty/TIME_WARP_STOP
[LOG 11:47:29.583] Config(MAP_VIEW_TOGGLE) Squad/Controls/Qwerty/MAP_VIEW_TOGGLE
[LOG 11:47:29.584] Config(NAVBALL_TOGGLE) Squad/Controls/Qwerty/NAVBALL_TOGGLE
[LOG 11:47:29.585] Config(UIMODE_STAGING) Squad/Controls/Qwerty/UIMODE_STAGING
[LOG 11:47:29.586] Config(UIMODE_DOCKING) Squad/Controls/Qwerty/UIMODE_DOCKING
[LOG 11:47:29.587] Config(TRANSLATE_DOWN) Squad/Controls/Qwerty/TRANSLATE_DOWN
[LOG 11:47:29.588] Config(TRANSLATE_UP) Squad/Controls/Qwerty/TRANSLATE_UP
[LOG 11:47:29.589] Config(TRANSLATE_LEFT) Squad/Controls/Qwerty/TRANSLATE_LEFT
[LOG 11:47:29.590] Config(TRANSLATE_RIGHT) Squad/Controls/Qwerty/TRANSLATE_RIGHT
[LOG 11:47:29.591] Config(TRANSLATE_FWD) Squad/Controls/Qwerty/TRANSLATE_FWD
[LOG 11:47:29.592] Config(TRANSLATE_BACK) Squad/Controls/Qwerty/TRANSLATE_BACK
[LOG 11:47:29.593] Config(RCS_TOGGLE) Squad/Controls/Qwerty/RCS_TOGGLE
[LOG 11:47:29.594] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty/FOCUS_NEXT_VESSEL
[LOG 11:47:29.595] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty/FOCUS_PREV_VESSEL
[LOG 11:47:29.596] Config(TOGGLE_UI) Squad/Controls/Qwerty/TOGGLE_UI
[LOG 11:47:29.597] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Qwerty/TOGGLE_STATUS_SCREEN
[LOG 11:47:29.598] Config(TAKE_SCREENSHOT) Squad/Controls/Qwerty/TAKE_SCREENSHOT
[LOG 11:47:29.599] Config(TOGGLE_LABELS) Squad/Controls/Qwerty/TOGGLE_LABELS
[LOG 11:47:29.600] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Qwerty/TOGGLE_TEMP_GAUGES
[LOG 11:47:29.601] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Qwerty/TOGGLE_TEMP_OVERLAY
[LOG 11:47:29.602] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Qwerty/TOGGLE_FLIGHT_FORCES
[LOG 11:47:29.603] Config(QUICKSAVE) Squad/Controls/Qwerty/QUICKSAVE
[LOG 11:47:29.604] Config(QUICKLOAD) Squad/Controls/Qwerty/QUICKLOAD
[LOG 11:47:29.605] Config(THROTTLE_CUTOFF) Squad/Controls/Qwerty/THROTTLE_CUTOFF
[LOG 11:47:29.606] Config(THROTTLE_FULL) Squad/Controls/Qwerty/THROTTLE_FULL
[LOG 11:47:29.607] Config(LANDING_GEAR) Squad/Controls/Qwerty/LANDING_GEAR
[LOG 11:47:29.608] Config(HEADLIGHT_TOGGLE) Squad/Controls/Qwerty/HEADLIGHT_TOGGLE
[LOG 11:47:29.609] Config(BRAKES) Squad/Controls/Qwerty/BRAKES
[LOG 11:47:29.610] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Qwerty/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 11:47:29.611] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Qwerty/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 11:47:29.612] Config(WHEEL_STEER_LEFT) Squad/Controls/Qwerty/WHEEL_STEER_LEFT
[LOG 11:47:29.613] Config(WHEEL_STEER_RIGHT) Squad/Controls/Qwerty/WHEEL_STEER_RIGHT
[LOG 11:47:29.614] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Qwerty/WHEEL_THROTTLE_DOWN
[LOG 11:47:29.615] Config(WHEEL_THROTTLE_UP) Squad/Controls/Qwerty/WHEEL_THROTTLE_UP
[LOG 11:47:29.616] Config(EVA_forward) Squad/Controls/Qwerty/EVA_forward
[LOG 11:47:29.617] Config(EVA_back) Squad/Controls/Qwerty/EVA_back
[LOG 11:47:29.618] Config(EVA_left) Squad/Controls/Qwerty/EVA_left
[LOG 11:47:29.619] Config(EVA_right) Squad/Controls/Qwerty/EVA_right
[LOG 11:47:29.620] Config(EVA_yaw_left) Squad/Controls/Qwerty/EVA_yaw_left
[LOG 11:47:29.621] Config(EVA_yaw_right) Squad/Controls/Qwerty/EVA_yaw_right
[LOG 11:47:29.622] Config(EVA_Pack_forward) Squad/Controls/Qwerty/EVA_Pack_forward
[LOG 11:47:29.623] Config(EVA_Pack_back) Squad/Controls/Qwerty/EVA_Pack_back
[LOG 11:47:29.624] Config(EVA_Pack_left) Squad/Controls/Qwerty/EVA_Pack_left
[LOG 11:47:29.625] Config(EVA_Pack_right) Squad/Controls/Qwerty/EVA_Pack_right
[LOG 11:47:29.626] Config(EVA_Pack_up) Squad/Controls/Qwerty/EVA_Pack_up
[LOG 11:47:29.627] Config(EVA_Pack_down) Squad/Controls/Qwerty/EVA_Pack_down
[LOG 11:47:29.628] Config(EVA_Jump) Squad/Controls/Qwerty/EVA_Jump
[LOG 11:47:29.629] Config(EVA_Run) Squad/Controls/Qwerty/EVA_Run
[LOG 11:47:29.629] Config(EVA_ToggleMovementMode) Squad/Controls/Qwerty/EVA_ToggleMovementMode
[LOG 11:47:29.631] Config(EVA_TogglePack) Squad/Controls/Qwerty/EVA_TogglePack
[LOG 11:47:29.632] Config(EVA_Use) Squad/Controls/Qwerty/EVA_Use
[LOG 11:47:29.633] Config(EVA_Board) Squad/Controls/Qwerty/EVA_Board
[LOG 11:47:29.633] Config(EVA_Orient) Squad/Controls/Qwerty/EVA_Orient
[LOG 11:47:29.634] Config(EVA_Lights) Squad/Controls/Qwerty/EVA_Lights
[LOG 11:47:29.635] Config(Editor_pitchUp) Squad/Controls/Qwerty/Editor_pitchUp
[LOG 11:47:29.636] Config(Editor_pitchDown) Squad/Controls/Qwerty/Editor_pitchDown
[LOG 11:47:29.638] Config(Editor_yawLeft) Squad/Controls/Qwerty/Editor_yawLeft
[LOG 11:47:29.639] Config(Editor_yawRight) Squad/Controls/Qwerty/Editor_yawRight
[LOG 11:47:29.640] Config(Editor_rollLeft) Squad/Controls/Qwerty/Editor_rollLeft
[LOG 11:47:29.641] Config(Editor_rollRight) Squad/Controls/Qwerty/Editor_rollRight
[LOG 11:47:29.642] Config(Editor_resetRotation) Squad/Controls/Qwerty/Editor_resetRotation
[LOG 11:47:29.643] Config(Editor_modePlace) Squad/Controls/Qwerty/Editor_modePlace
[LOG 11:47:29.644] Config(Editor_modeOffset) Squad/Controls/Qwerty/Editor_modeOffset
[LOG 11:47:29.645] Config(Editor_modeRotate) Squad/Controls/Qwerty/Editor_modeRotate
[LOG 11:47:29.646] Config(Editor_modeRoot) Squad/Controls/Qwerty/Editor_modeRoot
[LOG 11:47:29.647] Config(Editor_coordSystem) Squad/Controls/Qwerty/Editor_coordSystem
[LOG 11:47:29.648] Config(Editor_toggleSymMethod) Squad/Controls/Qwerty/Editor_toggleSymMethod
[LOG 11:47:29.649] Config(Editor_toggleSymMode) Squad/Controls/Qwerty/Editor_toggleSymMode
[LOG 11:47:29.650] Config(Editor_toggleAngleSnap) Squad/Controls/Qwerty/Editor_toggleAngleSnap
[LOG 11:47:29.651] Config(Editor_fineTweak) Squad/Controls/Qwerty/Editor_fineTweak
[LOG 11:47:29.652] Config(Editor_partSearch) Squad/Controls/Qwerty/Editor_partSearch
[LOG 11:47:29.653] Config(Editor_zoomScrollModifier) Squad/Controls/Qwerty/Editor_zoomScrollModifier
[LOG 11:47:29.655] Config(MODIFIER_KEY) Squad/Controls/Qwerty/MODIFIER_KEY
[LOG 11:47:29.656] Config(AbortActionGroup) Squad/Controls/Qwerty/AbortActionGroup
[LOG 11:47:29.657] Config(CustomActionGroup1) Squad/Controls/Qwerty/CustomActionGroup1
[LOG 11:47:29.658] Config(CustomActionGroup2) Squad/Controls/Qwerty/CustomActionGroup2
[LOG 11:47:29.659] Config(CustomActionGroup3) Squad/Controls/Qwerty/CustomActionGroup3
[LOG 11:47:29.660] Config(CustomActionGroup4) Squad/Controls/Qwerty/CustomActionGroup4
[LOG 11:47:29.661] Config(CustomActionGroup5) Squad/Controls/Qwerty/CustomActionGroup5
[LOG 11:47:29.662] Config(CustomActionGroup6) Squad/Controls/Qwerty/CustomActionGroup6
[LOG 11:47:29.663] Config(CustomActionGroup7) Squad/Controls/Qwerty/CustomActionGroup7
[LOG 11:47:29.664] Config(CustomActionGroup8) Squad/Controls/Qwerty/CustomActionGroup8
[LOG 11:47:29.665] Config(CustomActionGroup9) Squad/Controls/Qwerty/CustomActionGroup9
[LOG 11:47:29.666] Config(CustomActionGroup10) Squad/Controls/Qwerty/CustomActionGroup10
[LOG 11:47:29.667] Config(KEY_MAP) Squad/Controls/Qwerty/KEY_MAP
[LOG 11:47:29.668] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_en-GB/UK Keyboard
[LOG 11:47:29.669] Config(KEY_MAP) Squad/Controls/Qwerty_en-GB/KEY_MAP
[LOG 11:47:29.670] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_es-LA/Latin America Keyboard
[LOG 11:47:29.671] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty_es-LA/CAMERA_MOUSE_TOGGLE
[LOG 11:47:29.672] Config(TIME_WARP_STOP) Squad/Controls/Qwerty_es-LA/TIME_WARP_STOP
[LOG 11:47:29.673] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty_es-LA/FOCUS_NEXT_VESSEL
[LOG 11:47:29.674] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty_es-LA/FOCUS_PREV_VESSEL
[LOG 11:47:29.675] Config(CAMERA_RESET) Squad/Controls/Qwerty_es-LA/CAMERA_RESET
[LOG 11:47:29.676] Config(Editor_partSearch) Squad/Controls/Qwerty_es-LA/Editor_partSearch
[LOG 11:47:29.677] Config(KEY_MAP) Squad/Controls/Qwerty_es-LA/KEY_MAP
[LOG 11:47:29.678] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_it-IT/Italian Keyboard 105
[LOG 11:47:29.679] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty_it-IT/FOCUS_NEXT_VESSEL
[LOG 11:47:29.680] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty_it-IT/FOCUS_PREV_VESSEL
[LOG 11:47:29.681] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty_it-IT/CAMERA_MOUSE_TOGGLE
[LOG 11:47:29.682] Config(TIME_WARP_STOP) Squad/Controls/Qwerty_it-IT/TIME_WARP_STOP
[LOG 11:47:29.683] Config(CAMERA_RESET) Squad/Controls/Qwerty_it-IT/CAMERA_RESET
[LOG 11:47:29.684] Config(Editor_partSearch) Squad/Controls/Qwerty_it-IT/Editor_partSearch
[LOG 11:47:29.685] Config(KEY_MAP) Squad/Controls/Qwerty_it-IT/KEY_MAP
[LOG 11:47:29.686] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwerty_ja-JP/Japanese 109 Keyboard
[LOG 11:47:29.687] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwerty_ja-JP/FOCUS_NEXT_VESSEL
[LOG 11:47:29.688] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwerty_ja-JP/FOCUS_PREV_VESSEL
[LOG 11:47:29.689] Config(PRECISION_CTRL) Squad/Controls/Qwerty_ja-JP/PRECISION_CTRL
[LOG 11:47:29.690] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwerty_ja-JP/CAMERA_MOUSE_TOGGLE
[LOG 11:47:29.691] Config(Editor_partSearch) Squad/Controls/Qwerty_ja-JP/Editor_partSearch
[LOG 11:47:29.692] Config(CAMERA_RESET) Squad/Controls/Qwerty_ja-JP/CAMERA_RESET
[LOG 11:47:29.693] Config(KEY_MAP) Squad/Controls/Qwerty_ja-JP/KEY_MAP
[LOG 11:47:29.694] Config(KEYBOARD_LAYOUT) Squad/Controls/Qwertz/German QWERTZ Keyboard
[LOG 11:47:29.695] Config(PITCH_DOWN) Squad/Controls/Qwertz/PITCH_DOWN
[LOG 11:47:29.696] Config(PITCH_UP) Squad/Controls/Qwertz/PITCH_UP
[LOG 11:47:29.697] Config(YAW_LEFT) Squad/Controls/Qwertz/YAW_LEFT
[LOG 11:47:29.698] Config(YAW_RIGHT) Squad/Controls/Qwertz/YAW_RIGHT
[LOG 11:47:29.699] Config(ROLL_LEFT) Squad/Controls/Qwertz/ROLL_LEFT
[LOG 11:47:29.700] Config(ROLL_RIGHT) Squad/Controls/Qwertz/ROLL_RIGHT
[LOG 11:47:29.701] Config(THROTTLE_UP) Squad/Controls/Qwertz/THROTTLE_UP
[LOG 11:47:29.702] Config(THROTTLE_DOWN) Squad/Controls/Qwertz/THROTTLE_DOWN
[LOG 11:47:29.703] Config(SAS_HOLD) Squad/Controls/Qwertz/SAS_HOLD
[LOG 11:47:29.704] Config(SAS_TOGGLE) Squad/Controls/Qwertz/SAS_TOGGLE
[LOG 11:47:29.705] Config(LAUNCH_STAGES) Squad/Controls/Qwertz/LAUNCH_STAGES
[LOG 11:47:29.706] Config(Docking_toggleRotLin) Squad/Controls/Qwertz/Docking_toggleRotLin
[LOG 11:47:29.707] Config(CAMERA_MODE) Squad/Controls/Qwertz/CAMERA_MODE
[LOG 11:47:29.708] Config(CAMERA_NEXT) Squad/Controls/Qwertz/CAMERA_NEXT
[LOG 11:47:29.709] Config(PAUSE) Squad/Controls/Qwertz/PAUSE
[LOG 11:47:29.710] Config(PRECISION_CTRL) Squad/Controls/Qwertz/PRECISION_CTRL
[LOG 11:47:29.710] Config(ZOOM_IN) Squad/Controls/Qwertz/ZOOM_IN
[LOG 11:47:29.711] Config(ZOOM_OUT) Squad/Controls/Qwertz/ZOOM_OUT
[LOG 11:47:29.712] Config(SCROLL_VIEW_UP) Squad/Controls/Qwertz/SCROLL_VIEW_UP
[LOG 11:47:29.713] Config(SCROLL_VIEW_DOWN) Squad/Controls/Qwertz/SCROLL_VIEW_DOWN
[LOG 11:47:29.714] Config(SCROLL_ICONS_UP) Squad/Controls/Qwertz/SCROLL_ICONS_UP
[LOG 11:47:29.715] Config(SCROLL_ICONS_DOWN) Squad/Controls/Qwertz/SCROLL_ICONS_DOWN
[LOG 11:47:29.716] Config(CAMERA_ORBIT_UP) Squad/Controls/Qwertz/CAMERA_ORBIT_UP
[LOG 11:47:29.717] Config(CAMERA_ORBIT_DOWN) Squad/Controls/Qwertz/CAMERA_ORBIT_DOWN
[LOG 11:47:29.718] Config(CAMERA_ORBIT_LEFT) Squad/Controls/Qwertz/CAMERA_ORBIT_LEFT
[LOG 11:47:29.719] Config(CAMERA_ORBIT_RIGHT) Squad/Controls/Qwertz/CAMERA_ORBIT_RIGHT
[LOG 11:47:29.720] Config(CAMERA_RESET) Squad/Controls/Qwertz/CAMERA_RESET
[LOG 11:47:29.721] Config(CAMERA_MOUSE_TOGGLE) Squad/Controls/Qwertz/CAMERA_MOUSE_TOGGLE
[LOG 11:47:29.722] Config(TIME_WARP_INCREASE) Squad/Controls/Qwertz/TIME_WARP_INCREASE
[LOG 11:47:29.723] Config(TIME_WARP_DECREASE) Squad/Controls/Qwertz/TIME_WARP_DECREASE
[LOG 11:47:29.724] Config(TIME_WARP_STOP) Squad/Controls/Qwertz/TIME_WARP_STOP
[LOG 11:47:29.725] Config(MAP_VIEW_TOGGLE) Squad/Controls/Qwertz/MAP_VIEW_TOGGLE
[LOG 11:47:29.726] Config(NAVBALL_TOGGLE) Squad/Controls/Qwertz/NAVBALL_TOGGLE
[LOG 11:47:29.727] Config(UIMODE_STAGING) Squad/Controls/Qwertz/UIMODE_STAGING
[LOG 11:47:29.728] Config(UIMODE_DOCKING) Squad/Controls/Qwertz/UIMODE_DOCKING
[LOG 11:47:29.729] Config(TRANSLATE_DOWN) Squad/Controls/Qwertz/TRANSLATE_DOWN
[LOG 11:47:29.730] Config(TRANSLATE_UP) Squad/Controls/Qwertz/TRANSLATE_UP
[LOG 11:47:29.731] Config(TRANSLATE_LEFT) Squad/Controls/Qwertz/TRANSLATE_LEFT
[LOG 11:47:29.732] Config(TRANSLATE_RIGHT) Squad/Controls/Qwertz/TRANSLATE_RIGHT
[LOG 11:47:29.733] Config(TRANSLATE_FWD) Squad/Controls/Qwertz/TRANSLATE_FWD
[LOG 11:47:29.734] Config(TRANSLATE_BACK) Squad/Controls/Qwertz/TRANSLATE_BACK
[LOG 11:47:29.735] Config(RCS_TOGGLE) Squad/Controls/Qwertz/RCS_TOGGLE
[LOG 11:47:29.736] Config(FOCUS_NEXT_VESSEL) Squad/Controls/Qwertz/FOCUS_NEXT_VESSEL
[LOG 11:47:29.737] Config(FOCUS_PREV_VESSEL) Squad/Controls/Qwertz/FOCUS_PREV_VESSEL
[LOG 11:47:29.738] Config(TOGGLE_UI) Squad/Controls/Qwertz/TOGGLE_UI
[LOG 11:47:29.738] Config(TOGGLE_STATUS_SCREEN) Squad/Controls/Qwertz/TOGGLE_STATUS_SCREEN
[LOG 11:47:29.739] Config(TAKE_SCREENSHOT) Squad/Controls/Qwertz/TAKE_SCREENSHOT
[LOG 11:47:29.740] Config(TOGGLE_LABELS) Squad/Controls/Qwertz/TOGGLE_LABELS
[LOG 11:47:29.741] Config(TOGGLE_TEMP_GAUGES) Squad/Controls/Qwertz/TOGGLE_TEMP_GAUGES
[LOG 11:47:29.742] Config(TOGGLE_TEMP_OVERLAY) Squad/Controls/Qwertz/TOGGLE_TEMP_OVERLAY
[LOG 11:47:29.743] Config(TOGGLE_FLIGHT_FORCES) Squad/Controls/Qwertz/TOGGLE_FLIGHT_FORCES
[LOG 11:47:29.744] Config(QUICKSAVE) Squad/Controls/Qwertz/QUICKSAVE
[LOG 11:47:29.745] Config(QUICKLOAD) Squad/Controls/Qwertz/QUICKLOAD
[LOG 11:47:29.746] Config(THROTTLE_CUTOFF) Squad/Controls/Qwertz/THROTTLE_CUTOFF
[LOG 11:47:29.747] Config(THROTTLE_FULL) Squad/Controls/Qwertz/THROTTLE_FULL
[LOG 11:47:29.748] Config(LANDING_GEAR) Squad/Controls/Qwertz/LANDING_GEAR
[LOG 11:47:29.749] Config(HEADLIGHT_TOGGLE) Squad/Controls/Qwertz/HEADLIGHT_TOGGLE
[LOG 11:47:29.750] Config(BRAKES) Squad/Controls/Qwertz/BRAKES
[LOG 11:47:29.751] Config(TOGGLE_SPACENAV_FLIGHT_CONTROL) Squad/Controls/Qwertz/TOGGLE_SPACENAV_FLIGHT_CONTROL
[LOG 11:47:29.752] Config(TOGGLE_SPACENAV_ROLL_LOCK) Squad/Controls/Qwertz/TOGGLE_SPACENAV_ROLL_LOCK
[LOG 11:47:29.753] Config(WHEEL_STEER_LEFT) Squad/Controls/Qwertz/WHEEL_STEER_LEFT
[LOG 11:47:29.754] Config(WHEEL_STEER_RIGHT) Squad/Controls/Qwertz/WHEEL_STEER_RIGHT
[LOG 11:47:29.755] Config(WHEEL_THROTTLE_DOWN) Squad/Controls/Qwertz/WHEEL_THROTTLE_DOWN
[LOG 11:47:29.756] Config(WHEEL_THROTTLE_UP) Squad/Controls/Qwertz/WHEEL_THROTTLE_UP
[LOG 11:47:29.757] Config(EVA_forward) Squad/Controls/Qwertz/EVA_forward
[LOG 11:47:29.758] Config(EVA_back) Squad/Controls/Qwertz/EVA_back
[LOG 11:47:29.759] Config(EVA_left) Squad/Controls/Qwertz/EVA_left
[LOG 11:47:29.760] Config(EVA_right) Squad/Controls/Qwertz/EVA_right
[LOG 11:47:29.761] Config(EVA_yaw_left) Squad/Controls/Qwertz/EVA_yaw_left
[LOG 11:47:29.762] Config(EVA_yaw_right) Squad/Controls/Qwertz/EVA_yaw_right
[LOG 11:47:29.763] Config(EVA_Pack_forward) Squad/Controls/Qwertz/EVA_Pack_forward
[LOG 11:47:29.764] Config(EVA_Pack_back) Squad/Controls/Qwertz/EVA_Pack_back
[LOG 11:47:29.765] Config(EVA_Pack_left) Squad/Controls/Qwertz/EVA_Pack_left
[LOG 11:47:29.766] Config(EVA_Pack_right) Squad/Controls/Qwertz/EVA_Pack_right
[LOG 11:47:29.767] Config(EVA_Pack_up) Squad/Controls/Qwertz/EVA_Pack_up
[LOG 11:47:29.768] Config(EVA_Pack_down) Squad/Controls/Qwertz/EVA_Pack_down
[LOG 11:47:29.769] Config(EVA_Jump) Squad/Controls/Qwertz/EVA_Jump
[LOG 11:47:29.770] Config(EVA_Run) Squad/Controls/Qwertz/EVA_Run
[LOG 11:47:29.771] Config(EVA_ToggleMovementMode) Squad/Controls/Qwertz/EVA_ToggleMovementMode
[LOG 11:47:29.772] Config(EVA_TogglePack) Squad/Controls/Qwertz/EVA_TogglePack
[LOG 11:47:29.773] Config(EVA_Use) Squad/Controls/Qwertz/EVA_Use
[LOG 11:47:29.774] Config(EVA_Board) Squad/Controls/Qwertz/EVA_Board
[LOG 11:47:29.775] Config(EVA_Orient) Squad/Controls/Qwertz/EVA_Orient
[LOG 11:47:29.776] Config(EVA_Lights) Squad/Controls/Qwertz/EVA_Lights
[LOG 11:47:29.777] Config(Editor_pitchUp) Squad/Controls/Qwertz/Editor_pitchUp
[LOG 11:47:29.778] Config(Editor_pitchDown) Squad/Controls/Qwertz/Editor_pitchDown
[LOG 11:47:29.778] Config(Editor_yawLeft) Squad/Controls/Qwertz/Editor_yawLeft
[LOG 11:47:29.779] Config(Editor_yawRight) Squad/Controls/Qwertz/Editor_yawRight
[LOG 11:47:29.780] Config(Editor_rollLeft) Squad/Controls/Qwertz/Editor_rollLeft
[LOG 11:47:29.781] Config(Editor_rollRight) Squad/Controls/Qwertz/Editor_rollRight
[LOG 11:47:29.782] Config(Editor_resetRotation) Squad/Controls/Qwertz/Editor_resetRotation
[LOG 11:47:29.784] Config(Editor_modePlace) Squad/Controls/Qwertz/Editor_modePlace
[LOG 11:47:29.785] Config(Editor_modeOffset) Squad/Controls/Qwertz/Editor_modeOffset
[LOG 11:47:29.786] Config(Editor_modeRotate) Squad/Controls/Qwertz/Editor_modeRotate
[LOG 11:47:29.787] Config(Editor_modeRoot) Squad/Controls/Qwertz/Editor_modeRoot
[LOG 11:47:29.788] Config(Editor_coordSystem) Squad/Controls/Qwertz/Editor_coordSystem
[LOG 11:47:29.789] Config(Editor_toggleSymMethod) Squad/Controls/Qwertz/Editor_toggleSymMethod
[LOG 11:47:29.790] Config(Editor_toggleSymMode) Squad/Controls/Qwertz/Editor_toggleSymMode
[LOG 11:47:29.791] Config(Editor_toggleAngleSnap) Squad/Controls/Qwertz/Editor_toggleAngleSnap
[LOG 11:47:29.792] Config(Editor_fineTweak) Squad/Controls/Qwertz/Editor_fineTweak
[LOG 11:47:29.793] Config(Editor_partSearch) Squad/Controls/Qwertz/Editor_partSearch
[LOG 11:47:29.794] Config(Editor_zoomScrollModifier) Squad/Controls/Qwertz/Editor_zoomScrollModifier
[LOG 11:47:29.795] Config(MODIFIER_KEY) Squad/Controls/Qwertz/MODIFIER_KEY
[LOG 11:47:29.796] Config(AbortActionGroup) Squad/Controls/Qwertz/AbortActionGroup
[LOG 11:47:29.797] Config(CustomActionGroup1) Squad/Controls/Qwertz/CustomActionGroup1
[LOG 11:47:29.798] Config(CustomActionGroup2) Squad/Controls/Qwertz/CustomActionGroup2
[LOG 11:47:29.799] Config(CustomActionGroup3) Squad/Controls/Qwertz/CustomActionGroup3
[LOG 11:47:29.800] Config(CustomActionGroup4) Squad/Controls/Qwertz/CustomActionGroup4
[LOG 11:47:29.801] Config(CustomActionGroup5) Squad/Controls/Qwertz/CustomActionGroup5
[LOG 11:47:29.802] Config(CustomActionGroup6) Squad/Controls/Qwertz/CustomActionGroup6
[LOG 11:47:29.803] Config(CustomActionGroup7) Squad/Controls/Qwertz/CustomActionGroup7
[LOG 11:47:29.804] Config(CustomActionGroup8) Squad/Controls/Qwertz/CustomActionGroup8
[LOG 11:47:29.805] Config(CustomActionGroup9) Squad/Controls/Qwertz/CustomActionGroup9
[LOG 11:47:29.806] Config(CustomActionGroup10) Squad/Controls/Qwertz/CustomActionGroup10
[LOG 11:47:29.807] Config(KEY_MAP) Squad/Controls/Qwertz/KEY_MAP
[LOG 11:47:29.808] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Pilot
[LOG 11:47:29.809] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Engineer
[LOG 11:47:29.810] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Scientist
[LOG 11:47:29.811] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Tourist
[LOG 11:47:29.812] Config(Localization) Squad/Localization/flights/Localization
[LOG 11:47:29.813] Config(Localization) Squad/Localization/game_settings/Localization
[LOG 11:47:29.814] Config(Localization) Squad/Localization/KSP_Missing Strings_part_1/Localization
[LOG 11:47:29.815] Config(Localization) Squad/Localization/loading_tips/Localization
[LOG 11:47:29.816] Config(Localization) Squad/Localization/misc/Localization
[LOG 11:47:29.817] Config(Localization) Squad/Localization/Missing strings_part_3/Localization
[LOG 11:47:29.818] Config(Localization) Squad/Localization/Missing strings_part_4/Localization
[LOG 11:47:29.819] Config(Localization) Squad/Localization/Missing strings_part_5/Localization
[LOG 11:47:29.820] Config(Localization) Squad/Localization/Missing strings_part_6/Localization
[LOG 11:47:29.821] Config(Localization) Squad/Localization/Missing_strings_part2/Localization
[LOG 11:47:29.822] Config(Localization) Squad/Localization/parts/Localization
[LOG 11:47:29.823] Config(Localization) Squad/Localization/planets/Localization
[LOG 11:47:29.824] Config(Localization) Squad/Localization/prefabs/Localization
[LOG 11:47:29.825] Config(Localization) Squad/Localization/refactor/Localization
[LOG 11:47:29.826] Config(Localization) Squad/Localization/scenarios/Localization
[LOG 11:47:29.827] Config(Localization) Squad/Localization/Trigger/Localization
[LOG 11:47:29.828] Config(Localization) Squad/Localization/tutorials/Localization
[LOG 11:47:29.829] Config(Localization) Squad/Localization/ui/Localization
[LOG 11:47:29.830] Config(PART) Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone
[LOG 11:47:29.831] Config(PART) Squad/Parts/Aero/airbrake/Airbrake/airbrake1
[LOG 11:47:29.832] Config(PART) Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop
[LOG 11:47:29.833] Config(PART) Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf
[LOG 11:47:29.835] Config(PART) Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing
[LOG 11:47:29.836] Config(PART) Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin
[LOG 11:47:29.837] Config(PART) Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard
[LOG 11:47:29.838] Config(PART) Squad/Parts/Aero/airplaneFins/standardCanard/CanardController
[LOG 11:47:29.839] Config(PART) Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing
[LOG 11:47:29.840] Config(PART) Squad/Parts/Aero/airplaneFins/tailfin/tailfin
[LOG 11:47:29.841] Config(PART) Squad/Parts/Aero/basicFin/basicFin/basicFin
[LOG 11:47:29.842] Config(PART) Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake
[LOG 11:47:29.843] Config(PART) Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake
[LOG 11:47:29.844] Config(PART) Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone
[LOG 11:47:29.845] Config(PART) Squad/Parts/Aero/cones/ConeA/pointyNoseConeA
[LOG 11:47:29.846] Config(PART) Squad/Parts/Aero/cones/ConeB/pointyNoseConeB
[LOG 11:47:29.847] Config(PART) Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter
[LOG 11:47:29.848] Config(PART) Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone
[LOG 11:47:29.849] Config(PART) Squad/Parts/Aero/cones/tailConnectorA/airplaneTail
[LOG 11:47:29.850] Config(PART) Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB
[LOG 11:47:29.851] Config(PART) Squad/Parts/Aero/fairings/fairingSize1/fairingSize1
[LOG 11:47:29.852] Config(PART) Squad/Parts/Aero/fairings/fairingSize2/fairingSize2
[LOG 11:47:29.853] Config(PART) Squad/Parts/Aero/fairings/fairingSize3/fairingSize3
[LOG 11:47:29.854] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0
[LOG 11:47:29.855] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1
[LOG 11:47:29.856] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2
[LOG 11:47:29.857] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3
[LOG 11:47:29.858] Config(PART) Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield
[LOG 11:47:29.859] Config(PART) Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong
[LOG 11:47:29.861] Config(PART) Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake
[LOG 11:47:29.862] Config(PART) Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone
[LOG 11:47:29.863] Config(PART) Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake
[LOG 11:47:29.864] Config(PART) Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta
[LOG 11:47:29.865] Config(PART) Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1
[LOG 11:47:29.866] Config(PART) Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2
[LOG 11:47:29.867] Config(PART) Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder
[LOG 11:47:29.868] Config(PART) Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake
[LOG 11:47:29.869] Config(PART) Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet
[LOG 11:47:29.870] Config(PART) Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet
[LOG 11:47:29.871] Config(PART) Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3
[LOG 11:47:29.872] Config(PART) Squad/Parts/Aero/wings/connector1/wingConnector
[LOG 11:47:29.873] Config(PART) Squad/Parts/Aero/wings/connector2/wingConnector2
[LOG 11:47:29.874] Config(PART) Squad/Parts/Aero/wings/connector3/wingConnector3
[LOG 11:47:29.875] Config(PART) Squad/Parts/Aero/wings/connector4/wingConnector4
[LOG 11:47:29.876] Config(PART) Squad/Parts/Aero/wings/connector5/wingConnector5
[LOG 11:47:29.877] Config(PART) Squad/Parts/Aero/wings/delta/deltaWing
[LOG 11:47:29.878] Config(PART) Squad/Parts/Aero/wings/delta_small/delta_small
[LOG 11:47:29.879] Config(PART) Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf
[LOG 11:47:29.880] Config(PART) Squad/Parts/Aero/wings/elevon2/elevon2
[LOG 11:47:29.881] Config(PART) Squad/Parts/Aero/wings/elevon3/elevon3
[LOG 11:47:29.882] Config(PART) Squad/Parts/Aero/wings/elevon4/smallCtrlSrf
[LOG 11:47:29.883] Config(PART) Squad/Parts/Aero/wings/elevon5/elevon5
[LOG 11:47:29.884] Config(PART) Squad/Parts/Aero/wings/strake/wingStrake
[LOG 11:47:29.885] Config(PART) Squad/Parts/Aero/wings/structural1/structuralWing
[LOG 11:47:29.886] Config(PART) Squad/Parts/Aero/wings/structural2/structuralWing2
[LOG 11:47:29.887] Config(PART) Squad/Parts/Aero/wings/structural3/structuralWing3
[LOG 11:47:29.888] Config(PART) Squad/Parts/Aero/wings/structural4/structuralWing4
[LOG 11:47:29.889] Config(PART) Squad/Parts/Aero/wings/swept1/sweptWing1
[LOG 11:47:29.890] Config(PART) Squad/Parts/Aero/wings/swept2/sweptWing2
[LOG 11:47:29.891] Config(PART) Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2
[LOG 11:47:29.892] Config(PART) Squad/Parts/Command/cupola/cupola/cupola
[LOG 11:47:29.893] Config(PART) Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd
[LOG 11:47:29.894] Config(PART) Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin
[LOG 11:47:29.895] Config(PART) Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule
[LOG 11:47:29.896] Config(PART) Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule
[LOG 11:47:29.898] Config(PART) Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod
[LOG 11:47:29.899] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit
[LOG 11:47:29.900] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin
[LOG 11:47:29.901] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit
[LOG 11:47:29.902] Config(PART) Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall
[LOG 11:47:29.903] Config(PART) Squad/Parts/Command/mk1pod/mk1Pod/mk1pod
[LOG 11:47:29.904] Config(PART) Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline
[LOG 11:47:29.905] Config(PART) Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard
[LOG 11:47:29.906] Config(PART) Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore
[LOG 11:47:29.907] Config(PART) Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin
[LOG 11:47:29.908] Config(PART) Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle
[LOG 11:47:29.909] Config(PART) Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube
[LOG 11:47:29.910] Config(PART) Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex
[LOG 11:47:29.911] Config(PART) Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto
[LOG 11:47:29.913] Config(PART) Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2
[LOG 11:47:29.914] Config(PART) Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody
[LOG 11:47:29.915] Config(PART) Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge
[LOG 11:47:29.916] Config(PART) Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall
[LOG 11:47:29.917] Config(PART) Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere
[LOG 11:47:29.918] Config(PART) Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine
[LOG 11:47:29.919] Config(PART) Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector
[LOG 11:47:29.920] Config(PART) Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2
[LOG 11:47:29.921] Config(PART) Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4
[LOG 11:47:29.922] Config(PART) Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1
[LOG 11:47:29.924] Config(PART) Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3
[LOG 11:47:29.925] Config(PART) Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel
[LOG 11:47:29.926] Config(PART) Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5
[LOG 11:47:29.927] Config(PART) Squad/Parts/Electrical/RTG/RTG/rtg
[LOG 11:47:29.928] Config(PART) Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack
[LOG 11:47:29.929] Config(PART) Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank
[LOG 11:47:29.930] Config(PART) Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini
[LOG 11:47:29.931] Config(PART) Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack
[LOG 11:47:29.932] Config(PART) Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge
[LOG 11:47:29.933] Config(PART) Squad/Parts/Engine/ionEngine/ionEngine/ionEngine
[LOG 11:47:29.934] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet
[LOG 11:47:29.935] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine
[LOG 11:47:29.936] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2
[LOG 11:47:29.938] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine
[LOG 11:47:29.939] Config(PART) Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine
[LOG 11:47:29.940] Config(PART) Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini
[LOG 11:47:29.941] Config(PART) Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike
[LOG 11:47:29.942] Config(PART) Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine
[LOG 11:47:29.944] Config(PART) Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini
[LOG 11:47:29.945] Config(PART) Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3
[LOG 11:47:29.946] Config(PART) Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine
[LOG 11:47:29.947] Config(PART) Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine
[LOG 11:47:29.948] Config(PART) Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2
[LOG 11:47:29.949] Config(PART) Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2
[LOG 11:47:29.950] Config(PART) Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2
[LOG 11:47:29.951] Config(PART) Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2
[LOG 11:47:29.953] Config(PART) Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper
[LOG 11:47:29.954] Config(PART) Squad/Parts/Engine/liquidEngineSSME/SSME/SSME
[LOG 11:47:29.955] Config(PART) Squad/Parts/Engine/MassiveSRB/part/MassiveBooster
[LOG 11:47:29.956] Config(PART) Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine
[LOG 11:47:29.957] Config(PART) Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine
[LOG 11:47:29.958] Config(PART) Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER
[LOG 11:47:29.959] Config(PART) Squad/Parts/Engine/Size2LFB/part/Size2LFB
[LOG 11:47:29.960] Config(PART) Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine
[LOG 11:47:29.961] Config(PART) Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster
[LOG 11:47:29.962] Config(PART) Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1
[LOG 11:47:29.963] Config(PART) Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster
[LOG 11:47:29.964] Config(PART) Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm
[LOG 11:47:29.965] Config(PART) Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1
[LOG 11:47:29.966] Config(PART) Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine
[LOG 11:47:29.968] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2
[LOG 11:47:29.968] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines
[LOG 11:47:29.970] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2
[LOG 11:47:29.971] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant
[LOG 11:47:29.972] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2
[LOG 11:47:29.973] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1
[LOG 11:47:29.974] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant
[LOG 11:47:29.975] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3
[LOG 11:47:29.976] Config(PART) Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2
[LOG 11:47:29.977] Config(PART) Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank
[LOG 11:47:29.978] Config(PART) Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat
[LOG 11:47:29.979] Config(PART) Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall
[LOG 11:47:29.980] Config(PART) Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank
[LOG 11:47:29.982] Config(PART) Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long
[LOG 11:47:29.983] Config(PART) Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank
[LOG 11:47:29.984] Config(PART) Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2
[LOG 11:47:29.985] Config(PART) Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2
[LOG 11:47:29.986] Config(PART) Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2
[LOG 11:47:29.987] Config(PART) Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage
[LOG 11:47:29.988] Config(PART) Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler
[LOG 11:47:29.989] Config(PART) Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong
[LOG 11:47:29.990] Config(PART) Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter
[LOG 11:47:29.991] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO
[LOG 11:47:29.992] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage
[LOG 11:47:29.993] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO
[LOG 11:47:29.994] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid
[LOG 11:47:29.996] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono
[LOG 11:47:29.997] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin
[LOG 11:47:29.998] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100
[LOG 11:47:29.999] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25
[LOG 11:47:30.000] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50
[LOG 11:47:30.001] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100
[LOG 11:47:30.002] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25
[LOG 11:47:30.003] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50
[LOG 11:47:30.004] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO
[LOG 11:47:30.005] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2
[LOG 11:47:30.006] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini
[LOG 11:47:30.007] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank
[LOG 11:47:30.008] Config(PART) Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank
[LOG 11:47:30.009] Config(PART) Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong
[LOG 11:47:30.010] Config(PART) Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank
[LOG 11:47:30.011] Config(PART) Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank
[LOG 11:47:30.012] Config(PART) Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank
[LOG 11:47:30.013] Config(PART) Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank
[LOG 11:47:30.014] Config(PART) Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge
[LOG 11:47:30.016] Config(PART) Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial
[LOG 11:47:30.017] Config(PART) Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore
[LOG 11:47:30.018] Config(PART) Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna
[LOG 11:47:30.019] Config(PART) Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel
[LOG 11:47:30.020] Config(PART) Squad/Parts/Misc/PotatoRoid/part/PotatoRoid
[LOG 11:47:30.021] Config(PART) Squad/Parts/Prebuilt/flag/flag
[LOG 11:47:30.022] Config(PART) Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA
[LOG 11:47:30.023] Config(PART) Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale
[LOG 11:47:30.024] Config(PART) Squad/Parts/Resources/FuelCell/FuelCell/FuelCell
[LOG 11:47:30.025] Config(PART) Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray
[LOG 11:47:30.026] Config(PART) Squad/Parts/Resources/ISRU/ISRU/ISRU
[LOG 11:47:30.027] Config(PART) Squad/Parts/Resources/LargeTank/LargeTank/LargeTank
[LOG 11:47:30.028] Config(PART) Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill
[LOG 11:47:30.029] Config(PART) Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU
[LOG 11:47:30.030] Config(PART) Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner
[LOG 11:47:30.031] Config(PART) Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill
[LOG 11:47:30.032] Config(PART) Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank
[LOG 11:47:30.033] Config(PART) Squad/Parts/Resources/SmallTank/SmallTank/SmallTank
[LOG 11:47:30.034] Config(PART) Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner
[LOG 11:47:30.035] Config(PART) Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner
[LOG 11:47:30.036] Config(PART) Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere
[LOG 11:47:30.037] Config(PART) Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment
[LOG 11:47:30.038] Config(PART) Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab
[LOG 11:47:30.039] Config(PART) Squad/Parts/Science/MaterialBay/materialBay/science_module
[LOG 11:47:30.040] Config(PART) Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox
[LOG 11:47:30.041] Config(PART) Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer
[LOG 11:47:30.043] Config(PART) Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer
[LOG 11:47:30.044] Config(PART) Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter
[LOG 11:47:30.045] Config(PART) Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer
[LOG 11:47:30.046] Config(PART) Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi
[LOG 11:47:30.047] Config(PART) Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad
[LOG 11:47:30.048] Config(PART) Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri
[LOG 11:47:30.050] Config(PART) Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort
[LOG 11:47:30.051] Config(PART) Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall
[LOG 11:47:30.052] Config(PART) Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody
[LOG 11:47:30.053] Config(PART) Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody
[LOG 11:47:30.054] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage
[LOG 11:47:30.055] Config(PART) Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage
[LOG 11:47:30.056] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural
[LOG 11:47:30.057] Config(PART) Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler
[LOG 11:47:30.058] Config(PART) Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter
[LOG 11:47:30.059] Config(PART) Squad/Parts/Structural/stationHub/stationHub/stationHub
[LOG 11:47:30.061] Config(PART) Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2
[LOG 11:47:30.062] Config(PART) Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3
[LOG 11:47:30.063] Config(PART) Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1
[LOG 11:47:30.064] Config(PART) Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode
[LOG 11:47:30.065] Config(PART) Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1
[LOG 11:47:30.066] Config(PART) Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2
[LOG 11:47:30.068] Config(PART) Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint
[LOG 11:47:30.069] Config(PART) Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon
[LOG 11:47:30.070] Config(PART) Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube
[LOG 11:47:30.071] Config(PART) Squad/Parts/Structural/strutOcto/strutOcto/strutOcto
[LOG 11:47:30.072] Config(PART) Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter
[LOG 11:47:30.073] Config(PART) Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x
[LOG 11:47:30.074] Config(PART) Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x
[LOG 11:47:30.075] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge
[LOG 11:47:30.076] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed
[LOG 11:47:30.077] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall
[LOG 11:47:30.078] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge
[LOG 11:47:30.079] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg
[LOG 11:47:30.080] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm
[LOG 11:47:30.081] Config(PART) Squad/Parts/Utility/commDish88-88/commDish88-88/commDish
[LOG 11:47:30.082] Config(PART) Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna
[LOG 11:47:30.083] Config(PART) Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna
[LOG 11:47:30.085] Config(PART) Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2
[LOG 11:47:30.086] Config(PART) Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler
[LOG 11:47:30.087] Config(PART) Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2
[LOG 11:47:30.088] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator
[LOG 11:47:30.089] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini
[LOG 11:47:30.090] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig
[LOG 11:47:30.092] Config(PART) Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2
[LOG 11:47:30.093] Config(PART) Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler
[LOG 11:47:30.094] Config(PART) Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini
[LOG 11:47:30.095] Config(PART) Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna
[LOG 11:47:30.096] Config(PART) Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5
[LOG 11:47:30.097] Config(PART) Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2
[LOG 11:47:30.098] Config(PART) Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral
[LOG 11:47:30.099] Config(PART) Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3
[LOG 11:47:30.100] Config(PART) Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1
[LOG 11:47:30.101] Config(PART) Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge
[LOG 11:47:30.102] Config(PART) Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice
[LOG 11:47:30.103] Config(PART) Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1
[LOG 11:47:30.104] Config(PART) Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder
[LOG 11:47:30.105] Config(PART) Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay
[LOG 11:47:30.106] Config(PART) Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1
[LOG 11:47:30.108] Config(PART) Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2
[LOG 11:47:30.109] Config(PART) Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg
[LOG 11:47:30.110] Config(PART) Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter
[LOG 11:47:30.111] Config(PART) Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2
[LOG 11:47:30.112] Config(PART) Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1
[LOG 11:47:30.113] Config(PART) Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem
[LOG 11:47:30.114] Config(PART) Squad/Parts/Utility/linearRCS/linearRCS/linearRcs
[LOG 11:47:30.115] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL
[LOG 11:47:30.116] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS
[LOG 11:47:30.117] Config(PART) Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin
[LOG 11:47:30.118] Config(PART) Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort
[LOG 11:47:30.119] Config(PART) Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL
[LOG 11:47:30.120] Config(PART) Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM
[LOG 11:47:30.121] Config(PART) Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp
[LOG 11:47:30.122] Config(PART) Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS
[LOG 11:47:30.123] Config(PART) Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle
[LOG 11:47:30.124] Config(PART) Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue
[LOG 11:47:30.125] Config(PART) Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge
[LOG 11:47:30.126] Config(PART) Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial
[LOG 11:47:30.127] Config(PART) Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue
[LOG 11:47:30.128] Config(PART) Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1
[LOG 11:47:30.129] Config(PART) Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock
[LOG 11:47:30.130] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100
[LOG 11:47:30.131] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5
[LOG 11:47:30.132] Config(PART) Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50
[LOG 11:47:30.133] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125
[LOG 11:47:30.134] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250
[LOG 11:47:30.135] Config(PART) Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1
[LOG 11:47:30.136] Config(PART) Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2
[LOG 11:47:30.137] Config(PART) Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler
[LOG 11:47:30.138] Config(PART) Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler
[LOG 11:47:30.139] Config(PART) Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler
[LOG 11:47:30.140] Config(PART) Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge
[LOG 11:47:30.141] Config(PART) Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed
[LOG 11:47:30.142] Config(PART) Squad/Parts/Wheel/LandingGear/GearFree/GearFree
[LOG 11:47:30.143] Config(PART) Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium
[LOG 11:47:30.144] Config(PART) Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall
[LOG 11:47:30.145] Config(PART) Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay
[LOG 11:47:30.146] Config(PART) Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1
[LOG 11:47:30.147] Config(PART) Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2
[LOG 11:47:30.148] Config(PART) Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed
[LOG 11:47:30.149] Config(PART) Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3
[LOG 11:47:30.150] Config(PROP) Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands
[LOG 11:47:30.151] Config(PROP) Squad/Props/AtmosphereDepth/prop/AtmosphereDepth
[LOG 11:47:30.152] Config(PROP) Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch
[LOG 11:47:30.153] Config(PROP) Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll
[LOG 11:47:30.154] Config(PROP) Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw
[LOG 11:47:30.155] Config(PROP) Squad/Props/buttonsGeneric/circularButton/genericCircularButton
[LOG 11:47:30.157] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons
[LOG 11:47:30.158] Config(PROP) Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2
[LOG 11:47:30.159] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs
[LOG 11:47:30.160] Config(PROP) Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2
[LOG 11:47:30.161] Config(PROP) Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed
[LOG 11:47:30.162] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01
[LOG 11:47:30.163] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02
[LOG 11:47:30.164] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03
[LOG 11:47:30.165] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04
[LOG 11:47:30.166] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05
[LOG 11:47:30.167] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06
[LOG 11:47:30.169] Config(PROP) Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07
[LOG 11:47:30.170] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob
[LOG 11:47:30.171] Config(PROP) Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2
[LOG 11:47:30.172] Config(PROP) Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch
[LOG 11:47:30.173] Config(PROP) Squad/Props/buttonsGeneric/squareButton/genericSquareButton
[LOG 11:47:30.174] Config(PROP) Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch
[LOG 11:47:30.175] Config(PROP) Squad/Props/buttonsGeneric/switch/genericSwitch
[LOG 11:47:30.176] Config(PROP) Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards
[LOG 11:47:30.177] Config(PROP) Squad/Props/ButtonSquare/prop/ButtonSquare
[LOG 11:47:30.178] Config(PROP) Squad/Props/circularButton/prop/circularButton
[LOG 11:47:30.179] Config(PROP) Squad/Props/Compass/prop/Compass
[LOG 11:47:30.180] Config(PROP) Squad/Props/directionalKnob/prop/directionalKnob
[LOG 11:47:30.181] Config(PROP) Squad/Props/directionalKnob2/prop/directionalKnob2
[LOG 11:47:30.182] Config(PROP) Squad/Props/IndicatorPanel/prop/IndicatorPanel
[LOG 11:47:30.183] Config(PROP) Squad/Props/IVANavBall/prop/NavBall
[LOG 11:47:30.184] Config(PROP) Squad/Props/ledPanelSpeed/prop/ledPanelSpeed
[LOG 11:47:30.185] Config(PROP) Squad/Props/Monitor/DockingMode/MonitorDockingMode
[LOG 11:47:30.186] Config(PROP) Squad/Props/NavBall/prop/NavBall
[LOG 11:47:30.187] Config(PROP) Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode
[LOG 11:47:30.188] Config(PROP) Squad/Props/PropsGeneric/CargoBagA/CargoBagA
[LOG 11:47:30.189] Config(PROP) Squad/Props/PropsGeneric/CargoBagB/CargoBagB
[LOG 11:47:30.190] Config(PROP) Squad/Props/PropsGeneric/CargoBagC/CargoBagC
[LOG 11:47:30.191] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane
[LOG 11:47:30.192] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90
[LOG 11:47:30.193] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame
[LOG 11:47:30.194] Config(PROP) Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger
[LOG 11:47:30.195] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot
[LOG 11:47:30.196] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet
[LOG 11:47:30.197] Config(PROP) Squad/Props/PropsGeneric/SideStick/SideStick
[LOG 11:47:30.198] Config(PROP) Squad/Props/pullSwitch/prop/pullSwitch
[LOG 11:47:30.199] Config(PROP) Squad/Props/radarAltitude/prop/RadarAltimeter
[LOG 11:47:30.200] Config(PROP) Squad/Props/squareButton/prop/squareButton
[LOG 11:47:30.201] Config(PROP) Squad/Props/standingSwitch/prop/standingSwitch
[LOG 11:47:30.202] Config(PROP) Squad/Props/switch/prop/switch
[LOG 11:47:30.203] Config(PROP) Squad/Props/switchGuard/prop/switchGuard
[LOG 11:47:30.204] Config(PROP) Squad/Props/switchWithGuards/prop/switchWithGuards
[LOG 11:47:30.205] Config(PROP) Squad/Props/throttle/prop/throttle
[LOG 11:47:30.206] Config(PROP) Squad/Props/VSI/prop/VSI
[LOG 11:47:30.206] Config(GLOBAL_RESOURCE) Squad/Resources/Ore/GLOBAL_RESOURCE
[LOG 11:47:30.208] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 11:47:30.208] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 11:47:30.209] Config(RESOURCE_OVERLAY_CONFIGURATION_SOLID) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_SOLID
[LOG 11:47:30.211] Config(RESOURCE_OVERLAY_CONFIGURATION_LINES) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_LINES
[LOG 11:47:30.212] Config(RESOURCE_OVERLAY_CONFIGURATION_DOTS) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_DOTS
[LOG 11:47:30.213] Config(RESOURCE_CONFIGURATION) Squad/Resources/ResourceDefaults/RESOURCE_CONFIGURATION
[LOG 11:47:30.214] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/LiquidFuel
[LOG 11:47:30.215] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Oxidizer
[LOG 11:47:30.216] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/SolidFuel
[LOG 11:47:30.217] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/MonoPropellant
[LOG 11:47:30.218] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/XenonGas
[LOG 11:47:30.219] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/ElectricCharge
[LOG 11:47:30.220] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/IntakeAir
[LOG 11:47:30.221] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/EVA Propellant
[LOG 11:47:30.222] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ore
[LOG 11:47:30.223] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ablator
[LOG 11:47:30.225] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.226] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.227] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.228] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.229] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.230] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.231] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.232] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.233] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.234] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.236] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 11:47:30.237] Config(STORY_DEF) Squad/Resources/StoryDefs/STORY_DEF
[LOG 11:47:30.238] Config(TechTree) Squad/Resources/TechTree/TechTree
[LOG 11:47:30.239] Config(INTERNAL) Squad/Spaces/crewCabinInternals/internal/crewCabinInternals
[LOG 11:47:30.240] Config(INTERNAL) Squad/Spaces/cupolaInternal/internal/cupolaInternal
[LOG 11:47:30.241] Config(INTERNAL) Squad/Spaces/GenericSpace1/internal/GenericSpace1
[LOG 11:47:30.242] Config(INTERNAL) Squad/Spaces/GenericSpace3/internal/GenericSpace3
[LOG 11:47:30.243] Config(INTERNAL) Squad/Spaces/landerCabinInternals/internal/landerCabinInternals
[LOG 11:47:30.244] Config(INTERNAL) Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal
[LOG 11:47:30.245] Config(INTERNAL) Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int
[LOG 11:47:30.246] Config(INTERNAL) Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal
[LOG 11:47:30.247] Config(INTERNAL) Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal
[LOG 11:47:30.248] Config(INTERNAL) Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal
[LOG 11:47:30.249] Config(INTERNAL) Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit
[LOG 11:47:30.250] Config(INTERNAL) Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals
[LOG 11:47:30.252] Config(INTERNAL) Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int
[LOG 11:47:30.253] Config(INTERNAL) Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal
[LOG 11:47:30.254] Config(INTERNAL) Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int
[LOG 11:47:30.255] Config(INTERNAL) Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int
[LOG 11:47:30.256] Config(INTERNAL) Squad/Spaces/Placeholder/internal/Placeholder
[LOG 11:47:30.257] Config(INTERNAL) Squad/Spaces/PodCockpit/internal/PodCockpit
[LOG 11:47:30.258] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Finances
[LOG 11:47:30.259] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Science
[LOG 11:47:30.260] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Public Relations
[LOG 11:47:30.261] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Operations
[LOG 11:47:30.262] Config(STRATEGY) Squad/Strategies/Strategies/AppreciationCampaignCfg
[LOG 11:47:30.263] Config(STRATEGY) Squad/Strategies/Strategies/FundraisingCampaignCfg
[LOG 11:47:30.264] Config(STRATEGY) Squad/Strategies/Strategies/OpenSourceTechProgramCfg
[LOG 11:47:30.265] Config(STRATEGY) Squad/Strategies/Strategies/UnpaidResearchProgramCfg
[LOG 11:47:30.266] Config(STRATEGY) Squad/Strategies/Strategies/OutsourcedResearchCfg
[LOG 11:47:30.267] Config(STRATEGY) Squad/Strategies/Strategies/PatentsLicensingCfg
[LOG 11:47:30.268] Config(STRATEGY) Squad/Strategies/Strategies/AgressiveNegotiations
[LOG 11:47:30.269] Config(STRATEGY) Squad/Strategies/Strategies/RecoveryTransponders
[LOG 11:47:30.270] Config(STRATEGY) Squad/Strategies/Strategies/BailoutGrant
[LOG 11:47:30.271] Config(STRATEGY) Squad/Strategies/Strategies/researchIPsellout
[LOG 11:47:30.272] Config(STRATEGY) Squad/Strategies/Strategies/LeadershipInitiative
[LOG 11:47:30.273] Config(TUTORIAL) Squad/Tutorials/FlightSuborbital/FlightSuborbital
[LOG 11:47:30.274] Config(TUTORIAL) Squad/Tutorials/FromMun/FromMun
[LOG 11:47:30.275] Config(TUTORIAL) Squad/Tutorials/GoForOrbit/GoForOrbit
[LOG 11:47:30.278] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.279] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.280] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.281] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.282] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.283] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.284] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.285] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.286] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.287] Resource RESOURCE_DEFINITION added to database
[LOG 11:47:30.288] CodeAssetLoader: Compiling all code assets
[LOG 11:47:30.297] GameDatabase: Assets loaded in 15.695s
[LOG 11:47:30.313] PartLoader: Loading part database
[LOG 11:47:30.315] PartLoader: Compiling Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone'
[LOG 11:47:30.336] EffectList: Created 14 effect types
[LOG 11:47:30.356] PartLoader: Compiling Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1'
[LOG 11:47:30.377] PartLoader: Compiling Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop'
[LOG 11:47:30.389] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf'
[LOG 11:47:30.398] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing'
[LOG 11:47:30.405] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin'
[LOG 11:47:30.414] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard'
[LOG 11:47:30.421] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController'
[LOG 11:47:30.427] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing'
[LOG 11:47:30.432] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin'
[LOG 11:47:30.438] PartLoader: Compiling Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin'
[LOG 11:47:30.443] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake'
[LOG 11:47:30.452] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake'
[LOG 11:47:30.457] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone'
[LOG 11:47:30.474] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA'
[LOG 11:47:30.478] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB'
[LOG 11:47:30.483] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter'
[LOG 11:47:30.488] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone'
[LOG 11:47:30.493] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail'
[LOG 11:47:30.497] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB'
[LOG 11:47:30.502] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1'
[LOG 11:47:30.539] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2'
[LOG 11:47:30.557] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3'
[LOG 11:47:30.596] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield0/HeatShield0'
[LOG 11:47:30.616] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1'
[LOG 11:47:30.630] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2'
[LOG 11:47:30.641] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3'
[LOG 11:47:30.653] PartLoader: Compiling Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield'
[LOG 11:47:30.666] PartLoader: Compiling Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong'
[LOG 11:47:30.671] PartLoader: Compiling Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake'
[LOG 11:47:30.676] PartLoader: Compiling Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone'
[LOG 11:47:30.680] PartLoader: Compiling Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake'
[LOG 11:47:30.685] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta'
[LOG 11:47:30.691] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1'
[LOG 11:47:30.697] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2'
[LOG 11:47:30.704] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder'
[LOG 11:47:30.710] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake'
[LOG 11:47:30.715] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet'
[LOG 11:47:30.721] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet'
[LOG 11:47:30.726] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3'
[LOG 11:47:30.732] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector1/wingConnector'
[LOG 11:47:30.737] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector2/wingConnector2'
[LOG 11:47:30.742] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector3/wingConnector3'
[LOG 11:47:30.747] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector4/wingConnector4'
[LOG 11:47:30.753] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector5/wingConnector5'
[LOG 11:47:30.758] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta/deltaWing'
[LOG 11:47:30.763] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta_small/delta_small'
[LOG 11:47:30.767] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf'
[LOG 11:47:30.774] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon2/elevon2'
[LOG 11:47:30.780] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon3/elevon3'
[LOG 11:47:30.786] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf'
[LOG 11:47:30.792] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon5/elevon5'
[LOG 11:47:30.798] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/strake/wingStrake'
[LOG 11:47:30.803] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural1/structuralWing'
[LOG 11:47:30.808] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural2/structuralWing2'
[LOG 11:47:30.813] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural3/structuralWing3'
[LOG 11:47:30.818] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural4/structuralWing4'
[LOG 11:47:30.823] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept1/sweptWing1'
[LOG 11:47:30.828] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept2/sweptWing2'
[LOG 11:47:30.833] PartLoader: Compiling Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2'
[LOG 11:47:30.840] PartLoader: Compiling Part 'Squad/Parts/Command/cupola/cupola/cupola'
[LOG 11:47:30.874] PartLoader: Compiling Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd'
[LOG 11:47:30.881] PartLoader: Compiling Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin'
[LOG 11:47:30.891] PartLoader: Compiling Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule'
[LOG 11:47:30.896] PartLoader: Compiling Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule'
[LOG 11:47:30.901] PartLoader: Compiling Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod'
[LOG 11:47:30.921] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit'
[LOG 11:47:30.935] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin'
[LOG 11:47:30.946] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit'
[LOG 11:47:30.959] PartLoader: Compiling Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall'
[LOG 11:47:30.972] PartLoader: Compiling Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod'
[LOG 11:47:30.988] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline'
[LOG 11:47:31.003] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard'
[LOG 11:47:31.018] PartLoader: Compiling Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore'
[LOG 11:47:31.028] PartLoader: Compiling Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin'
[LOG 11:47:31.042] PartLoader: Compiling Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle'
[LOG 11:47:31.075] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube'
[LOG 11:47:31.084] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex'
[LOG 11:47:31.094] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto'
[LOG 11:47:31.104] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2'
[LOG 11:47:31.113] PartLoader: Compiling Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody'
[LOG 11:47:31.121] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge'
[LOG 11:47:31.133] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall'
[LOG 11:47:31.145] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere'
[LOG 11:47:31.153] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine'
[LOG 11:47:31.171] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector'
[LOG 11:47:31.180] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2'
[LOG 11:47:31.191] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4'
[LOG 11:47:31.198] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1'
[LOG 11:47:31.205] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3'
[LOG 11:47:31.212] PartLoader: Compiling Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel'
[LOG 11:47:31.219] PartLoader: Compiling Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5'
[LOG 11:47:31.226] PartLoader: Compiling Part 'Squad/Parts/Electrical/RTG/RTG/rtg'
[LOG 11:47:31.239] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack'
[LOG 11:47:31.243] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank'
[LOG 11:47:31.247] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini'
[LOG 11:47:31.251] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack'
[LOG 11:47:31.255] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge'
[LOG 11:47:31.259] PartLoader: Compiling Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine'
[LOG 11:47:31.285] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet'
[LOG 11:47:31.330] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine'
[LOG 11:47:31.346] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2'
[LOG 11:47:31.367] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine'
[LOG 11:47:31.385] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine'
[LOG 11:47:31.397] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini'
[LOG 11:47:31.411] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike'
[LOG 11:47:31.433] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine'
[LOG 11:47:31.443] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini'
[LOG 11:47:31.456] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3'
[LOG 11:47:31.470] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine'
[LOG 11:47:31.505] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine'
[LOG 11:47:31.518] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2'
[LOG 11:47:31.533] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2'
[LOG 11:47:31.549] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2'
[LOG 11:47:31.562] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2'
[LOG 11:47:31.578] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper'
[LOG 11:47:31.593] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME'
[LOG 11:47:31.610] PartLoader: Compiling Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster'
[LOG 11:47:31.625] PartLoader: Compiling Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine'
[LOG 11:47:31.638] PartLoader: Compiling Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine'
[LOG 11:47:31.649] PartLoader: Compiling Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER'
[LOG 11:47:31.672] PartLoader: Compiling Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB'
[LOG 11:47:31.688] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine'
[LOG 11:47:31.706] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster'
[LOG 11:47:31.722] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1'
[LOG 11:47:31.734] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster'
[LOG 11:47:31.746] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm'
[LOG 11:47:31.756] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1'
[LOG 11:47:31.765] PartLoader: Compiling Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine'
[LOG 11:47:31.777] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2'
[LOG 11:47:31.781] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines'
[LOG 11:47:31.785] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2'
[LOG 11:47:31.789] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant'
[LOG 11:47:31.794] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2'
[LOG 11:47:31.798] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1'
[LOG 11:47:31.802] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant'
[LOG 11:47:31.806] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3'
[LOG 11:47:31.810] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2'
[LOG 11:47:31.815] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank'
[LOG 11:47:31.819] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat'
[LOG 11:47:31.823] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall'
[LOG 11:47:31.827] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank'
[LOG 11:47:31.831] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long'
[LOG 11:47:31.836] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank'
[LOG 11:47:31.839] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2'
[LOG 11:47:31.843] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2'
[LOG 11:47:31.848] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2'
[LOG 11:47:31.852] PartLoader: Compiling Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage'
[LOG 11:47:31.856] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler'
[LOG 11:47:31.861] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong'
[LOG 11:47:31.866] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter'
[LOG 11:47:31.872] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO'
[LOG 11:47:31.877] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage'
[LOG 11:47:31.882] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO'
[LOG 11:47:31.888] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid'
[LOG 11:47:31.893] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono'
[LOG 11:47:31.898] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin'
[LOG 11:47:31.907] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100'
[LOG 11:47:31.912] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25'
[LOG 11:47:31.916] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50'
[LOG 11:47:31.920] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100'
[LOG 11:47:31.924] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25'
[LOG 11:47:31.928] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50'
[LOG 11:47:31.932] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO'
[LOG 11:47:31.936] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2'
[LOG 11:47:31.940] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini'
[LOG 11:47:31.944] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank'
[LOG 11:47:31.948] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank'
[LOG 11:47:31.952] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong'
[LOG 11:47:31.956] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank'
[LOG 11:47:31.960] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank'
[LOG 11:47:31.964] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank'
[LOG 11:47:31.968] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank'
[LOG 11:47:31.972] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge'
[LOG 11:47:31.976] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial'
[LOG 11:47:31.980] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore'
[LOG 11:47:32.016] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna'
[LOG 11:47:32.028] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel'
[LOG 11:47:32.035] PartLoader: Compiling Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid'
[LOG 11:47:32.048] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/flag/flag'
[LOG 11:47:32.053] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVA/kerbalEVA'
[LOG 11:47:32.064] PartLoader: Compiling Part 'Squad/Parts/Prebuilt/kerbalEVAfemale/kerbalEVAfemale'
[LOG 11:47:32.069] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell'
[LOG 11:47:32.081] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray'
[LOG 11:47:32.088] PartLoader: Compiling Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU'
[LOG 11:47:32.112] PartLoader: Compiling Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank'
[LOG 11:47:32.119] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill'
[LOG 11:47:32.143] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU'
[LOG 11:47:32.157] PartLoader: Compiling Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner'
[LOG 11:47:32.173] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill'
[LOG 11:47:32.188] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank'
[LOG 11:47:32.193] PartLoader: Compiling Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank'
[LOG 11:47:32.198] PartLoader: Compiling Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner'
[LOG 11:47:32.213] PartLoader: Compiling Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner'
[LOG 11:47:32.228] PartLoader: Compiling Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere'
[LOG 11:47:32.234] PartLoader: Compiling Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment'
[LOG 11:47:32.242] PartLoader: Compiling Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab'
[LOG 11:47:32.264] PartLoader: Compiling Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module'
[LOG 11:47:32.272] PartLoader: Compiling Part 'Squad/Parts/Science/ScienceBox/ScienceBox/ScienceBox'
[LOG 11:47:32.277] PartLoader: Compiling Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer'
[LOG 11:47:32.287] PartLoader: Compiling Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer'
[LOG 11:47:32.294] PartLoader: Compiling Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter'
[LOG 11:47:32.301] PartLoader: Compiling Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer'
[LOG 11:47:32.308] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi'
[LOG 11:47:32.312] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad'
[LOG 11:47:32.316] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri'
[LOG 11:47:32.320] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort'
[LOG 11:47:32.324] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall'
[LOG 11:47:32.328] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody'
[LOG 11:47:32.335] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody'
[LOG 11:47:32.342] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage'
[LOG 11:47:32.346] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage'
[LOG 11:47:32.353] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural'
[LOG 11:47:32.356] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler'
[LOG 11:47:32.365] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter'
[LOG 11:47:32.368] PartLoader: Compiling Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub'
[LOG 11:47:32.372] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2'
[LOG 11:47:32.376] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3'
[LOG 11:47:32.380] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1'
[LOG 11:47:32.384] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode'
[LOG 11:47:32.388] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1'
[LOG 11:47:32.392] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2'
[LOG 11:47:32.396] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint'
[LOG 11:47:32.403] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon'
[LOG 11:47:32.410] PartLoader: Compiling Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube'
[LOG 11:47:32.414] PartLoader: Compiling Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto'
[LOG 11:47:32.420] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter'
[LOG 11:47:32.424] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x'
[LOG 11:47:32.427] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x'
[LOG 11:47:32.431] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge'
[LOG 11:47:32.448] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed'
[LOG 11:47:32.455] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall'
[LOG 11:47:32.463] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge'
[LOG 11:47:32.469] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg'
[LOG 11:47:32.475] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm'
[LOG 11:47:32.480] PartLoader: Compiling Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish'
[LOG 11:47:32.516] PartLoader: Compiling Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna'
[LOG 11:47:32.524] PartLoader: Compiling Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna'
[LOG 11:47:32.532] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2'
[LOG 11:47:32.543] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler'
[LOG 11:47:32.550] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2'
[LOG 11:47:32.557] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator'
[LOG 11:47:32.563] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini'
[LOG 11:47:32.570] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig'
[LOG 11:47:32.576] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2'
[LOG 11:47:32.583] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler'
[LOG 11:47:32.589] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini'
[LOG 11:47:32.596] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/C16S/SurfAntenna'
[LOG 11:47:32.601] PartLoader: Compiling Part 'Squad/Parts/Utility/DirectAntennas/HG-5/HighGainAntenna5'
[LOG 11:47:32.609] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2'
[LOG 11:47:32.620] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral'
[LOG 11:47:32.629] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3'
[LOG 11:47:32.635] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1'
[LOG 11:47:32.643] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge'
[LOG 11:47:32.650] PartLoader: Compiling Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice'
[LOG 11:47:32.664] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1'
[LOG 11:47:32.668] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder'
[LOG 11:47:32.676] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay'
[LOG 11:47:32.682] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1'
[LOG 11:47:32.714] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2'
[LOG 11:47:32.727] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg'
[LOG 11:47:32.740] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter'
[LOG 11:47:32.744] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2'
[LOG 11:47:32.748] PartLoader: Compiling Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1'
[LOG 11:47:32.759] PartLoader: Compiling Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem'
[LOG 11:47:32.770] PartLoader: Compiling Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs'
[LOG 11:47:32.777] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL'
[LOG 11:47:32.785] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS'
[LOG 11:47:32.792] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin'
[LOG 11:47:32.803] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort'
[LOG 11:47:32.811] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL'
[LOG 11:47:32.817] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM'
[LOG 11:47:32.824] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp'
[LOG 11:47:32.831] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS'
[LOG 11:47:32.838] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle'
[LOG 11:47:32.854] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue'
[LOG 11:47:32.863] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge'
[LOG 11:47:32.872] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial'
[LOG 11:47:32.880] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue'
[LOG 11:47:32.889] PartLoader: Compiling Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1'
[LOG 11:47:32.893] PartLoader: Compiling Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock'
[LOG 11:47:32.900] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-100/RelayAntenna100'
[LOG 11:47:32.907] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-5/RelayAntenna5'
[LOG 11:47:32.912] PartLoader: Compiling Part 'Squad/Parts/Utility/RelayAntennas/RA-50/RelayAntenna50'
[LOG 11:47:32.918] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125'
[LOG 11:47:32.930] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250'
[LOG 11:47:32.939] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1'
[LOG 11:47:32.948] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2'
[LOG 11:47:32.954] PartLoader: Compiling Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler'
[LOG 11:47:32.958] PartLoader: Compiling Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler'
[LOG 11:47:32.962] PartLoader: Compiling Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler'
[LOG 11:47:32.995] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge'
[LOG 11:47:33.019] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed'
[LOG 11:47:33.029] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree'
[LOG 11:47:33.041] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium'
[LOG 11:47:33.060] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall'
[LOG 11:47:33.080] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay'
[LOG 11:47:33.099] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1'
[LOG 11:47:33.116] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2'
[LOG 11:47:33.130] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed'
[LOG 11:47:33.143] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3'
[LOG 11:47:33.159] PartLoader: Compiling Internal Prop 'Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands'
[LOG 11:47:33.163] PartLoader: Compiling Internal Prop 'Squad/Props/AtmosphereDepth/prop/AtmosphereDepth'
[LOG 11:47:33.166] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch'
[LOG 11:47:33.169] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll'
[LOG 11:47:33.171] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw'
[LOG 11:47:33.174] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/circularButton/genericCircularButton'
[LOG 11:47:33.176] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons/genericClusterButtons'
[LOG 11:47:33.178] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterButtons2/genericClusterButtons2'
[LOG 11:47:33.180] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob/genericClusterKnobs'
[LOG 11:47:33.181] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterKnob2/genericClusterKnobs2'
[LOG 11:47:33.183] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterMixed/genericClusterMixed'
[LOG 11:47:33.185] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches01/genericClusterSwitches01'
[LOG 11:47:33.187] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches02/genericClusterSwitches02'
[LOG 11:47:33.188] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches03/genericClusterSwitches03'
[LOG 11:47:33.190] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches04/genericClusterSwitches04'
[LOG 11:47:33.192] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches05/genericClusterSwitches05'
[LOG 11:47:33.193] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches06/genericClusterSwitches06'
[LOG 11:47:33.195] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/clusterSwitches07/genericClusterSwitches07'
[LOG 11:47:33.197] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob/genericDirectionalKnob'
[LOG 11:47:33.199] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/directionalKnob2/genericDirectionalKnob2'
[LOG 11:47:33.200] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/pullSwitch/genericPullSwitch'
[LOG 11:47:33.202] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/squareButton/genericSquareButton'
[LOG 11:47:33.204] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/standingSwitch/genericStandingSwitch'
[LOG 11:47:33.205] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switch/genericSwitch'
[LOG 11:47:33.207] PartLoader: Compiling Internal Prop 'Squad/Props/buttonsGeneric/switchWithGuards/genericSwitchWithGuards'
[LOG 11:47:33.209] PartLoader: Compiling Internal Prop 'Squad/Props/ButtonSquare/prop/ButtonSquare'
[LOG 11:47:33.212] PartLoader: Compiling Internal Prop 'Squad/Props/circularButton/prop/circularButton'
[LOG 11:47:33.214] PartLoader: Compiling Internal Prop 'Squad/Props/Compass/prop/Compass'
[LOG 11:47:33.217] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob/prop/directionalKnob'
[LOG 11:47:33.219] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob2/prop/directionalKnob2'
[LOG 11:47:33.220] PartLoader: Compiling Internal Prop 'Squad/Props/IndicatorPanel/prop/IndicatorPanel'
[LOG 11:47:33.224] PartLoader: Compiling Internal Prop 'Squad/Props/IVANavBall/prop/NavBall'
[LOG 11:47:33.228] PartLoader: Compiling Internal Prop 'Squad/Props/ledPanelSpeed/prop/ledPanelSpeed'
[LOG 11:47:33.231] PartLoader: Compiling Internal Prop 'Squad/Props/Monitor/DockingMode/MonitorDockingMode'
[LOG 11:47:33.233] PartLoader: Compiling Internal Prop 'Squad/Props/NavBall/prop/NavBall'
[LOG 11:47:33.235] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode'
[LOG 11:47:33.237] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagA/CargoBagA'
[LOG 11:47:33.238] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagB/CargoBagB'
[LOG 11:47:33.240] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagC/CargoBagC'
[LOG 11:47:33.242] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane'
[LOG 11:47:33.243] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90'
[LOG 11:47:33.245] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame'
[LOG 11:47:33.247] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger'
[LOG 11:47:33.248] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot'
[LOG 11:47:33.250] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet'
[LOG 11:47:33.252] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/SideStick/SideStick'
[LOG 11:47:33.253] PartLoader: Compiling Internal Prop 'Squad/Props/pullSwitch/prop/pullSwitch'
[LOG 11:47:33.255] PartLoader: Compiling Internal Prop 'Squad/Props/radarAltitude/prop/RadarAltimeter'
[LOG 11:47:33.258] PartLoader: Compiling Internal Prop 'Squad/Props/squareButton/prop/squareButton'
[LOG 11:47:33.260] PartLoader: Compiling Internal Prop 'Squad/Props/standingSwitch/prop/standingSwitch'
[LOG 11:47:33.262] PartLoader: Compiling Internal Prop 'Squad/Props/switch/prop/switch'
[LOG 11:47:33.264] PartLoader: Compiling Internal Prop 'Squad/Props/switchGuard/prop/switchGuard'
[LOG 11:47:33.265] PartLoader: Compiling Internal Prop 'Squad/Props/switchWithGuards/prop/switchWithGuards'
[LOG 11:47:33.267] PartLoader: Compiling Internal Prop 'Squad/Props/throttle/prop/throttle'
[LOG 11:47:33.270] PartLoader: Compiling Internal Prop 'Squad/Props/VSI/prop/VSI'
[LOG 11:47:33.274] PartLoader: Compiling Internal Space 'Squad/Spaces/crewCabinInternals/internal/crewCabinInternals'
[LOG 11:47:33.283] PartLoader: Compiling Internal Space 'Squad/Spaces/cupolaInternal/internal/cupolaInternal'
[LOG 11:47:33.294] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace1/internal/GenericSpace1'
[LOG 11:47:33.296] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace3/internal/GenericSpace3'
[LOG 11:47:33.299] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinInternals/internal/landerCabinInternals'
[LOG 11:47:33.303] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal'
[LOG 11:47:33.308] PartLoader: Compiling Internal Space 'Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int'
[LOG 11:47:33.312] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal'
[LOG 11:47:33.319] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal'
[LOG 11:47:33.328] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal'
[LOG 11:47:33.334] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit'
[LOG 11:47:33.338] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals'
[LOG 11:47:33.347] PartLoader: Compiling Internal Space 'Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int'
[LOG 11:47:33.353] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal'
[LOG 11:47:33.364] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int'
[LOG 11:47:33.378] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int'
[LOG 11:47:33.384] InternalSeat: Cannot find portraitCamera of name 'Camera_Left003'
[LOG 11:47:33.392] PartLoader: Compiling Internal Space 'Squad/Spaces/Placeholder/internal/Placeholder'
[LOG 11:47:33.402] PartLoader: Compiling Internal Space 'Squad/Spaces/PodCockpit/internal/PodCockpit'
[LOG 11:47:33.417] Loading Systems: Elapsed time is 18.82s
[WRN 11:47:34.924] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.925] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.925] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.926] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.927] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.927] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.928] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.928] The referenced script on this Behaviour (Game Object '<null>') is missing!
[WRN 11:47:34.929] The referenced script on this Behaviour (Game Object '<null>') is missing!
[LOG 11:47:37.408] [UIMasterController]: HideUI
[LOG 11:47:37.415] [Agent]: Found 19 agent mentality types
[LOG 11:47:37.418] [AgentList]: 27 agents parsed and loaded.
[LOG 11:47:37.814] [CelestialBody]: Kerbin's solar day length is 1d, 0h, 0m long. sidereal day length is 5h, 59m, 9s long
[LOG 11:47:38.005] [UIMasterController]: HideUI
[LOG 11:47:38.008] [HighLogic]: =========================== Scene Change : From LOADING to MAINMENU =====================
[LOG 11:47:38.286] [UIMasterController]: ShowUI
[LOG 11:47:38.632] [GameParameters]: Loaded custom parameter class CommNetParams.
[LOG 11:47:38.633] [GameParameters]: Loaded custom parameter class AdvancedParams.
[LOG 11:47:39.494] [ApplicationLauncher] Awake False
[LOG 11:47:39.496] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 11:47:39.506] [UiApp] Awake: MessageSystem
[LOG 11:47:39.508] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop True
[LOG 11:47:39.553] [UIApp] Adding MessageSystem to Application Launcher
[LOG 11:47:39.557] [ApplicationLauncher] SetHidden: 
[LOG 11:47:39.571] [MessageSystem] OnAppInitialized
[LOG 11:47:39.572] [MessageSystem] Reposition 0.0719887 18380
[LOG 11:47:41.723] KerbalSimPit: SYN received on port COM4. Replying.
[LOG 11:47:41.731] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 11:47:41.732] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:47:49.834] [ExperienceSystem]: Found 0 trait types
[LOG 11:47:49.837] [ExperienceSystem]: Found 16 effect types
[LOG 11:47:49.839] Game State Created.
[LOG 11:47:49.845] [ScenarioTypes]: List Created 17 scenario types loaded from 5 loaded assemblies.
[LOG 11:47:49.853] Game State Saved to saves/default/persistent
[LOG 11:47:49.859] [UIMasterController]: HideUI
[LOG 11:47:49.860] [HighLogic]: =========================== Scene Change : From MAINMENU to SPACECENTER (Async) =====================
[LOG 11:47:49.974] [UIMasterController]: HideUI
[LOG 11:47:50.784] [AddonLoader]: Instantiating addon 'ContractDefs' from assembly 'KSP'
[LOG 11:47:50.804] [UIMasterController]: HideUI
[LOG 11:47:53.025] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 11:47:53.100] [AsteroidSpawner]: New object found near Kerbin: Ast. HSJ-227!
[LOG 11:47:53.460] [UiApp] Awake: KSPedia
[LOG 11:47:53.461] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 11:47:53.462] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 11:47:53.465] [ApplicationLauncher] SetVisible: 
[LOG 11:47:53.515] [UIApp] OnDestroy: ContractsApp
[LOG 11:47:53.591] [MessageSystem] Reposition 0.02 18959
[LOG 11:47:53.824] [UIApp] Adding KSPedia to Application Launcher
[LOG 11:47:53.859] Flight State Captured
[LOG 11:47:53.862] Saving Achievements Tree...
[LOG 11:47:53.865] [MessageSystem] Save Messages
[LOG 11:47:53.871] Game State Saved to saves/default/persistent
[LOG 11:47:53.941] [UIMasterController]: ShowUI
[LOG 11:47:55.306] Flight State Captured
[LOG 11:47:55.307] Saving Achievements Tree...
[LOG 11:47:55.308] [MessageSystem] Save Messages
[LOG 11:47:55.311] Game State Saved to saves/default/persistent
[LOG 11:47:58.278] [ReflectionUtil]: Found 4 types with UpgradeModule attribute in 5 assemblies.
[LOG 11:47:58.294] [KSPUpgradePipeline]: Kerbal 2(Stock) updated from 1.2.0 to 1.2.9.
[LOG 11:47:58.295] [UIMasterController] RemoveCanvas:VesselSpawnDialog
[LOG 11:47:58.304] [Pre-Flight Check]: Checking for CraftWithinPartCountLimit: PASS!
[LOG 11:47:58.305] [Pre-Flight Check]: Checking for CraftWithinSizeLimits: PASS!
[LOG 11:47:58.306] [Pre-Flight Check]: Checking for CraftWithinMassLimits: PASS!
[LOG 11:47:58.308] [Pre-Flight Check]: Checking for ExperimentalPartsAvailable: PASS!
[LOG 11:47:58.309] [Pre-Flight Check]: Checking for CanAffordLaunchTest: PASS!
[LOG 11:47:58.310] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 11:47:58.311] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 11:47:58.312] [Pre-Flight Check]: Checking for NoControlSources: PASS!
[LOG 11:47:58.317] [Pre-Flight Check]: Checking for WrongVesselTypeForLaunchSite: PASS!
[LOG 11:47:58.318] [Pre-Flight Check]: All Checks Complete. Go for Launch!
[LOG 11:47:58.319] Launching vessel from LaunchPad. Craft file: D:\SteamLibrary\KSP\SimPitTest\Ships\VAB\Kerbal 2.craft
[LOG 11:47:58.320] Flight State Captured
[LOG 11:47:58.321] Saving Achievements Tree...
[LOG 11:47:58.322] [MessageSystem] Save Messages
[LOG 11:47:58.325] Game State Saved to saves/default/persistent
[LOG 11:47:58.329] [UIMasterController]: HideUI
[LOG 11:47:58.338] [HighLogic]: =========================== Scene Change : From SPACECENTER to FLIGHT (Async) =====================
[LOG 11:47:58.788] [UIApp] OnDestroy: KSPedia
[LOG 11:47:58.809] [PlanetariumCamera]: Focus: Kerbin
[LOG 11:47:58.811] [UIMasterController]: HideUI
[LOG 11:47:59.607] UICanvasPrefabSpawner FlightUI spawning Flight
[LOG 11:47:59.634] UICanvasPrefabSpawner FlightUI spawning VesselLabels
[LOG 11:47:59.636] [UiApp] Awake: ResourceDisplay
[LOG 11:47:59.644] [AddonLoader]: Instantiating addon 'AeroGUI' from assembly 'KSP'
[LOG 11:47:59.648] [AddonLoader]: Instantiating addon 'KerbalSimPitCAGProvider' from assembly 'KerbalSimPit'
[LOG 11:47:59.649] [AddonLoader]: Instantiating addon 'KerbalSimPitActionProvider' from assembly 'KerbalSimPit'
[LOG 11:47:59.651] [AddonLoader]: Instantiating addon 'KerbalSimPitEchoProvider' from assembly 'KerbalSimPit'
[LOG 11:47:59.652] [AddonLoader]: Instantiating addon 'KerbalSimPitTelemetryProvider' from assembly 'KerbalSimPit'
[LOG 11:47:59.654] [PlanetariumCamera]: Focus: Kerbin
[LOG 11:47:59.654] [UIMasterController]: HideUI
[LOG 11:47:59.751] ------------------- initializing flight mode... ------------------
[LOG 11:47:59.757] [MessageSystem] Save Messages
[LOG 11:47:59.759] Loading Depletion Nodes
[LOG 11:47:59.760] DepNodeCount:  0
[LOG 11:47:59.761] Loading Biome Nodes
[LOG 11:47:59.762] BiomeNodeCount:  0
[LOG 11:47:59.763] Loading Planet Nodes
[LOG 11:47:59.764] PlanetNodeCount:  0
[LOG 11:47:59.767] [ScenarioDestructibles]: Loading... 0 objects registered
[LOG 11:47:59.772] Loading ship from file: D:\SteamLibrary\KSP\SimPitTest\Ships\VAB\Kerbal 2.craft
[LOG 11:47:59.816] Kerbal 2 loaded!
[LOG 11:48:01.826] putting ship to ground: 0
[LOG 11:48:01.831] [Kerbal 2]: Ready to Launch - waiting to start physics...
[LOG 11:48:01.847] Crewmember Jebediah Kerman assigned to Mk1-2 Command Pod, seat # 0 (crew seat index: 0)
[LOG 11:48:01.848] Crewmember Bill Kerman assigned to Mk1-2 Command Pod, seat # 1 (crew seat index: 1)
[LOG 11:48:01.850] Crewmember Bob Kerman assigned to Mk1-2 Command Pod, seat # 2 (crew seat index: 2)
[LOG 11:48:01.852] [FLIGHT GLOBALS]: Switching To Vessel Kerbal 2 ---------------------- 
[LOG 11:48:01.854] setting new dominant body: Kerbin
FlightGlobals.mainBody: Kerbin
[LOG 11:48:01.856] Reference Frame: Rotating
[LOG 11:48:01.873] Vessel assembly complete!
[LOG 11:48:01.874] all systems started
[ERR 11:48:01.892] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[ERR 11:48:01.893] ADDON BINDER: Cannot resolve assembly: AGExt, Culture=neutral, PublicKeyToken=null

[LOG 11:48:01.894] KerbalSimPit: ActionGroupsExtended installed: False
[LOG 11:48:01.965] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.019] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 11:48:02.046] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.128] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.129] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.211] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.212] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.214] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.296] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.298] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.300] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.300] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.301] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.304] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.522] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.524] [UiApp] Awake: CurrencyWidgetsApp
[LOG 11:48:02.525] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.525] [UiApp] Awake: ResourceDisplay
[LOG 11:48:02.527] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.527] [UiApp] Awake: KSPedia
[LOG 11:48:02.529] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.529] [ApplicationLauncher] OnSceneLoadedGUIReady: scene FLIGHT ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 11:48:02.531] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.531] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 11:48:02.533] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.535] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.535] [KnowledgeBase] OnAppLauncherReady 19218
[LOG 11:48:02.558] [UIApp] OnDestroy: ContractsApp
[LOG 11:48:02.571] [MessageSystem] Reposition 0.02 19219
[LOG 11:48:02.591] [FlightIntegrator]: Reloaded drag cube for zeroed cube root part Mark1-2Pod on vessel Kerbal 2
[LOG 11:48:02.602] [FlightIntegrator]: Vessel Kerbal 2 has been unloaded 1.79769313486232E+308, applying analytic temperature 309.298054909703
[LOG 11:48:02.616] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.618] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.620] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.681] [PlanetariumCamera]: Focus: Kerbal 2
[LOG 11:48:02.704] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 11:48:02.706] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 11:48:02.716] [ResourceDisplay] OnAppStarted(): id: -183402
[LOG 11:48:02.719] [GenericAppFrame] Reposition 0.1364396 19223
[LOG 11:48:02.721] [ResourceDisplay] OnAppStarted(): id: 103994
[LOG 11:48:02.722] ResourceDisplay already exist, destroying this instance
[LOG 11:48:02.723] [UIApp] OnDestroy: ResourceDisplay
[LOG 11:48:02.738] CURRENCY WIDGET False False False
[LOG 11:48:02.741] [UIApp] OnDestroy: CurrencyWidgetsApp
[LOG 11:48:02.747] [UIApp] Adding KSPedia to Application Launcher
[WRN 11:48:02.789] HighlightingSystem : Framebuffer depth data is not available and can't be used to occlude highlighting. Highlighting occluders enabled.
[LOG 11:48:02.875] [UIMasterController]: ShowUI
[LOG 11:48:02.879] Flight State Captured
[LOG 11:48:02.880] Saving Achievements Tree...
[LOG 11:48:02.881] [MessageSystem] Save Messages
[LOG 11:48:02.889] Game State Saved as persistent
[LOG 11:48:03.910] Unpacking Kerbal 2
[LOG 11:48:04.523] RCS lock/unlock
[LOG 11:48:06.441] [Progress Node Reached]: RecordsAltitude
[LOG 11:48:06.443] [Progress Node Reached]: RecordsSpeed
[LOG 11:48:06.444] [Progress Node Reached]: RecordsDistance
[LOG 11:48:07.410] [Progress Node Reached]: FirstLaunch
[LOG 11:48:07.411] [Progress Node Complete]: FirstLaunch
[LOG 11:48:09.694] Packing Kerbal 2 Debris for orbit
[LOG 11:48:09.696] Packing Kerbal 2 Debris for orbit
[LOG 11:48:09.697] Packing Kerbal 2 Debris for orbit
[LOG 11:48:15.177] Kerbal 2 Debris Unloaded
[LOG 11:48:15.178] Kerbal 2 Debris Unloaded
[LOG 11:48:15.179] Kerbal 2 Debris Unloaded
[LOG 11:48:17.612] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 11:48:20.354] [PlanetariumCamera]: Focus: Kerbin
[LOG 11:48:20.382] KbApp.OnDestroy Planet Resources
[LOG 11:48:20.384] KerbalSimPit: Succesfully removed AltitudeProvider

 

 

The staging demo works just fine.

Link to comment
Share on other sites

20 minutes ago, Benji said:

[LOG 11:47:41.723] KerbalSimPit: SYN received on port COM4. Replying.
[LOG 11:47:41.731] KerbalSimPit: ACK received on port COM4. Handshake complete.
[LOG 11:47:41.732] KerbalSimPit: Serial port 0 subscribing to channel 4
...
[LOG 11:48:01.894] KerbalSimPit: ActionGroupsExtended installed: False
[LOG 11:48:01.965] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.046] KerbalSimPit: Serial port 0 subscribing to channel 4
[LOG 11:48:02.128] KerbalSimPit: Serial port 0 subscribing to channel 4

 

Ugh. This is really odd.

But it's also not just you. I booted up my Windows machine for the first time in a while, tried the altitude demo on a Pro Mini, and I'm getting the same thing. Sorry. :( Looks like there might be a regression in how the plugin receives data on Windows. I'll keep working on it.

Link to comment
Share on other sites

Just now, Benji said:

Serial Port 0 is "my" first serial device and channel 4 is the altitudemessage?

Correct. Port 0 is just the first port you've listed in your config file, and channel 4 is the altitude handler. I got a little bit lazy with my debug logging and didn't bother trying to resolve those to more sensible names.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...