Jump to content

[1.8.x] ION RCS (V0.1.10.0) ION RCS & Pulsed Plasma Thrusters (20th Oct 2019)


JPLRepo

Recommended Posts

Parts Pack that includes ION RCS thrusters and Pulsed Plasma Thrusters.
These parts used to be included in my AmpYear mod, but moving forward they will now be available as a separate parts pack via this thread and no longer available in future versions of AmpYear. But will be completely supported by AmpYear.

ION RCS

 

Ion RCS
Thrusters that use Xenon-gas and electricity for incredibly efficient RCS. Some limitations:   

  • Has half the Isp of normal Ion engines.   
  • One quarter of the thrust of normal monopropellant RCS thrusters.   
  • Available in one-way linear thruster, 4-way ION RCS block and 4-way 45degrees ION RCS block.   
  • Integrated to TechTree at ionPropulsion.  

Pulsed Plasma Thrusters RCS   
Each thruster contains a fixed amount of Teflon and uses this along with Electric Charge for incredibly efficient propulsion for small craft or maneuvering.   
Some limitations:   

  • Has roughly quarter the ISP of normal RCS thrusters.   
  • One eighth of the thrust of normal monopropellant RCS thrusters.   
  • Only linear thrusters are available.   
  • Integrated to TechTree at advFlightControl.   

* See (http://en.wikipedia.org/wiki/Pulsed_plasma_thruster).   

Planned Changes:

  • Re-texture the parts.
  • Fix AVC files in distribution (I left them out of the initial release).
  • Add better emissives and blue thruster effects.

Changelog:

Spoiler

V0.1.10.0 (skipped a version sorry)
Re-compile for KSP 1.8.x

V01.8.0
Re-compile for KSP 1.3.1
V0.1.7.0
Changes for KSP 1.3.0
Localization/Language ready. Looking for translation volunteers. :wink:

V0.1.6.0
Re-compile and bump version for KSP 1.2.2.

V0.1.5.0
Re-Compile for KSP 1.2.1

V0.1.4.0
Re-compile for KSP 1.2
Converted to use new MODULERCSFX

V0.1.3.0
Re-compile for KSP 1.1.3

V0.1.2.0
Fixed 4 way RCS block. (not the 45 degree one) as one side was not working.

V0.1.1.0
Added AVC version checking to distribution (left it out of the initial release).
Fixed Textures on the 4 way ION RCS and 4 way 45 degrees ION RCS parts.
Modified the 4 way 45 degrees ION RCS part thrusters to point more or less 45 degrees.
Fixed Resource definition for Teflon to include correct directory for the Teflon Alternate Resource Panel Icon. (Thanks Gordon Dry)

V0.1.0.0
Split the ION RCS and Pulsed Plasma Thruster RCS parts from AmpYear mod into this separate mod.

License: GPL
This mod includes version checking using MiniAVC.
If you opt-in, it will use the internet to check whether there is a new version available.
Data is only read from the internet and no personal information is sent.
For a more comprehensive version checking experience, please download the KSP-AVC Plugin

Source Code available on GitHub.

If you like my mods and you want to show your support, then you can support me on Patreon:
ZnlLmEw.png
Download

from SpaceDock, CurseForge or GitHub
SpaceDock runs and makes mods available to you based purely on donation. If you don't want to pledge to me at least
Consider pledging to keep SpaceDock going if you use it.  8VWCQzN.png

Support:

Be a :cool:COOL :cool:PERSON and help me by raising bugs and feature requests on GitHub here.

For support please ensure you are following these instructions.
From now on I will NOT respond to requests for support if you have not at least attempted to follow these simple steps.

NO LOG = NO SUPPORT.


Whilst I agree CKAN is a great mod for those that can't use Zip tools. I take no part, nor am I interested in maintaining the CKAN mod metadata for my mods.
Please don't ask me about it but refer to the CKAN mod thread if you are having issues with CKAN or the metadata it maintains.

Author:

JPLRepo : Plugin design and development, C# coding, Graphic design, 3D Models, textures, Implementation and releases.

 

Link to comment
Share on other sites

Works fine in KSP 1.1.0, 1.1.1, 1.1.2.
I neglected to include the AVC checker in the initial distribution zip.
I will put out a new version in the coming week once I re-texture the parts.

Link to comment
Share on other sites

  • 3 weeks later...

Thanks for great mods, @JPLRepo !

Although migration of existing saves is quite complicated (bunch of grep/sed scripts). 

Is that correct that during extraction into separate mod:

  1. "ampYear" prefix was removed from part names;
  2. "ModuleAmpYearPPTRCS" module was renamed to "ModulePPTPoweredRCS".

So if I do the same refactoring in "persistent.sfs" parts would still work?

Edited by VladP53
Seems forum markup does not support backticks, replaced with quotes
Link to comment
Share on other sites

Yeah sorry.... If I had the time to figure out the new KSP 1.1+ upgrade API I could have written one to upgrade your saves for you... But time is my enemy.
If you want to upgrade craft or save files that had the parts when they were part of AmpYear you have to go manually edit the .craft and persistent.sfs files manually:-

Change ModuleAmpYearPPTRCS to ModulePPTPoweredRCS
Change ModuleAmpYearPoweredRCS to ModuleIONPoweredRCS

Capatilisation is critical. but if you just do a change all the vessle/craft / parts will function as before.

Link to comment
Share on other sites

8 minutes ago, JPLRepo said:

Yeah sorry.... If I had the time to figure out the new KSP 1.1+ upgrade API I could have written one to upgrade your saves for you... But time is my enemy.
If you want to upgrade craft or save files that had the parts when they were part of AmpYear you have to go manually edit the .craft and persistent.sfs files manually:-

Change ModuleAmpYearPPTRCS to ModulePPTPoweredRCS
Change ModuleAmpYearPoweredRCS to ModuleIONPoweredRCS

Capatilisation is critical. but if you just do a change all the vessle/craft / parts will function as before.

Thanks for clarification, so next script saved space station with kerbals onboard :wink:

#!/bin/bash

# Quite many lines, could be combined into one sed invocation, but self explaining
sed -i 's/ModuleAmpYearPPTRCS/ModulePPTPoweredRCS/' persistent.sfs
sed -i 's/ModuleAmpYearPoweredRCS/ModuleIONPoweredRCS/' persistent.sfs
sed -i 's/AmpYearIONRCSBlock45/IONRCSBlock45/' persistent.sfs
sed -i 's/AmpYearIONRCSBlock/IONRCSBlock/' persistent.sfs
sed -i 's/ampYearLinearIonRCS/LinearIonRCS/' persistent.sfs
sed -i 's/ampYearLinearPPTRCS/LinearPPTRCS/' persistent.sfs

Maybe it would help someone else.

Edited by VladP53
spelling
Link to comment
Share on other sites

16 minutes ago, VladP53 said:

Thanks for clarification, so next script saved space station with kerbals onboard :wink:


#!/bin/bash

# Quite many lines, could be combined into one sed invocation, but self explaining
sed -i 's/ModuleAmpYearPPTRCS/ModulePPTPoweredRCS/' persistent.sfs
sed -i 's/ModuleAmpYearPoweredRCS/ModuleIONPoweredRCS/' persistent.sfs
sed -i 's/AmpYearIONRCSBlock45/IONRCSBlock45/' persistent.sfs
sed -i 's/AmpYearIONRCSBlock/IONRCSBlock/' persistent.sfs
sed -i 's/ampYearLinearIonRCS/LinearIonRCS/' persistent.sfs
sed -i 's/ampYearLinearPPTRCS/LinearPPTRCS/' persistent.sfs

Maybe it would help someone else.

Yeah sorry... you have to change the part names as well. as per above.

Link to comment
Share on other sites

When this should be independent from AmpYear then this should be fixed:
 

GameData\REPOSoftTech\IONRCS\Resources\IONRCSResources.cfg:

RESOURCE_DEFINITION
{
  name = Teflon
  density = 0.004
  unitCost = 0.4
  hsp = 3000
  flowMode = STAGE_PRIORITY_FLOW
  transfer = PUMP
  isTweakable = true
  ksparpicon = REPOSoftTech/AmpYear/Icons/Teflon   < ---
  ksparpdisplayvalueas = Units
}

The file is already existing as
REPOSoftTech/IONRCS/Icons/Teflon
so this line could be changed (I already did).

Link to comment
Share on other sites

3 hours ago, Gordon Dry said:

When this should be independent from AmpYear then this should be fixed:
 


GameData\REPOSoftTech\IONRCS\Resources\IONRCSResources.cfg:

RESOURCE_DEFINITION
{
  name = Teflon
  density = 0.004
  unitCost = 0.4
  hsp = 3000
  flowMode = STAGE_PRIORITY_FLOW
  transfer = PUMP
  isTweakable = true
  ksparpicon = REPOSoftTech/AmpYear/Icons/Teflon   < ---
  ksparpdisplayvalueas = Units
}

The file is already existing as
REPOSoftTech/IONRCS/Icons/Teflon
so this line could be changed (I already did).

Thanks... I will fix in next version. I missed this as ARP is still not available in KSP 1.1+ so actually missing this means nothing without that mod.

Link to comment
Share on other sites

  • 2 weeks later...

Hi, @JPLRepo!

In 0.1.1.0, 4-way ION RCS block does not allow to roll left for some reason. Pitch, yaw, roll right, and translation are OK. 45° block and linear ports are OK too.

Here’s my log:

Spoiler

Kerbal Space Program - 1.1.2.1260 (WindowsPlayer)


OS: Windows 7 Service Pack 1 (6.1.7601) 64bit
CPU: Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz (4)
RAM: 8068
GPU: Intel(R) HD Graphics (880MB)
SM: 30 (Direct3D 9.0c [igdumd64.dll 9.17.10.2884])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf


Log started: Thu, Jun 09, 2016 09:47:43


[LOG 09:47:43.476] ******* Log Initiated for Kerbal Space Program - 1.1.2.1260 (WindowsPlayer) *******
[WRN 09:47:45.406] [SpaceNavigatorWindows]: Could not initialize device.

[LOG 09:47:45.417] ActionCanvas MASK: 3458764513820540928
[LOG 09:47:45.418] MainCanvas MASK: 3458764513820540928
[LOG 09:47:45.419] AppCanvas MASK: 3458764513820540928
[LOG 09:47:45.436] PhysicsGlobals: Loading database
[LOG 09:47:46.685] Load(Assembly): Kerbaltek/HyperEdit-1.5.2_for-KSP-1.1.2
[LOG 09:47:46.686] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Kerbaltek\HyperEdit-1.5.2_for-KSP-1.1.2.dll
[LOG 09:47:46.725] Load(Assembly): REPOSoftTech/IONRCS/MiniAVC
[LOG 09:47:46.725] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\MiniAVC.dll
[LOG 09:47:46.740] Load(Assembly): REPOSoftTech/IONRCS/Plugins/IONRCS
[LOG 09:47:46.740] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\Plugins\IONRCS.dll
[LOG 09:47:46.754] AssemblyLoader: KSPAssembly 'IONRCS' V0.1
[LOG 09:47:46.755] Load(Assembly): Squad/Plugins/SaveUpgradePipeline.Scripts
[LOG 09:47:46.755] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\Plugins\SaveUpgradePipeline.Scripts.dll
[LOG 09:47:46.790] AssemblyLoader: Loading assemblies
[LOG 09:47:46.814] VesselModules: Found VesselModule of type FlightIntegrator with order 0
[LOG 09:47:46.816] VesselModules: Found 1 VesselModule types
[LOG 09:47:46.821]
************************************************************************

Environment Info
Win32NT 7FFFFFFFFFFFFFFF  Args: KSP_x64.exe

Mod DLLs found:
Stock assembly: Assembly-CSharp v0.0.0.0
HyperEdit v1.5.0.0
MiniAVC v1.0.3.0
IONRCS v0.1.1.0
Stock assembly: SaveUpgradePipeline.Scripts v1.0.0.2 / v1.0.0.21

Folders and files in GameData:
Kerbaltek
REPOSoftTech
Stock folder: Squad


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

[LOG 09:47:46.829] AddonLoader: Instantiating addon 'Logger' from assembly 'MiniAVC'
[LOG 09:47:46.831] AddonLoader: Instantiating addon 'Starter' from assembly 'MiniAVC'
[LOG 09:47:47.584] Load(Audio): Squad/Parts/Utility/landingLegLT-1/sounds/sound_servomotor
[LOG 09:47:47.598] MiniAVC -> Executing: MiniAVC - 1.0.3.0
[LOG 09:47:47.599] MiniAVC -> Assembly: R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\MiniAVC.dll
[LOG 09:47:47.599] MiniAVC -> Starter was created.
[LOG 09:47:47.832] MiniAVC -> FirstRunGui was created.
[LOG 09:47:56.993] Load(Audio): Squad/Sounds/editorLoop01
[LOG 09:47:57.192] Load(Audio): Squad/Sounds/sound_ambience_nature
[LOG 09:47:57.308] Load(Audio): Squad/Sounds/sound_click_flick
[LOG 09:47:57.352] Load(Audio): Squad/Sounds/sound_click_latch
[LOG 09:47:57.363] Load(Audio): Squad/Sounds/sound_click_sharp
[LOG 09:47:57.377] Load(Audio): Squad/Sounds/sound_click_tick
[LOG 09:47:57.387] Load(Audio): Squad/Sounds/sound_click_tock
[LOG 09:47:57.401] Load(Audio): Squad/Sounds/sound_decoupler_fire
[LOG 09:47:57.416] Load(Audio): Squad/Sounds/sound_delete_bin
[LOG 09:47:57.430] Load(Audio): Squad/Sounds/sound_explosion_debris1
[LOG 09:47:57.451] Load(Audio): Squad/Sounds/sound_explosion_debris2
[LOG 09:47:57.469] Load(Audio): Squad/Sounds/sound_explosion_large
[LOG 09:47:57.487] Load(Audio): Squad/Sounds/sound_rocket_mini
[LOG 09:47:57.505] Load(Audio): Squad/Sounds/sound_rocket_spurts
[LOG 09:47:57.529] Load(Audio): Squad/Sounds/sound_tab_extend
[LOG 09:47:57.538] Load(Audio): Squad/Sounds/sound_tab_retreat
[LOG 09:47:57.548] Load(Texture): Kerbaltek/Flags/Kerbaltek-Aerospace
[LOG 09:47:57.565] Load(Texture): Kerbaltek/Flags/Kerbaltek-Rocket
[LOG 09:47:57.581] Load(Texture): Kerbaltek/Flags/Kerbaltek-Satellite
[LOG 09:47:57.597] Load(Texture): Kerbaltek/Flags/Kerbaltek-Spaceplane
[LOG 09:47:57.614] Load(Texture): Kerbaltek/Flags/Kerbaltek-Station
[LOG 09:47:57.629] Load(Texture): REPOSoftTech/Agencies/REPOSoftTech
[LOG 09:47:57.642] Load(Texture): REPOSoftTech/Agencies/REPOSoftTech_scaled
[LOG 09:47:57.646] Load(Texture): REPOSoftTech/IONRCS/Icons/Teflon
[LOG 09:47:57.662] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONRCSBlock45
[LOG 09:47:57.668] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONRCSBlock
[LOG 09:47:57.672] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/model000
[LOG 09:47:57.677] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/model001
[LOG 09:47:57.681] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/model000
[LOG 09:47:57.688] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/model001
[LOG 09:47:57.697] Load(Texture): Squad/Agencies/C7AerospaceDivision
[LOG 09:47:57.719] Load(Texture): Squad/Agencies/C7AerospaceDivision_scaled
[LOG 09:47:57.730] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium
[LOG 09:47:57.751] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium_scaled
[LOG 09:47:57.773] Load(Texture): Squad/Agencies/ExperimentalEngineering
[LOG 09:47:57.793] Load(Texture): Squad/Agencies/ExperimentalEngineering_scaled
[LOG 09:47:57.816] Load(Texture): Squad/Agencies/FlooydResearchLab
[LOG 09:47:57.837] Load(Texture): Squad/Agencies/FlooydResearchLab_scaled
[LOG 09:47:57.855] Load(Texture): Squad/Agencies/GoliathNationalProducts
[LOG 09:47:57.876] Load(Texture): Squad/Agencies/GoliathNationalProducts_scaled
[LOG 09:47:57.892] Load(Texture): Squad/Agencies/IntegratedIntegrals
[LOG 09:47:57.907] Load(Texture): Squad/Agencies/IntegratedIntegrals_scaled
[LOG 09:47:57.916] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics
[LOG 09:47:57.927] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics_scaled
[LOG 09:47:57.966] Load(Texture): Squad/Agencies/JebsJunkyard
[LOG 09:47:57.996] Load(Texture): Squad/Agencies/JebsJunkyard_scaled
[LOG 09:47:58.014] Load(Texture): Squad/Agencies/KerbalMotion
[LOG 09:47:58.032] Load(Texture): Squad/Agencies/KerbalMotion_scaled
[LOG 09:47:58.038] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety
[LOG 09:47:58.049] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety_scaled
[LOG 09:47:58.070] Load(Texture): Squad/Agencies/Kerbodyne
[LOG 09:47:58.073] Load(Texture): Squad/Agencies/Kerbodyne_scaled
[LOG 09:47:58.102] Load(Texture): Squad/Agencies/Kerlington
[LOG 09:47:58.124] Load(Texture): Squad/Agencies/Kerlington_scaled
[LOG 09:47:58.149] Load(Texture): Squad/Agencies/MaxoConstructionToys
[LOG 09:47:58.152] Load(Texture): Squad/Agencies/MaxoConstructionToys_scaled
[LOG 09:47:58.176] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup
[LOG 09:47:58.180] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup_scaled
[LOG 09:47:58.201] Load(Texture): Squad/Agencies/OMBDemolition
[LOG 09:47:58.212] Load(Texture): Squad/Agencies/OMBDemolition_scaled
[LOG 09:47:58.247] Load(Texture): Squad/Agencies/PeriapsisCo
[LOG 09:47:58.280] Load(Texture): Squad/Agencies/PeriapsisCo_scaled
[LOG 09:47:58.284] Load(Texture): Squad/Agencies/Probodobodyne
[LOG 09:47:58.291] Load(Texture): Squad/Agencies/Probodobodyne_scaled
[LOG 09:47:58.310] Load(Texture): Squad/Agencies/R&D
[LOG 09:47:58.332] Load(Texture): Squad/Agencies/R&D_scaled
[LOG 09:47:58.335] Load(Texture): Squad/Agencies/ReactionSystemsLtd
[LOG 09:47:58.340] Load(Texture): Squad/Agencies/ReactionSystemsLtd_scaled
[LOG 09:47:58.345] Load(Texture): Squad/Agencies/Rockomax
[LOG 09:47:58.352] Load(Texture): Squad/Agencies/Rockomax_scaled
[LOG 09:47:58.357] Load(Texture): Squad/Agencies/Rokea
[LOG 09:47:58.362] Load(Texture): Squad/Agencies/Rokea_scaled
[LOG 09:47:58.369] Load(Texture): Squad/Agencies/SeansCannery
[LOG 09:47:58.373] Load(Texture): Squad/Agencies/SeansCannery_scaled
[LOG 09:47:58.377] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps
[LOG 09:47:58.382] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps_scaled
[LOG 09:47:58.409] Load(Texture): Squad/Agencies/StrutCo
[LOG 09:47:58.429] Load(Texture): Squad/Agencies/StrutCo_scaled
[LOG 09:47:58.433] Load(Texture): Squad/Agencies/Vac-Co
[LOG 09:47:58.453] Load(Texture): Squad/Agencies/Vac-Co_scaled
[LOG 09:47:58.456] Load(Texture): Squad/Agencies/WinterOwl
[LOG 09:47:58.467] Load(Texture): Squad/Agencies/WinterOwl_scaled
[LOG 09:47:58.470] Load(Texture): Squad/Agencies/ZaltonicElectronics
[LOG 09:47:58.493] Load(Texture): Squad/Agencies/ZaltonicElectronics_scaled
[LOG 09:47:58.496] Load(Texture): Squad/Contracts/Icons/balloon
[LOG 09:47:58.508] Load(Texture): Squad/Contracts/Icons/default
[LOG 09:47:58.511] Load(Texture): Squad/Contracts/Icons/dish
[LOG 09:47:58.515] Load(Texture): Squad/Contracts/Icons/eva
[LOG 09:47:58.537] Load(Texture): Squad/Contracts/Icons/gravity
[LOG 09:47:58.539] Load(Texture): Squad/Contracts/Icons/marker
[LOG 09:47:58.563] Load(Texture): Squad/Contracts/Icons/pressure
[LOG 09:47:58.595] Load(Texture): Squad/Contracts/Icons/report
[LOG 09:47:58.634] Load(Texture): Squad/Contracts/Icons/sample
[LOG 09:47:58.644] Load(Texture): Squad/Contracts/Icons/seismic
[LOG 09:47:58.647] Load(Texture): Squad/Contracts/Icons/thermometer
[LOG 09:47:58.658] Load(Texture): Squad/Contracts/Icons/vessel
[LOG 09:47:58.667] Load(Texture): Squad/Flags/09
[LOG 09:47:58.703] Load(Texture): Squad/Flags/blorbs
[LOG 09:47:58.735] Load(Texture): Squad/Flags/bullseye
[LOG 09:47:58.763] Load(Texture): Squad/Flags/capsule
[LOG 09:47:58.797] Load(Texture): Squad/Flags/circles
[LOG 09:47:58.829] Load(Texture): Squad/Flags/default
[LOG 09:47:58.847] Load(Texture): Squad/Flags/esa_dark_blue
[LOG 09:47:58.880] Load(Texture): Squad/Flags/hexagon
[LOG 09:47:58.909] Load(Texture): Squad/Flags/hexagonCircles
[LOG 09:47:58.936] Load(Texture): Squad/Flags/kerbal1
[LOG 09:47:58.962] Load(Texture): Squad/Flags/kerbal2
[LOG 09:47:58.994] Load(Texture): Squad/Flags/kerbin
[LOG 09:47:59.014] Load(Texture): Squad/Flags/kerbinmunflag
[LOG 09:47:59.030] Load(Texture): Squad/Flags/line
[LOG 09:47:59.061] Load(Texture): Squad/Flags/minimalistic
[LOG 09:47:59.099] Load(Texture): Squad/Flags/NASA
[LOG 09:47:59.132] Load(Texture): Squad/Flags/orbit
[LOG 09:47:59.151] Load(Texture): Squad/Flags/orbs
[LOG 09:47:59.182] Load(Texture): Squad/Flags/retro
[LOG 09:47:59.224] Load(Texture): Squad/Flags/rings
[LOG 09:47:59.245] Load(Texture): Squad/Flags/rocketScience
[LOG 09:47:59.263] Load(Texture): Squad/Flags/satellite
[LOG 09:47:59.280] Load(Texture): Squad/Flags/spheres
[LOG 09:47:59.299] Load(Texture): Squad/Flags/squadLogo
[LOG 09:47:59.315] Load(Texture): Squad/Flags/squadLogo2
[LOG 09:47:59.347] Load(Texture): Squad/Flags/stripes
[LOG 09:47:59.366] Load(Texture): Squad/Flags/trees
[LOG 09:47:59.401] Load(Texture): Squad/Flags/trippy
[LOG 09:47:59.441] Load(Texture): Squad/Flags/uk_space_agency
[LOG 09:47:59.484] Load(Texture): Squad/FX/DiamondBlue
[LOG 09:47:59.504] Load(Texture): Squad/FX/FlameBlueOrange
[LOG 09:47:59.522] Load(Texture): Squad/FX/FlamePurple
[LOG 09:47:59.529] Load(Texture): Squad/FX/FlameRed
[LOG 09:47:59.541] Load(Texture): Squad/FX/FlameRedOrange
[LOG 09:47:59.554] Load(Texture): Squad/FX/plasma2
[LOG 09:47:59.578] Load(Texture): Squad/FX/rocketplume2
[LOG 09:47:59.600] Load(Texture): Squad/FX/shockDiamond2
[LOG 09:47:59.621] Load(Texture): Squad/FX/smokepuff1
[LOG 09:47:59.644] Load(Texture): Squad/PartList/SimpleIcons/cs_main
[LOG 09:47:59.677] Load(Texture): Squad/PartList/SimpleIcons/cs_mk2
[LOG 09:47:59.705] Load(Texture): Squad/PartList/SimpleIcons/cs_mk3
[LOG 09:47:59.731] Load(Texture): Squad/PartList/SimpleIcons/cs_size0
[LOG 09:47:59.759] Load(Texture): Squad/PartList/SimpleIcons/cs_size1
[LOG 09:47:59.790] Load(Texture): Squad/PartList/SimpleIcons/cs_size2
[LOG 09:47:59.817] Load(Texture): Squad/PartList/SimpleIcons/cs_size3
[LOG 09:47:59.839] Load(Texture): Squad/PartList/SimpleIcons/cs_surface
[LOG 09:47:59.853] Load(Texture): Squad/PartList/SimpleIcons/fuels_monopropellant
[LOG 09:47:59.873] Load(Texture): Squad/PartList/SimpleIcons/fuels_ore
[LOG 09:47:59.889] Load(Texture): Squad/PartList/SimpleIcons/fuels_oxidizer
[LOG 09:47:59.908] Load(Texture): Squad/PartList/SimpleIcons/fuels_solidfuel
[LOG 09:47:59.922] Load(Texture): Squad/PartList/SimpleIcons/fuels_xenongas
[LOG 09:47:59.937] Load(Texture): Squad/PartList/SimpleIcons/number1
[LOG 09:47:59.952] Load(Texture): Squad/PartList/SimpleIcons/number2
[LOG 09:47:59.974] Load(Texture): Squad/PartList/SimpleIcons/number3
[LOG 09:47:59.984] Load(Texture): Squad/PartList/SimpleIcons/number4
[LOG 09:48:00.003] Load(Texture): Squad/PartList/SimpleIcons/number5
[LOG 09:48:00.016] Load(Texture): Squad/PartList/SimpleIcons/number6
[LOG 09:48:00.039] Load(Texture): Squad/PartList/SimpleIcons/number7
[LOG 09:48:00.053] Load(Texture): Squad/PartList/SimpleIcons/number8
[LOG 09:48:00.081] Load(Texture): Squad/PartList/SimpleIcons/number9
[LOG 09:48:00.096] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advaerodynamics
[LOG 09:48:00.113] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advancedmotors
[LOG 09:48:00.128] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advconstruction
[LOG 09:48:00.146] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advelectrics
[LOG 09:48:00.165] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advexploration
[LOG 09:48:00.178] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advflightcontrol
[LOG 09:48:00.193] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advlanding
[LOG 09:48:00.206] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advmetalworks
[LOG 09:48:00.220] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advrocketry
[LOG 09:48:00.242] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advsciencetech
[LOG 09:48:00.258] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advunmanned
[LOG 09:48:00.276] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerodynamicsystems
[LOG 09:48:00.285] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerospacetech
[LOG 09:48:00.301] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_automation
[LOG 09:48:00.315] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicprobes
[LOG 09:48:00.325] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicrocketry
[LOG 09:48:00.336] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_composites
[LOG 09:48:00.360] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electrics
[LOG 09:48:00.370] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electronics
[LOG 09:48:00.391] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_evatech
[LOG 09:48:00.405] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalaerodynamics
[LOG 09:48:00.420] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalelectrics
[LOG 09:48:00.431] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalmotors
[LOG 09:48:00.445] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalrocketry
[LOG 09:48:00.464] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalscience
[LOG 09:48:00.476] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fieldscience
[LOG 09:48:00.490] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_flightcontrol
[LOG 09:48:00.513] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fuelsystems
[LOG 09:48:00.527] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalconstruction
[LOG 09:48:00.551] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalrocketry
[LOG 09:48:00.562] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generic
[LOG 09:48:00.582] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavierrocketry
[LOG 09:48:00.592] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyaerodynamics
[LOG 09:48:00.612] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyrocketry
[LOG 09:48:00.639] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudeflight
[LOG 09:48:00.653] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudepropulsion
[LOG 09:48:00.667] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_hypersonicflight
[LOG 09:48:00.699] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_ionpropulsion
[LOG 09:48:00.713] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_landing
[LOG 09:48:00.730] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largecontrol
[LOG 09:48:00.748] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeelectrics
[LOG 09:48:00.762] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeprobes
[LOG 09:48:00.790] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_metamaterials
[LOG 09:48:00.804] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nanolathing
[LOG 09:48:00.817] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nuclearpropulsion
[LOG 09:48:00.872] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_precisionengineering
[LOG 09:48:00.885] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_robotics
[LOG 09:48:00.899] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_sciencetech
[LOG 09:48:00.922] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedconstruction
[LOG 09:48:00.972] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedcontrol
[LOG 09:48:00.990] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedelectrics
[LOG 09:48:01.008] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_stability
[LOG 09:48:01.053] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_start
[LOG 09:48:01.067] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_supersonicflight
[LOG 09:48:01.085] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_survivability
[LOG 09:48:01.102] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_unmannedtech
[LOG 09:48:01.120] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_veryheavyrocketry
[LOG 09:48:01.178] Load(Texture): Squad/PartList/SimpleIcons/RDicon_aerospaceTech2
[LOG 09:48:01.215] Load(Texture): Squad/PartList/SimpleIcons/RDicon_commandmodules
[LOG 09:48:01.295] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-advanced
[LOG 09:48:01.398] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-highPerformance
[LOG 09:48:01.554] Load(Texture): Squad/PartList/SimpleIcons/RDicon_largeVolumeContainment
[LOG 09:48:01.638] Load(Texture): Squad/PartList/SimpleIcons/RDicon_miniaturization
[LOG 09:48:01.683] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsion-precision
[LOG 09:48:01.723] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsionSystems
[LOG 09:48:01.763] Load(Texture): Squad/PartList/SimpleIcons/RDicon_telescope
[LOG 09:48:01.803] Load(Texture): Squad/Parts/Aero/aerodynamicNoseCone/Nosecone
[LOG 09:48:01.852] Load(Texture): Squad/Parts/Aero/airbrake/Airbrake
[LOG 09:48:01.895] Load(Texture): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 09:48:01.956] Load(Texture): Squad/Parts/Aero/airlinerWings/AirlinerWings
[LOG 09:48:02.137] Load(Texture): Squad/Parts/Aero/airplaneFins/AirplaneFins
[LOG 09:48:02.226] Load(Texture): Squad/Parts/Aero/basicFin/BasicFin
[LOG 09:48:02.267] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes
[LOG 09:48:02.327] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes_Heat
[LOG 09:48:02.361] Load(Texture): Squad/Parts/Aero/cones/Cones
[LOG 09:48:02.432] Load(Texture): Squad/Parts/Aero/cones/Cones_Heat
[LOG 09:48:02.494] Load(Texture): Squad/Parts/Aero/fairings/FairingBase
[LOG 09:48:02.531] Load(Texture): Squad/Parts/Aero/fairings/fairings_diff
[LOG 09:48:02.588] Load(Texture): Squad/Parts/Aero/HeatShield/Fairing
[LOG 09:48:02.648] Load(Texture): Squad/Parts/Aero/HeatShield/heatshield
[LOG 09:48:02.705] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 09:48:02.882] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShieldFairing
[LOG 09:48:02.941] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield_NRM
[LOG 09:48:03.106] Load(Texture): Squad/Parts/Aero/intakeRadialLong/Radial_long
[LOG 09:48:03.329] Load(Texture): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 09:48:03.385] Load(Texture): Squad/Parts/Aero/protectiveRocketNoseMk7/model000
[LOG 09:48:03.404] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 09:48:03.426] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake_Heat
[LOG 09:48:03.442] Load(Texture): Squad/Parts/Aero/shuttleWings/ShuttleWings
[LOG 09:48:03.529] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model000
[LOG 09:48:03.565] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model001
[LOG 09:48:03.587] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model000
[LOG 09:48:03.614] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model001
[LOG 09:48:03.660] Load(Texture): Squad/Parts/Aero/wingletDeltaDeluxe/model000
[LOG 09:48:03.678] Load(Texture): Squad/Parts/Aero/wings/Wings
[LOG 09:48:03.711] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model000
[LOG 09:48:03.740] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model001
[LOG 09:48:03.760] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_diff
[LOG 09:48:03.835] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_normal
[LOG 09:48:03.841] Load(Texture): Squad/Parts/Command/cupola/window
[LOG 09:48:03.844] Load(Texture): Squad/Parts/Command/externalCommandSeat/model000
[LOG 09:48:03.931] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin
[LOG 09:48:03.943] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_n
[LOG 09:48:03.980] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/window
[LOG 09:48:03.982] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model000
[LOG 09:48:04.008] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model001
[LOG 09:48:04.053] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model000
[LOG 09:48:04.085] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model001
[LOG 09:48:04.174] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model002
[LOG 09:48:04.183] Load(Texture): Squad/Parts/Command/Mk1-2Pod/ladder
[LOG 09:48:04.194] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch NRM
[LOG 09:48:04.220] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch
[LOG 09:48:04.233] Load(Texture): Squad/Parts/Command/Mk1-2Pod/walls
[LOG 09:48:04.287] Load(Texture): Squad/Parts/Command/Mk1-2Pod/window
[LOG 09:48:04.290] Load(Texture): Squad/Parts/Command/mk1Cockpits/GLOW
[LOG 09:48:04.319] Load(Texture): Squad/Parts/Command/mk1Cockpits/Mk1Cockpit
[LOG 09:48:04.332] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_diff
[LOG 09:48:04.427] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_normal
[LOG 09:48:04.466] Load(Texture): Squad/Parts/Command/mk1pod/hatch
[LOG 09:48:04.486] Load(Texture): Squad/Parts/Command/mk1pod/ladderrung
[LOG 09:48:04.490] Load(Texture): Squad/Parts/Command/mk1pod/outer shell NRM
[LOG 09:48:04.534] Load(Texture): Squad/Parts/Command/mk1pod/outer shell
[LOG 09:48:04.572] Load(Texture): Squad/Parts/Command/mk1pod/window
[LOG 09:48:04.598] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_A
[LOG 09:48:04.637] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_Emissive
[LOG 09:48:04.764] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_normal
[LOG 09:48:04.875] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit
[LOG 09:48:05.011] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_Lum
[LOG 09:48:05.053] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_NRM
[LOG 09:48:05.107] Load(Texture): Squad/Parts/Command/mk2DroneCore/mk2Dronecore
[LOG 09:48:05.142] Load(Texture): Squad/Parts/Command/mk2LanderCan/ladder
[LOG 09:48:05.177] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell
[LOG 09:48:05.232] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell_n
[LOG 09:48:05.277] Load(Texture): Squad/Parts/Command/mk2LanderCan/window
[LOG 09:48:05.320] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle
[LOG 09:48:05.364] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle_LUM
[LOG 09:48:05.409] Load(Texture): Squad/Parts/Command/probeCoreCube/model000
[LOG 09:48:05.447] Load(Texture): Squad/Parts/Command/probeCoreCube/model001
[LOG 09:48:05.491] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_diff
[LOG 09:48:05.528] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_normal
[LOG 09:48:05.559] Load(Texture): Squad/Parts/Command/probeCoreOcto/model000
[LOG 09:48:05.589] Load(Texture): Squad/Parts/Command/probeCoreOcto/model001
[LOG 09:48:05.619] Load(Texture): Squad/Parts/Command/probeCoreOcto2/model000
[LOG 09:48:05.650] Load(Texture): Squad/Parts/Command/probeRoverBody/model000
[LOG 09:48:05.682] Load(Texture): Squad/Parts/Command/probeRoverBody/model001
[LOG 09:48:05.722] Load(Texture): Squad/Parts/Command/probeStackLarge/model000
[LOG 09:48:05.765] Load(Texture): Squad/Parts/Command/probeStackLarge/model001
[LOG 09:48:05.809] Load(Texture): Squad/Parts/Command/probeStackSmall/model000
[LOG 09:48:05.851] Load(Texture): Squad/Parts/Command/probeStackSmall/model001
[LOG 09:48:05.892] Load(Texture): Squad/Parts/Command/probeStackSphere/model000
[LOG 09:48:05.931] Load(Texture): Squad/Parts/Command/probeStackSphere/model001
[LOG 09:48:05.966] Load(Texture): Squad/Parts/CompoundParts/fuelLine/model000
[LOG 09:48:05.998] Load(Texture): Squad/Parts/CompoundParts/strutConnector/model000
[LOG 09:48:06.029] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model000
[LOG 09:48:06.060] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model001
[LOG 09:48:06.090] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model002
[LOG 09:48:06.120] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model000
[LOG 09:48:06.150] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model001
[LOG 09:48:06.181] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model002
[LOG 09:48:06.212] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model000
[LOG 09:48:06.243] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model001
[LOG 09:48:06.285] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model002
[LOG 09:48:06.326] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model000
[LOG 09:48:06.362] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model001
[LOG 09:48:06.406] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model002
[LOG 09:48:06.452] Load(Texture): Squad/Parts/Electrical/gigantorXlSolarArray/panel
[LOG 09:48:06.492] Load(Texture): Squad/Parts/Electrical/radialFlatSolarPanel/model000
[LOG 09:48:06.533] Load(Texture): Squad/Parts/Electrical/RTG/model000
[LOG 09:48:06.568] Load(Texture): Squad/Parts/Electrical/z-100Battery/model000
[LOG 09:48:06.582] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model000
[LOG 09:48:06.586] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model001
[LOG 09:48:06.592] Load(Texture): Squad/Parts/Electrical/z-200Battery/ksp_m_batteryPack_diff
[LOG 09:48:06.596] Load(Texture): Squad/Parts/Electrical/z-400Battery/model000
[LOG 09:48:06.671] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_diff
[LOG 09:48:06.676] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_normal
[LOG 09:48:06.682] Load(Texture): Squad/Parts/Engine/ionEngine/model000
[LOG 09:48:06.687] Load(Texture): Squad/Parts/Engine/jetEngines/Jet Engines
[LOG 09:48:06.698] Load(Texture): Squad/Parts/Engine/jetEngines/Jet_Heat
[LOG 09:48:06.707] Load(Texture): Squad/Parts/Engine/liquidEngine24-77/model000
[LOG 09:48:06.710] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_diff
[LOG 09:48:06.716] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_norm
[LOG 09:48:06.723] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_norm
[LOG 09:48:06.730] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_psd
[LOG 09:48:06.735] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike
[LOG 09:48:06.739] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike_Heat
[LOG 09:48:06.748] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/model000
[LOG 09:48:06.753] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/model001
[LOG 09:48:06.758] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1R/ksp_r_microEngine_diff
[LOG 09:48:06.766] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/bigfairing
[LOG 09:48:06.773] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3
[LOG 09:48:06.778] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_emissive
[LOG 09:48:06.787] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_n
[LOG 09:48:06.793] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model000
[LOG 09:48:06.812] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model001
[LOG 09:48:06.818] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model002
[LOG 09:48:06.821] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model003
[LOG 09:48:06.829] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model000
[LOG 09:48:06.833] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model001
[LOG 09:48:06.840] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model002
[LOG 09:48:06.849] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model000
[LOG 09:48:06.854] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model001
[LOG 09:48:06.858] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model002
[LOG 09:48:06.863] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model003
[LOG 09:48:06.872] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model000
[LOG 09:48:06.877] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model001
[LOG 09:48:06.882] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model002
[LOG 09:48:06.893] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model003
[LOG 09:48:06.899] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model004
[LOG 09:48:06.907] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 09:48:06.913] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud_Heat
[LOG 09:48:06.917] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model000
[LOG 09:48:06.921] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model001
[LOG 09:48:06.926] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model002
[LOG 09:48:06.932] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model003
[LOG 09:48:06.936] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_diff
[LOG 09:48:06.944] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_emissive
[LOG 09:48:06.951] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_diff
[LOG 09:48:06.958] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_norm
[LOG 09:48:06.970] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_normal
[LOG 09:48:06.976] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 09:48:06.980] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_GLOW
[LOG 09:48:06.982] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_NRM
[LOG 09:48:06.987] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_cm
[LOG 09:48:06.995] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_em
[LOG 09:48:06.999] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_nm
[LOG 09:48:07.006] Load(Texture): Squad/Parts/Engine/miniJet/SmallJet
[LOG 09:48:07.009] Load(Texture): Squad/Parts/Engine/OMSEngine/engineoms 1
[LOG 09:48:07.013] Load(Texture): Squad/Parts/Engine/OMSEngine/engineomsN_NRM
[LOG 09:48:07.018] Load(Texture): Squad/Parts/Engine/rapierEngine/rapierDiffuse
[LOG 09:48:07.023] Load(Texture): Squad/Parts/Engine/rapierEngine/rapieremit
[LOG 09:48:07.027] Load(Texture): Squad/Parts/Engine/Size2LFB/Size2LFBEmissive
[LOG 09:48:07.032] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_cm
[LOG 09:48:07.043] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_nm
[LOG 09:48:07.055] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/decoupler_and_adaptor_cm
[LOG 09:48:07.067] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineDiffuse
[LOG 09:48:07.079] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineEmissive
[LOG 09:48:07.085] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineNormal
[LOG 09:48:07.090] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/ClusterEngineEmit
[LOG 09:48:07.093] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_cm
[LOG 09:48:07.104] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_nm
[LOG 09:48:07.115] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model000
[LOG 09:48:07.120] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model001
[LOG 09:48:07.125] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model002
[LOG 09:48:07.128] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model000
[LOG 09:48:07.139] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model001
[LOG 09:48:07.144] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model002
[LOG 09:48:07.147] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5
[LOG 09:48:07.152] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5_N_NRM
[LOG 09:48:07.156] Load(Texture): Squad/Parts/Engine/solidBoosterSep/model000
[LOG 09:48:07.160] Load(Texture): Squad/Parts/Engine/vernorEngine/vernierEngine3UV
[LOG 09:48:07.164] Load(Texture): Squad/Parts/FuelTank/adapterTanks/Mk3Adapters
[LOG 09:48:07.187] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model000
[LOG 09:48:07.193] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model001
[LOG 09:48:07.211] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model000
[LOG 09:48:07.213] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model001
[LOG 09:48:07.217] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank
[LOG 09:48:07.222] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank_n
[LOG 09:48:07.227] Load(Texture): Squad/Parts/FuelTank/fuelTankT100/tank4
[LOG 09:48:07.235] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3
[LOG 09:48:07.238] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3_n
[LOG 09:48:07.243] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model000
[LOG 09:48:07.246] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model001
[LOG 09:48:07.258] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model000
[LOG 09:48:07.263] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model001
[LOG 09:48:07.271] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model000
[LOG 09:48:07.276] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model001
[LOG 09:48:07.280] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model000
[LOG 09:48:07.286] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model001
[LOG 09:48:07.292] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model000
[LOG 09:48:07.304] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model001
[LOG 09:48:07.310] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model000
[LOG 09:48:07.322] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model001
[LOG 09:48:07.327] Load(Texture): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 09:48:07.331] Load(Texture): Squad/Parts/FuelTank/mk2Adapters/mk2adapters1m
[LOG 09:48:07.343] Load(Texture): Squad/Parts/FuelTank/mk2FuselageLong/mk2Fuselage
[LOG 09:48:07.355] Load(Texture): Squad/Parts/FuelTank/mk2FuselageShort/mk2FuselageShort
[LOG 09:48:07.367] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage
[LOG 09:48:07.391] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage_LUM
[LOG 09:48:07.393] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model000
[LOG 09:48:07.404] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model001
[LOG 09:48:07.410] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_diff
[LOG 09:48:07.417] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_normal
[LOG 09:48:07.422] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model000
[LOG 09:48:07.427] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model001
[LOG 09:48:07.433] Load(Texture): Squad/Parts/FuelTank/RCSTankRadial/model000
[LOG 09:48:07.438] Load(Texture): Squad/Parts/FuelTank/RCStankRadialLong/ksp_r_rcsCylTank_diff
[LOG 09:48:07.449] Load(Texture): Squad/Parts/FuelTank/Size3Tanks/fueltTanks_cm
[LOG 09:48:07.463] Load(Texture): Squad/Parts/FuelTank/xenonTank/model000
[LOG 09:48:07.468] Load(Texture): Squad/Parts/FuelTank/xenonTank/model001
[LOG 09:48:07.475] Load(Texture): Squad/Parts/FuelTank/xenonTankLarge/tank
[LOG 09:48:07.480] Load(Texture): Squad/Parts/FuelTank/xenonTankRadial/ksp_r_xenonTank_diff
[LOG 09:48:07.485] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat
[LOG 09:48:07.493] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_glow
[LOG 09:48:07.498] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_N_NRM
[LOG 09:48:07.511] Load(Texture): Squad/Parts/Misc/AsteroidDay/default
[LOG 09:48:07.514] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe
[LOG 09:48:07.521] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe_NORM_NRM
[LOG 09:48:07.526] Load(Texture): Squad/Parts/Misc/PotatoRoid/squareButton
[LOG 09:48:07.534] Load(Texture): Squad/Parts/Resources/FuelCell/FCLamp
[LOG 09:48:07.538] Load(Texture): Squad/Parts/Resources/FuelCell/FuelCellRack
[LOG 09:48:07.543] Load(Texture): Squad/Parts/Resources/FuelCell/fuellcell
[LOG 09:48:07.548] Load(Texture): Squad/Parts/Resources/ISRU/Processor_Large
[LOG 09:48:07.556] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_diff
[LOG 09:48:07.569] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_norm
[LOG 09:48:07.584] Load(Texture): Squad/Parts/Resources/MiniDrill/DustParticle
[LOG 09:48:07.590] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_diff
[LOG 09:48:07.616] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_PSD
[LOG 09:48:07.629] Load(Texture): Squad/Parts/Resources/MiniISRU/ksp_s_processorSmall_diff
[LOG 09:48:07.638] Load(Texture): Squad/Parts/Resources/OrbitalScanner/detector
[LOG 09:48:07.642] Load(Texture): Squad/Parts/Resources/RadialDrill/DustParticle
[LOG 09:48:07.649] Load(Texture): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 09:48:07.654] Load(Texture): Squad/Parts/Resources/RadialTank/ksp_r_resourceContainer_psd_2
[LOG 09:48:07.658] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_diff
[LOG 09:48:07.670] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_normal
[LOG 09:48:07.681] Load(Texture): Squad/Parts/Resources/SurfaceScanner/ksp_r_samplerAir_diff
[LOG 09:48:07.692] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish
[LOG 09:48:07.699] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish_n
[LOG 09:48:07.710] Load(Texture): Squad/Parts/Science/AtmosphereSensor/ksp_r_hydroscoop_diff
[LOG 09:48:07.717] Load(Texture): Squad/Parts/Science/GooExperiment/A_GooExperiment_diff
[LOG 09:48:07.728] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab
[LOG 09:48:07.739] Load(Texture): Squad/Parts/Science/LargeCrewedLab/window
[LOG 09:48:07.741] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 09:48:07.753] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_emit
[LOG 09:48:07.757] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_nrm
[LOG 09:48:07.762] Load(Texture): Squad/Parts/Science/MaterialBay/wires
[LOG 09:48:07.767] Load(Texture): Squad/Parts/Science/sensorAccelerometer/model000
[LOG 09:48:07.769] Load(Texture): Squad/Parts/Science/sensorBarometer/model000
[LOG 09:48:07.773] Load(Texture): Squad/Parts/Science/sensorGravimeter/model000
[LOG 09:48:07.778] Load(Texture): Squad/Parts/Science/sensorThermometer/model000
[LOG 09:48:07.782] Load(Texture): Squad/Parts/Structural/adapterLargeSmallBi/ksp_l_biAdapter_diff
[LOG 09:48:07.830] Load(Texture): Squad/Parts/Structural/adapterLargeSmallQuad/ksp_l_quadAdapter_diff
[LOG 09:48:07.839] Load(Texture): Squad/Parts/Structural/adapterLargeSmallTri/ksp_l_triAdapter_diff
[LOG 09:48:07.847] Load(Texture): Squad/Parts/Structural/adapterSmallMiniShort/ksp_s_adapterShort_diff
[LOG 09:48:07.852] Load(Texture): Squad/Parts/Structural/adapterSmallMiniTall/ksp_s_adapterLong_diff
[LOG 09:48:07.860] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1Structural
[LOG 09:48:07.873] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1StructuralHeat
[LOG 09:48:07.886] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_cm
[LOG 09:48:07.899] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_nm
[LOG 09:48:07.911] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_cm
[LOG 09:48:07.923] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_nm
[LOG 09:48:07.938] Load(Texture): Squad/Parts/Structural/stationHub/model000
[LOG 09:48:07.943] Load(Texture): Squad/Parts/Structural/stationHub/model001
[LOG 09:48:07.949] Load(Texture): Squad/Parts/Structural/structuralIBeam200/model000
[LOG 09:48:07.952] Load(Texture): Squad/Parts/Structural/structuralIBeam200Pocket/model000
[LOG 09:48:07.957] Load(Texture): Squad/Parts/Structural/structuralIBeam650/model000
[LOG 09:48:07.961] Load(Texture): Squad/Parts/Structural/structuralMicronode/model000
[LOG 09:48:07.966] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model000
[LOG 09:48:07.971] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model001
[LOG 09:48:07.975] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model000
[LOG 09:48:07.980] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model001
[LOG 09:48:07.984] Load(Texture): Squad/Parts/Structural/structuralPylons/Pylons
[LOG 09:48:07.990] Load(Texture): Squad/Parts/Structural/strutCubicOcto/model000
[LOG 09:48:07.994] Load(Texture): Squad/Parts/Structural/strutOcto/model000
[LOG 09:48:07.998] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model000
[LOG 09:48:08.003] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model001
[LOG 09:48:08.008] Load(Texture): Squad/Parts/Structural/trussGirderL/model000
[LOG 09:48:08.017] Load(Texture): Squad/Parts/Structural/trussGirderXL/model000
[LOG 09:48:08.025] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator
[LOG 09:48:08.034] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator_N_NRM
[LOG 09:48:08.049] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel
[LOG 09:48:08.057] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel_N_NRM
[LOG 09:48:08.072] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_array
[LOG 09:48:08.078] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_v2_diff
[LOG 09:48:08.085] Load(Texture): Squad/Parts/Utility/commDish88-88/model000
[LOG 09:48:08.102] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 09:48:08.114] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna_Emit
[LOG 09:48:08.116] Load(Texture): Squad/Parts/Utility/commsDish16/model000
[LOG 09:48:08.119] Load(Texture): Squad/Parts/Utility/decouplerRadialHDM/model000
[LOG 09:48:08.124] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model000
[LOG 09:48:08.128] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model001
[LOG 09:48:08.134] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-70/model000
[LOG 09:48:08.137] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model000
[LOG 09:48:08.143] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model001
[LOG 09:48:08.148] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-2C/model000
[LOG 09:48:08.151] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-XL/model000
[LOG 09:48:08.157] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model000
[LOG 09:48:08.161] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model001
[LOG 09:48:08.165] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model000
[LOG 09:48:08.170] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model001
[LOG 09:48:08.175] Load(Texture): Squad/Parts/Utility/decouplerStackTR-2V/model000
[LOG 09:48:08.179] Load(Texture): Squad/Parts/Utility/dockingPort/model000
[LOG 09:48:08.184] Load(Texture): Squad/Parts/Utility/dockingPort/model001
[LOG 09:48:08.188] Load(Texture): Squad/Parts/Utility/dockingPortInline/model000
[LOG 09:48:08.193] Load(Texture): Squad/Parts/Utility/dockingPortInline/model001
[LOG 09:48:08.198] Load(Texture): Squad/Parts/Utility/dockingPortInline/model002
[LOG 09:48:08.203] Load(Texture): Squad/Parts/Utility/dockingPortJr/model000
[LOG 09:48:08.207] Load(Texture): Squad/Parts/Utility/dockingPortJr/model001
[LOG 09:48:08.211] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model000
[LOG 09:48:08.216] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model001
[LOG 09:48:08.221] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model002
[LOG 09:48:08.225] Load(Texture): Squad/Parts/Utility/dockingPortSr/model000
[LOG 09:48:08.236] Load(Texture): Squad/Parts/Utility/dockingPortSr/model001
[LOG 09:48:08.247] Load(Texture): Squad/Parts/Utility/GrapplingDevice/grabberDiffuse
[LOG 09:48:08.252] Load(Texture): Squad/Parts/Utility/GrapplingDevice/window
[LOG 09:48:08.254] Load(Texture): Squad/Parts/Utility/ladderRadial/model000
[LOG 09:48:08.258] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model000
[LOG 09:48:08.266] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model001
[LOG 09:48:08.277] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model002
[LOG 09:48:08.284] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model000
[LOG 09:48:08.296] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model001
[LOG 09:48:08.307] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 09:48:08.312] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff OUT OF DATE
[LOG 09:48:08.313] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 09:48:08.336] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 09:48:08.339] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg OUT OF DATE
[LOG 09:48:08.340] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 09:48:08.358] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 09:48:08.360] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg OUT OF DATE
[LOG 09:48:08.361] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 09:48:08.364] Load(Texture): Squad/Parts/Utility/landingLegLT-5/model000
[LOG 09:48:08.368] Load(Texture): Squad/Parts/Utility/largeAdapter/model000
[LOG 09:48:08.374] Load(Texture): Squad/Parts/Utility/largeAdapterShort/model000
[LOG 09:48:08.377] Load(Texture): Squad/Parts/Utility/launchClamp1/model000
[LOG 09:48:08.382] Load(Texture): Squad/Parts/Utility/launchClamp1/model001
[LOG 09:48:08.386] Load(Texture): Squad/Parts/Utility/launchEscapeSystem/LES_Diffuse
[LOG 09:48:08.398] Load(Texture): Squad/Parts/Utility/linearRCS/model000
[LOG 09:48:08.401] Load(Texture): Squad/Parts/Utility/linearRCS/model001
[LOG 09:48:08.404] Load(Texture): Squad/Parts/Utility/mk2CargoBay/mk2CargoBay
[LOG 09:48:08.415] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin
[LOG 09:48:08.423] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin_LUM
[LOG 09:48:08.425] Load(Texture): Squad/Parts/Utility/mk2DockingPort/mk2DockingPort
[LOG 09:48:08.437] Load(Texture): Squad/Parts/Utility/mk3CargoBay/Mk3CargoBay
[LOG 09:48:08.448] Load(Texture): Squad/Parts/Utility/parachuteMk1/model000
[LOG 09:48:08.453] Load(Texture): Squad/Parts/Utility/parachuteMk1/model001
[LOG 09:48:08.458] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model000
[LOG 09:48:08.462] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model001
[LOG 09:48:08.466] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model000
[LOG 09:48:08.469] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model001
[LOG 09:48:08.474] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model000
[LOG 09:48:08.478] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model001
[LOG 09:48:08.482] Load(Texture): Squad/Parts/Utility/parachuteMk25/model000
[LOG 09:48:08.487] Load(Texture): Squad/Parts/Utility/parachuteMk25/model001
[LOG 09:48:08.491] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model000
[LOG 09:48:08.496] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model001
[LOG 09:48:08.500] Load(Texture): Squad/Parts/Utility/rcsBlockRV-105/model000
[LOG 09:48:08.505] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay
[LOG 09:48:08.510] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay_N_NRM
[LOG 09:48:08.515] Load(Texture): Squad/Parts/Utility/spotLightMk1/model000
[LOG 09:48:08.518] Load(Texture): Squad/Parts/Utility/spotLightMk1/model001
[LOG 09:48:08.524] Load(Texture): Squad/Parts/Utility/spotLightMk2/model000
[LOG 09:48:08.527] Load(Texture): Squad/Parts/Utility/spotLightMk2/model001
[LOG 09:48:08.532] Load(Texture): Squad/Parts/Utility/stackBiCoupler/model000
[LOG 09:48:08.537] Load(Texture): Squad/Parts/Utility/stackQuadCoupler/ksp_s_quadCoupler_diff
[LOG 09:48:08.544] Load(Texture): Squad/Parts/Utility/stackTriCoupler/model000
[LOG 09:48:08.548] Load(Texture): Squad/Parts/Wheel/LandingGear/Flare
[LOG 09:48:08.551] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear
[LOG 09:48:08.564] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear_Emissive
[LOG 09:48:08.566] Load(Texture): Squad/Parts/Wheel/roverWheelM1/model000
[LOG 09:48:08.570] Load(Texture): Squad/Parts/Wheel/roverWheelM1/roverwheel1
[LOG 09:48:08.592] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model000
[LOG 09:48:08.598] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model001
[LOG 09:48:08.602] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2
[LOG 09:48:08.611] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2_n
[LOG 09:48:08.632] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_diff
[LOG 09:48:08.719] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_normal
[LOG 09:48:08.799] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_diff
[LOG 09:48:08.877] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_normal
[LOG 09:48:08.953] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model000
[LOG 09:48:08.983] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model001
[LOG 09:48:08.995] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model002
[LOG 09:48:09.006] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model003
[LOG 09:48:09.018] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model000
[LOG 09:48:09.029] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model001
[LOG 09:48:09.035] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model002
[LOG 09:48:09.037] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model003
[LOG 09:48:09.041] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount
[LOG 09:48:09.124] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount_n
[LOG 09:48:09.139] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel
[LOG 09:48:09.149] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel_n
[LOG 09:48:09.159] Load(Texture): Squad/Props/AltimeterThreeHands/model000
[LOG 09:48:09.161] Load(Texture): Squad/Props/AltimeterThreeHands/model001
[LOG 09:48:09.165] Load(Texture): Squad/Props/AtmosphereDepth/model000
[LOG 09:48:09.170] Load(Texture): Squad/Props/AtmosphereDepth/model001
[LOG 09:48:09.174] Load(Texture): Squad/Props/AxisIndicator/model000
[LOG 09:48:09.179] Load(Texture): Squad/Props/ButtonSquare/model000
[LOG 09:48:09.187] Load(Texture): Squad/Props/circularButton/model000
[LOG 09:48:09.189] Load(Texture): Squad/Props/Compass/model000
[LOG 09:48:09.194] Load(Texture): Squad/Props/directionalKnob/model000
[LOG 09:48:09.198] Load(Texture): Squad/Props/directionalKnob2/model000
[LOG 09:48:09.203] Load(Texture): Squad/Props/IndicatorPanel/model000
[LOG 09:48:09.208] Load(Texture): Squad/Props/IndicatorPanel/model001
[LOG 09:48:09.212] Load(Texture): Squad/Props/IVANavBall/Arrows8dir
[LOG 09:48:09.218] Load(Texture): Squad/Props/IVANavBall/IVANavBall
[LOG 09:48:09.222] Load(Texture): Squad/Props/IVANavBall/IVANavBall_Glow
[LOG 09:48:09.226] Load(Texture): Squad/Props/IVANavBall/ManeuverNode_vectors
[LOG 09:48:09.231] Load(Texture): Squad/Props/IVANavBall/navball2
[LOG 09:48:09.236] Load(Texture): Squad/Props/IVANavBall/navBall_DV_IVA
[LOG 09:48:09.240] Load(Texture): Squad/Props/IVANavBall/navBall_vectors_IVA
[LOG 09:48:09.245] Load(Texture): Squad/Props/ledPanelSpeed/model000
[LOG 09:48:09.250] Load(Texture): Squad/Props/ledPanelSpeed/model001
[LOG 09:48:09.254] Load(Texture): Squad/Props/Monitor/Emissives
[LOG 09:48:09.259] Load(Texture): Squad/Props/Monitor/Emissives_glow
[LOG 09:48:09.263] Load(Texture): Squad/Props/Monitor/Monitor
[LOG 09:48:09.268] Load(Texture): Squad/Props/NavBall/model000
[LOG 09:48:09.273] Load(Texture): Squad/Props/NavBall/model001
[LOG 09:48:09.278] Load(Texture): Squad/Props/NavBall/model002
[LOG 09:48:09.282] Load(Texture): Squad/Props/NavBall/model003
[LOG 09:48:09.287] Load(Texture): Squad/Props/PropsGeneric/propsGeneric
[LOG 09:48:09.298] Load(Texture): Squad/Props/pullSwitch/model000
[LOG 09:48:09.301] Load(Texture): Squad/Props/pullSwitch/model001
[LOG 09:48:09.304] Load(Texture): Squad/Props/radarAltitude/model000
[LOG 09:48:09.310] Load(Texture): Squad/Props/squareButton/model000
[LOG 09:48:09.314] Load(Texture): Squad/Props/standingSwitch/model000
[LOG 09:48:09.319] Load(Texture): Squad/Props/standingSwitch/model001
[LOG 09:48:09.322] Load(Texture): Squad/Props/switch/model000
[LOG 09:48:09.327] Load(Texture): Squad/Props/switchGuard/model000
[LOG 09:48:09.332] Load(Texture): Squad/Props/switchWithGuards/model000
[LOG 09:48:09.336] Load(Texture): Squad/Props/switchWithGuards/model001
[LOG 09:48:09.340] Load(Texture): Squad/Props/switchWithGuards/model002
[LOG 09:48:09.345] Load(Texture): Squad/Props/throttle/model000
[LOG 09:48:09.349] Load(Texture): Squad/Props/throttle/model001
[LOG 09:48:09.360] Load(Texture): Squad/Props/VSI/model000
[LOG 09:48:09.365] Load(Texture): Squad/Spaces/crewCabinInternals/model000
[LOG 09:48:09.367] Load(Texture): Squad/Spaces/crewCabinInternals/model001
[LOG 09:48:09.389] Load(Texture): Squad/Spaces/crewCabinInternals/model002
[LOG 09:48:09.393] Load(Texture): Squad/Spaces/crewCabinInternals/model003
[LOG 09:48:09.405] Load(Texture): Squad/Spaces/crewCabinInternals/model004
[LOG 09:48:09.407] Load(Texture): Squad/Spaces/crewCabinInternals/model005
[LOG 09:48:09.418] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_diff
[LOG 09:48:09.467] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_normal
[LOG 09:48:09.521] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_windows_alpha
[LOG 09:48:09.532] Load(Texture): Squad/Spaces/cupolaInternal/pilot Seat
[LOG 09:48:09.543] Load(Texture): Squad/Spaces/GenericSpace1/model000
[LOG 09:48:09.555] Load(Texture): Squad/Spaces/GenericSpace1/model001
[LOG 09:48:09.566] Load(Texture): Squad/Spaces/GenericSpace1/model002
[LOG 09:48:09.577] Load(Texture): Squad/Spaces/GenericSpace1/model003
[LOG 09:48:09.588] Load(Texture): Squad/Spaces/GenericSpace1/model004
[LOG 09:48:09.600] Load(Texture): Squad/Spaces/GenericSpace1/model005
[LOG 09:48:09.611] Load(Texture): Squad/Spaces/GenericSpace3/model000
[LOG 09:48:09.622] Load(Texture): Squad/Spaces/GenericSpace3/model001
[LOG 09:48:09.628] Load(Texture): Squad/Spaces/GenericSpace3/model002
[LOG 09:48:09.639] Load(Texture): Squad/Spaces/GenericSpace3/model003
[LOG 09:48:09.650] Load(Texture): Squad/Spaces/GenericSpace3/model004
[LOG 09:48:09.661] Load(Texture): Squad/Spaces/GenericSpace3/model005
[LOG 09:48:09.672] Load(Texture): Squad/Spaces/GenericSpace3/model006
[LOG 09:48:09.679] Load(Texture): Squad/Spaces/GenericSpace3/model007
[LOG 09:48:09.691] Load(Texture): Squad/Spaces/landerCabinInternals/model000
[LOG 09:48:09.702] Load(Texture): Squad/Spaces/landerCabinInternals/model001
[LOG 09:48:09.714] Load(Texture): Squad/Spaces/landerCabinInternals/model002
[LOG 09:48:09.727] Load(Texture): Squad/Spaces/landerCabinInternals/model003
[LOG 09:48:09.751] Load(Texture): Squad/Spaces/landerCabinInternals/model004
[LOG 09:48:09.764] Load(Texture): Squad/Spaces/landerCabinInternals/model005
[LOG 09:48:09.767] Load(Texture): Squad/Spaces/landerCabinInternals/model006
[LOG 09:48:09.779] Load(Texture): Squad/Spaces/landerCabinInternals/model007
[LOG 09:48:09.780] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_diff
[LOG 09:48:09.830] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_normal
[LOG 09:48:09.886] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_window_alpha
[LOG 09:48:09.911] Load(Texture): Squad/Spaces/landerCabinSmallInternal/pilot Seat
[LOG 09:48:09.922] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/Glass
[LOG 09:48:09.956] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int
[LOG 09:48:10.447] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int_n_NRM
[LOG 09:48:10.665] Load(Texture): Squad/Spaces/mk1CabinInternal/Cabin_Lightmap
[LOG 09:48:10.769] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric
[LOG 09:48:10.771] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric_NRM
[LOG 09:48:10.775] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric
[LOG 09:48:10.780] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric_NRM
[LOG 09:48:10.784] Load(Texture): Squad/Spaces/mk1CockpitInternal/IVAMAP
[LOG 09:48:10.795] Load(Texture): Squad/Spaces/mk1CockpitInternal/Windows
[LOG 09:48:10.798] Load(Texture): Squad/Spaces/mk1InlineInternal/Canopy
[LOG 09:48:10.809] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric
[LOG 09:48:10.811] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric_NRM
[LOG 09:48:10.815] Load(Texture): Squad/Spaces/mk1InlineInternal/Mk1Inline_Lightmap
[LOG 09:48:10.821] Load(Texture): Squad/Spaces/mk1PodCockpit/model000
[LOG 09:48:10.832] Load(Texture): Squad/Spaces/mk1PodCockpit/model001
[LOG 09:48:10.844] Load(Texture): Squad/Spaces/mk1PodCockpit/model002
[LOG 09:48:10.856] Load(Texture): Squad/Spaces/mk1PodCockpit/model003
[LOG 09:48:10.867] Load(Texture): Squad/Spaces/mk1PodCockpit/model004
[LOG 09:48:10.890] Load(Texture): Squad/Spaces/mk1PodCockpit/model005
[LOG 09:48:10.893] Load(Texture): Squad/Spaces/mk1PodCockpit/model006
[LOG 09:48:10.906] Load(Texture): Squad/Spaces/mk1PodCockpit/model007
[LOG 09:48:10.908] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/CargoBagA
[LOG 09:48:10.914] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Mk2StandardIVA
[LOG 09:48:10.923] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Pilotseat
[LOG 09:48:10.928] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Windows
[LOG 09:48:10.932] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/CargoBagA
[LOG 09:48:10.935] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Glass
[LOG 09:48:10.941] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Mk2StandardIVA
[LOG 09:48:10.949] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Pilotseat
[LOG 09:48:10.955] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric
[LOG 09:48:10.967] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric_NRM
[LOG 09:48:10.979] Load(Texture): Squad/Spaces/mk2InlineInternal/Mk2InlineLightmap
[LOG 09:48:10.992] Load(Texture): Squad/Spaces/mk2InlineInternal/propsGeneric
[LOG 09:48:11.004] Load(Texture): Squad/Spaces/MK3CockpitInternal/Glass
[LOG 09:48:11.009] Load(Texture): Squad/Spaces/MK3CockpitInternal/Mk2StandardIVA
[LOG 09:48:11.016] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Glass
[LOG 09:48:11.021] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/GlassMK3CC
[LOG 09:48:11.023] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Mk2StandardIVA
[LOG 09:48:11.031] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 09:48:11.043] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int_n
[LOG 09:48:11.048] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Pilotseat
[LOG 09:48:11.053] Load(Texture): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 09:48:11.055] Load(Texture): Squad/Spaces/PodCockpit/model000
[LOG 09:48:11.066] Load(Texture): Squad/Spaces/PodCockpit/model001
[LOG 09:48:11.079] Load(Texture): Squad/Spaces/PodCockpit/model002
[LOG 09:48:11.091] Load(Texture): Squad/Spaces/PodCockpit/model003
[LOG 09:48:11.103] Load(Texture): Squad/Spaces/PodCockpit/model004
[LOG 09:48:11.115] Load(Texture): Squad/Spaces/PodCockpit/model005
[LOG 09:48:11.128] Load(Texture): Squad/Spaces/PodCockpit/model006
[LOG 09:48:11.134] Load(Texture): Squad/Spaces/PodCockpit/model007
[LOG 09:48:11.146] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric
[LOG 09:48:11.158] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric_NRM
[LOG 09:48:11.181] Load(Texture): Squad/Strategies/Icons/AggressiveNegotiations
[LOG 09:48:11.193] Load(Texture): Squad/Strategies/Icons/AppreciationCampaign
[LOG 09:48:11.202] Load(Texture): Squad/Strategies/Icons/BailOutGrant
[LOG 09:48:11.212] Load(Texture): Squad/Strategies/Icons/FundraisingCampaign
[LOG 09:48:11.221] Load(Texture): Squad/Strategies/Icons/LeadershipInitiative
[LOG 09:48:11.231] Load(Texture): Squad/Strategies/Icons/OpenSourceTechProgram
[LOG 09:48:11.240] Load(Texture): Squad/Strategies/Icons/OutsourcedResearch
[LOG 09:48:11.250] Load(Texture): Squad/Strategies/Icons/PatentsLicensing
[LOG 09:48:11.264] Load(Texture): Squad/Strategies/Icons/RecoveryTransponderFitting
[LOG 09:48:11.278] Load(Texture): Squad/Strategies/Icons/ResearchRightsSellOut
[LOG 09:48:11.292] Load(Texture): Squad/Strategies/Icons/UnpaidResearchProgram
[LOG 09:48:11.302] Load(Texture): Squad/Tutorials/ChuteColors
[LOG 09:48:11.316] Load(Texture): Squad/Tutorials/EditorCoM
[LOG 09:48:11.330] Load(Texture): Squad/Tutorials/EditorSnap
[LOG 09:48:11.343] Load(Texture): Squad/Tutorials/EditorSnap4x
[LOG 09:48:11.357] Load(Texture): Squad/Tutorials/EditorSymm
[LOG 09:48:11.370] Load(Texture): Squad/Tutorials/StagingStack
[LOG 09:48:11.383] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONRCSBlock45
[LOG 09:48:11.417] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONRCSBlock
[LOG 09:48:11.420] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/model
[LOG 09:48:11.424] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/model
[LOG 09:48:11.427] Load(Model): Squad/FX/afterburner_flame
[LOG 09:48:11.469] Load(Model): Squad/FX/afterburner_shock
[LOG 09:48:11.477] Load(Model): Squad/FX/diamondBlue
[LOG 09:48:11.499] Load(Model): Squad/FX/exhaustFlames_blue
[LOG 09:48:11.501] Load(Model): Squad/FX/hydroLOXFlame
[LOG 09:48:11.527] Load(Model): Squad/FX/IonPlume
[LOG 09:48:11.530] Load(Model): Squad/FX/ks1_Exhaust
[LOG 09:48:11.534] Load(Model): Squad/FX/ks25_Exhaust
[LOG 09:48:11.539] Load(Model): Squad/FX/ksX_Exhaust
[LOG 09:48:11.544] Load(Model): Squad/FX/LES_Thruster
[LOG 09:48:11.548] Load(Model): Squad/FX/shockExhaust_blue
[LOG 09:48:11.552] Load(Model): Squad/FX/shockExhaust_blue_small
[LOG 09:48:11.574] Load(Model): Squad/FX/shockExhaust_red_small
[LOG 09:48:11.578] Load(Model): Squad/FX/SRB_Large
[LOG 09:48:11.581] Load(Model): Squad/FX/SRB_LargeSparks
[LOG 09:48:11.586] Load(Model): Squad/Parts/Aero/aerodynamicNoseCone/model
[LOG 09:48:11.616] Load(Model): Squad/Parts/Aero/airbrake/Airbrake
[LOG 09:48:11.673] Load(Model): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 09:48:11.698] Load(Model): Squad/Parts/Aero/airlinerWings/ControlSurface
[LOG 09:48:11.701] Load(Model): Squad/Parts/Aero/airlinerWings/MainWing
[LOG 09:48:11.705] Load(Model): Squad/Parts/Aero/airlinerWings/TailFin
[LOG 09:48:11.727] Load(Model): Squad/Parts/Aero/airplaneFins/AdvCanard
[LOG 09:48:11.729] Load(Model): Squad/Parts/Aero/airplaneFins/Canard
[LOG 09:48:11.761] Load(Model): Squad/Parts/Aero/airplaneFins/Swept
[LOG 09:48:11.784] Load(Model): Squad/Parts/Aero/airplaneFins/TailFin
[LOG 09:48:11.806] Load(Model): Squad/Parts/Aero/basicFin/basicFin
[LOG 09:48:11.830] Load(Model): Squad/Parts/Aero/circularIntake/CircularIntake
[LOG 09:48:11.910] Load(Model): Squad/Parts/Aero/circularIntake/ConeIntake
[LOG 09:48:11.914] Load(Model): Squad/Parts/Aero/cones/AvioCone
[LOG 09:48:11.930] Load(Model): Squad/Parts/Aero/cones/ConeA
[LOG 09:48:11.933] Load(Model): Squad/Parts/Aero/cones/ConeB
[LOG 09:48:11.937] Load(Model): Squad/Parts/Aero/cones/NCS
[LOG 09:48:11.956] Load(Model): Squad/Parts/Aero/cones/TailA
[LOG 09:48:11.960] Load(Model): Squad/Parts/Aero/cones/TailB
[LOG 09:48:11.993] Load(Model): Squad/Parts/Aero/cones/TinyCone
[LOG 09:48:11.999] Load(Model): Squad/Parts/Aero/fairings/fairingSize1
[LOG 09:48:12.021] Load(Model): Squad/Parts/Aero/fairings/fairingSize2
[LOG 09:48:12.044] Load(Model): Squad/Parts/Aero/fairings/fairingSize3
[LOG 09:48:12.063] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield1
[LOG 09:48:12.087] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield2
[LOG 09:48:12.110] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield3
[LOG 09:48:12.139] Load(Model): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 09:48:12.222] Load(Model): Squad/Parts/Aero/intakeRadialLong/IntakeRadial
[LOG 09:48:12.237] Load(Model): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 09:48:12.252] Load(Model): Squad/Parts/Aero/protectiveRocketNoseMk7/model
[LOG 09:48:12.285] Load(Model): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 09:48:12.304] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleDeltaWing
[LOG 09:48:12.320] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonA
[LOG 09:48:12.339] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonB
[LOG 09:48:12.343] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleRudder
[LOG 09:48:12.348] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleStrake
[LOG 09:48:12.352] Load(Model): Squad/Parts/Aero/wingletAV-R8/model
[LOG 09:48:12.356] Load(Model): Squad/Parts/Aero/wingletAV-T1/model
[LOG 09:48:12.373] Load(Model): Squad/Parts/Aero/wingletDeltaDeluxe/model
[LOG 09:48:12.377] Load(Model): Squad/Parts/Aero/wings/connector1
[LOG 09:48:12.398] Load(Model): Squad/Parts/Aero/wings/connector2
[LOG 09:48:12.410] Load(Model): Squad/Parts/Aero/wings/connector3
[LOG 09:48:12.412] Load(Model): Squad/Parts/Aero/wings/connector4
[LOG 09:48:12.417] Load(Model): Squad/Parts/Aero/wings/connector5
[LOG 09:48:12.421] Load(Model): Squad/Parts/Aero/wings/delta
[LOG 09:48:12.426] Load(Model): Squad/Parts/Aero/wings/delta_small
[LOG 09:48:12.430] Load(Model): Squad/Parts/Aero/wings/elevon1
[LOG 09:48:12.435] Load(Model): Squad/Parts/Aero/wings/elevon2
[LOG 09:48:12.441] Load(Model): Squad/Parts/Aero/wings/elevon3
[LOG 09:48:12.445] Load(Model): Squad/Parts/Aero/wings/elevon4
[LOG 09:48:12.450] Load(Model): Squad/Parts/Aero/wings/elevon5
[LOG 09:48:12.455] Load(Model): Squad/Parts/Aero/wings/strake
[LOG 09:48:12.460] Load(Model): Squad/Parts/Aero/wings/structural1
[LOG 09:48:12.480] Load(Model): Squad/Parts/Aero/wings/structural2
[LOG 09:48:12.491] Load(Model): Squad/Parts/Aero/wings/structural3
[LOG 09:48:12.503] Load(Model): Squad/Parts/Aero/wings/structural4
[LOG 09:48:12.513] Load(Model): Squad/Parts/Aero/wings/swept1
[LOG 09:48:12.524] Load(Model): Squad/Parts/Aero/wings/swept2
[LOG 09:48:12.548] Load(Model): Squad/Parts/Command/advancedSasModuleLarge/model
[LOG 09:48:12.617] Load(Model): Squad/Parts/Command/cupola/model
[LOG 09:48:12.661] Load(Model): Squad/Parts/Command/externalCommandSeat/model
[LOG 09:48:12.748] Load(Model): Squad/Parts/Command/hitchhikerStorageContainer/model
[LOG 09:48:12.792] Load(Model): Squad/Parts/Command/inlineAdvancedStabilizer/model
[LOG 09:48:12.811] Load(Model): Squad/Parts/Command/inlineReactionWheel/model
[LOG 09:48:12.876] Load(Model): Squad/Parts/Command/Mk1-2Pod/model
[LOG 09:48:12.918] Load(Model): Squad/Parts/Command/mk1Cockpits/Cabin
[LOG 09:48:12.949] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitInline
[LOG 09:48:12.974] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitStandard
[LOG 09:48:13.033] Load(Model): Squad/Parts/Command/mk1LanderCan/model
[LOG 09:48:13.063] Load(Model): Squad/Parts/Command/mk1pod/model
[LOG 09:48:13.087] Load(Model): Squad/Parts/Command/mk2CockpitInline/model
[LOG 09:48:13.122] Load(Model): Squad/Parts/Command/mk2CockpitStandard/model
[LOG 09:48:13.132] Load(Model): Squad/Parts/Command/mk2DroneCore/model
[LOG 09:48:13.140] Load(Model): Squad/Parts/Command/mk2LanderCan/model
[LOG 09:48:13.154] Load(Model): Squad/Parts/Command/mk3CockpitShuttle/model
[LOG 09:48:13.165] Load(Model): Squad/Parts/Command/probeCoreCube/model
[LOG 09:48:13.169] Load(Model): Squad/Parts/Command/probeCoreHex/model
[LOG 09:48:13.173] Load(Model): Squad/Parts/Command/probeCoreOcto/model
[LOG 09:48:13.178] Load(Model): Squad/Parts/Command/probeCoreOcto2/model
[LOG 09:48:13.183] Load(Model): Squad/Parts/Command/probeRoverBody/model
[LOG 09:48:13.188] Load(Model): Squad/Parts/Command/probeStackLarge/model
[LOG 09:48:13.193] Load(Model): Squad/Parts/Command/probeStackSmall/model
[LOG 09:48:13.198] Load(Model): Squad/Parts/Command/probeStackSphere/model
[LOG 09:48:13.203] Load(Model): Squad/Parts/CompoundParts/fuelLine/model
[LOG 09:48:13.209] Load(Model): Squad/Parts/CompoundParts/strutConnector/model
[LOG 09:48:13.214] Load(Model): Squad/Parts/Electrical/1x6ShroudSolarPanels/model
[LOG 09:48:13.219] Load(Model): Squad/Parts/Electrical/1x6SolarPanels/model
[LOG 09:48:13.224] Load(Model): Squad/Parts/Electrical/3x2ShroudSolarPanels/model
[LOG 09:48:13.230] Load(Model): Squad/Parts/Electrical/3x2SolarPanels/model
[LOG 09:48:13.235] Load(Model): Squad/Parts/Electrical/gigantorXlSolarArray/model
[LOG 09:48:13.240] Load(Model): Squad/Parts/Electrical/radialFlatSolarPanel/model
[LOG 09:48:13.244] Load(Model): Squad/Parts/Electrical/RTG/model
[LOG 09:48:13.250] Load(Model): Squad/Parts/Electrical/z-100Battery/model
[LOG 09:48:13.269] Load(Model): Squad/Parts/Electrical/z-1kBattery/model
[LOG 09:48:13.273] Load(Model): Squad/Parts/Electrical/z-200Battery/model
[LOG 09:48:13.276] Load(Model): Squad/Parts/Electrical/z-400Battery/model
[LOG 09:48:13.281] Load(Model): Squad/Parts/Electrical/z-4kBattery/model
[LOG 09:48:13.286] Load(Model): Squad/Parts/Engine/ionEngine/model
[LOG 09:48:13.291] Load(Model): Squad/Parts/Engine/jetEngines/turbineInside
[LOG 09:48:13.297] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize1
[LOG 09:48:13.303] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize2
[LOG 09:48:13.312] Load(Model): Squad/Parts/Engine/jetEngines/turboJet
[LOG 09:48:13.318] Load(Model): Squad/Parts/Engine/jetEngines/turboRamJet
[LOG 09:48:13.326] Load(Model): Squad/Parts/Engine/liquidEngine24-77/model
[LOG 09:48:13.329] Load(Model): Squad/Parts/Engine/liquidEngine48-7S/model
[LOG 09:48:13.335] Load(Model): Squad/Parts/Engine/liquidEngineAerospike/AeroSpike
[LOG 09:48:13.340] Load(Model): Squad/Parts/Engine/liquidEngineLV-1/model
[LOG 09:48:13.343] Load(Model): Squad/Parts/Engine/liquidEngineLV-1R/model
[LOG 09:48:13.349] Load(Model): Squad/Parts/Engine/liquidEngineLV-909/model
[LOG 09:48:13.355] Load(Model): Squad/Parts/Engine/liquidEngineLV-N/model
[LOG 09:48:13.363] Load(Model): Squad/Parts/Engine/liquidEngineLV-T30/model
[LOG 09:48:13.369] Load(Model): Squad/Parts/Engine/liquidEngineLV-T45/model
[LOG 09:48:13.375] Load(Model): Squad/Parts/Engine/liquidEngineMainsail/model
[LOG 09:48:13.383] Load(Model): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 09:48:13.388] Load(Model): Squad/Parts/Engine/liquidEnginePoodle/model
[LOG 09:48:13.394] Load(Model): Squad/Parts/Engine/liquidEngineSkipper/model
[LOG 09:48:13.402] Load(Model): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 09:48:13.409] Load(Model): Squad/Parts/Engine/MassiveSRB/MassiveSRB
[LOG 09:48:13.415] Load(Model): Squad/Parts/Engine/miniJet/SmallJet
[LOG 09:48:13.419] Load(Model): Squad/Parts/Engine/OMSEngine/NewModel
[LOG 09:48:13.424] Load(Model): Squad/Parts/Engine/rapierEngine/rapier
[LOG 09:48:13.431] Load(Model): Squad/Parts/Engine/Size2LFB/Size2LFB
[LOG 09:48:13.439] Load(Model): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngine
[LOG 09:48:13.447] Load(Model): Squad/Parts/Engine/Size3EngineCluster/Size3EngineCluster
[LOG 09:48:13.457] Load(Model): Squad/Parts/Engine/solidBoosterBACC/model
[LOG 09:48:13.461] Load(Model): Squad/Parts/Engine/solidBoosterRT-10/model
[LOG 09:48:13.467] Load(Model): Squad/Parts/Engine/solidBoosterRT-5/SRB_RT5
[LOG 09:48:13.473] Load(Model): Squad/Parts/Engine/solidBoosterSep/model
[LOG 09:48:13.476] Load(Model): Squad/Parts/Engine/vernorEngine/NewModel
[LOG 09:48:13.481] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2
[LOG 09:48:13.485] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2
[LOG 09:48:13.490] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant
[LOG 09:48:13.494] Load(Model): Squad/Parts/FuelTank/adapterTanks/ShuttleAdapter
[LOG 09:48:13.498] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Mk2
[LOG 09:48:13.503] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1
[LOG 09:48:13.509] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant
[LOG 09:48:13.513] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size3-Mk3
[LOG 09:48:13.517] Load(Model): Squad/Parts/FuelTank/fuelTankJumbo-64/model
[LOG 09:48:13.523] Load(Model): Squad/Parts/FuelTank/fuelTankOscarB/model
[LOG 09:48:13.527] Load(Model): Squad/Parts/FuelTank/fuelTankT100/model
[LOG 09:48:13.532] Load(Model): Squad/Parts/FuelTank/fuelTankT200/model
[LOG 09:48:13.541] Load(Model): Squad/Parts/FuelTank/fuelTankT400/model
[LOG 09:48:13.547] Load(Model): Squad/Parts/FuelTank/fuelTankT800/model
[LOG 09:48:13.553] Load(Model): Squad/Parts/FuelTank/fuelTankToroidal/model
[LOG 09:48:13.561] Load(Model): Squad/Parts/FuelTank/fuelTankX200-16/model
[LOG 09:48:13.566] Load(Model): Squad/Parts/FuelTank/fuelTankX200-32/model
[LOG 09:48:13.572] Load(Model): Squad/Parts/FuelTank/fuelTankX200-8/model
[LOG 09:48:13.576] Load(Model): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 09:48:13.580] Load(Model): Squad/Parts/FuelTank/mk2Adapters/bicoupler
[LOG 09:48:13.587] Load(Model): Squad/Parts/FuelTank/mk2Adapters/long
[LOG 09:48:13.591] Load(Model): Squad/Parts/FuelTank/mk2Adapters/standard
[LOG 09:48:13.595] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLFO
[LOG 09:48:13.598] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLiquid
[LOG 09:48:13.603] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLFO
[LOG 09:48:13.608] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLiquid
[LOG 09:48:13.612] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortMono
[LOG 09:48:13.616] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/CREW
[LOG 09:48:13.622] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_100
[LOG 09:48:13.626] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_25
[LOG 09:48:13.630] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_50
[LOG 09:48:13.634] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_100
[LOG 09:48:13.639] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_25
[LOG 09:48:13.643] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_50
[LOG 09:48:13.649] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/MONO
[LOG 09:48:13.653] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR1/model
[LOG 09:48:13.657] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR10/model
[LOG 09:48:13.662] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR25/model
[LOG 09:48:13.667] Load(Model): Squad/Parts/FuelTank/RCSTankRadial/model
[LOG 09:48:13.670] Load(Model): Squad/Parts/FuelTank/RCStankRadialLong/model
[LOG 09:48:13.676] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3LargeTank
[LOG 09:48:13.681] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3MediumTank
[LOG 09:48:13.686] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3SmallTank
[LOG 09:48:13.691] Load(Model): Squad/Parts/FuelTank/xenonTank/model
[LOG 09:48:13.695] Load(Model): Squad/Parts/FuelTank/xenonTankLarge/model
[LOG 09:48:13.701] Load(Model): Squad/Parts/FuelTank/xenonTankRadial/model
[LOG 09:48:13.705] Load(Model): Squad/Parts/Misc/AsteroidDay/HECS2
[LOG 09:48:13.709] Load(Model): Squad/Parts/Misc/AsteroidDay/HighGainAntenna
[LOG 09:48:13.715] Load(Model): Squad/Parts/Misc/AsteroidDay/LgRadialSolar
[LOG 09:48:13.719] Load(Model): Squad/Parts/Misc/PotatoRoid/PotatoRoid
[ERR 09:48:13.726] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:13.727] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:13.734] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:13.735] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[LOG 09:48:13.735] Load(Model): Squad/Parts/Resources/FuelCell/FuelCell
[LOG 09:48:13.738] Load(Model): Squad/Parts/Resources/FuelCell/FuelCellArray
[LOG 09:48:13.746] Load(Model): Squad/Parts/Resources/ISRU/ISRU
[LOG 09:48:13.755] Load(Model): Squad/Parts/Resources/LargeTank/LargeTank
[LOG 09:48:13.761] Load(Model): Squad/Parts/Resources/MiniDrill/MiniDrill
[LOG 09:48:13.771] Load(Model): Squad/Parts/Resources/MiniISRU/MiniISRU
[LOG 09:48:13.777] Load(Model): Squad/Parts/Resources/OrbitalScanner/OrbitalScanner
[LOG 09:48:13.782] Load(Model): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 09:48:13.790] Load(Model): Squad/Parts/Resources/RadialTank/RadialOreTank
[LOG 09:48:13.794] Load(Model): Squad/Parts/Resources/SmallTank/SmallTank
[LOG 09:48:13.798] Load(Model): Squad/Parts/Resources/SurfaceScanner/SurfaceScanner
[LOG 09:48:13.802] Load(Model): Squad/Parts/Resources/SurveyScanner/SurveyScanner
[LOG 09:48:13.807] Load(Model): Squad/Parts/Science/AtmosphereSensor/model
[LOG 09:48:13.811] Load(Model): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 09:48:13.815] Load(Model): Squad/Parts/Science/LargeCrewedLab/large_crewed_lab
[LOG 09:48:13.831] Load(Model): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 09:48:13.837] Load(Model): Squad/Parts/Science/sensorAccelerometer/model
[LOG 09:48:13.840] Load(Model): Squad/Parts/Science/sensorBarometer/model
[LOG 09:48:13.844] Load(Model): Squad/Parts/Science/sensorGravimeter/model
[LOG 09:48:13.849] Load(Model): Squad/Parts/Science/sensorThermometer/model
[LOG 09:48:13.852] Load(Model): Squad/Parts/Structural/adapterLargeSmallBi/model
[LOG 09:48:13.857] Load(Model): Squad/Parts/Structural/adapterLargeSmallQuad/model
[LOG 09:48:13.862] Load(Model): Squad/Parts/Structural/adapterLargeSmallTri/model
[LOG 09:48:13.866] Load(Model): Squad/Parts/Structural/adapterSmallMiniShort/model
[LOG 09:48:13.870] Load(Model): Squad/Parts/Structural/adapterSmallMiniTall/model
[LOG 09:48:13.875] Load(Model): Squad/Parts/Structural/mk1Parts/Fuselage
[LOG 09:48:13.880] Load(Model): Squad/Parts/Structural/mk1Parts/IntakeFuselage
[LOG 09:48:13.885] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle1
[LOG 09:48:13.889] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle2
[LOG 09:48:13.894] Load(Model): Squad/Parts/Structural/mk1Parts/Structural
[LOG 09:48:13.899] Load(Model): Squad/Parts/Structural/mk1Parts/StructuralHollow
[LOG 09:48:13.902] Load(Model): Squad/Parts/Structural/Size3Decoupler/size3Decoupler
[LOG 09:48:13.908] Load(Model): Squad/Parts/Structural/Size3To2Adapter/Size3Adapter
[LOG 09:48:13.913] Load(Model): Squad/Parts/Structural/stationHub/model
[LOG 09:48:13.919] Load(Model): Squad/Parts/Structural/structuralIBeam200/model
[LOG 09:48:13.921] Load(Model): Squad/Parts/Structural/structuralIBeam200Pocket/model
[LOG 09:48:13.925] Load(Model): Squad/Parts/Structural/structuralIBeam650/model
[LOG 09:48:13.930] Load(Model): Squad/Parts/Structural/structuralMicronode/model
[LOG 09:48:13.934] Load(Model): Squad/Parts/Structural/structuralPanel1x1/model
[LOG 09:48:13.938] Load(Model): Squad/Parts/Structural/structuralPanel2x2/model
[LOG 09:48:13.942] Load(Model): Squad/Parts/Structural/structuralPylons/PylonBig
[LOG 09:48:13.948] Load(Model): Squad/Parts/Structural/structuralPylons/PylonSmall
[LOG 09:48:13.951] Load(Model): Squad/Parts/Structural/strutCubicOcto/model
[LOG 09:48:13.956] Load(Model): Squad/Parts/Structural/strutOcto/model
[LOG 09:48:13.960] Load(Model): Squad/Parts/Structural/trussGirderAdapter/model
[LOG 09:48:13.965] Load(Model): Squad/Parts/Structural/trussGirderL/model
[LOG 09:48:13.970] Load(Model): Squad/Parts/Structural/trussGirderXL/model
[LOG 09:48:13.974] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge
[LOG 09:48:13.999] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadMed
[LOG 09:48:14.010] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall
[LOG 09:48:14.020] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelEdge
[LOG 09:48:14.023] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelLg
[LOG 09:48:14.028] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelSm
[LOG 09:48:14.032] Load(Model): Squad/Parts/Utility/commDish88-88/model
[LOG 09:48:14.072] Load(Model): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 09:48:14.079] Load(Model): Squad/Parts/Utility/commsDish16/model
[LOG 09:48:14.083] Load(Model): Squad/Parts/Utility/decouplerRadialHDM/model
[LOG 09:48:14.087] Load(Model): Squad/Parts/Utility/decouplerRadialTT-38K/model
[LOG 09:48:14.091] Load(Model): Squad/Parts/Utility/decouplerRadialTT-70/model
[LOG 09:48:14.095] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-18D/model
[LOG 09:48:14.100] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-2C/model
[LOG 09:48:14.104] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-XL/model
[LOG 09:48:14.109] Load(Model): Squad/Parts/Utility/decouplerStack2m/model
[LOG 09:48:14.114] Load(Model): Squad/Parts/Utility/decouplerStackTR-18A/model
[LOG 09:48:14.118] Load(Model): Squad/Parts/Utility/decouplerStackTR-2V/model
[LOG 09:48:14.122] Load(Model): Squad/Parts/Utility/dockingPort/model
[LOG 09:48:14.128] Load(Model): Squad/Parts/Utility/dockingPortInline/model
[LOG 09:48:14.135] Load(Model): Squad/Parts/Utility/dockingPortJr/model
[LOG 09:48:14.139] Load(Model): Squad/Parts/Utility/dockingPortShielded/model
[LOG 09:48:14.146] Load(Model): Squad/Parts/Utility/dockingPortSr/model
[LOG 09:48:14.151] Load(Model): Squad/Parts/Utility/GrapplingDevice/GrapplingArm
[LOG 09:48:14.178] Load(Model): Squad/Parts/Utility/ladderRadial/model
[LOG 09:48:14.182] Load(Model): Squad/Parts/Utility/ladderTelescopic/model
[LOG 09:48:14.189] Load(Model): Squad/Parts/Utility/ladderTelescopicBay/model
[LOG 09:48:14.202] Load(Model): Squad/Parts/Utility/landingLegLT-1/model
[LOG 09:48:14.208] Load(Model): Squad/Parts/Utility/landingLegLT-2/model
[LOG 09:48:14.213] Load(Model): Squad/Parts/Utility/landingLegLT-5/model
[ERR 09:48:14.217] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.218] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.220] Load(Model): Squad/Parts/Utility/largeAdapter/model
[LOG 09:48:14.224] Load(Model): Squad/Parts/Utility/largeAdapterShort/model
[LOG 09:48:14.228] Load(Model): Squad/Parts/Utility/launchClamp1/model
[LOG 09:48:14.233] Load(Model): Squad/Parts/Utility/launchEscapeSystem/LaunchEscapeSystem
[LOG 09:48:14.241] Load(Model): Squad/Parts/Utility/linearRCS/model
[LOG 09:48:14.245] Load(Model): Squad/Parts/Utility/mk2CargoBay/BayLarge
[LOG 09:48:14.251] Load(Model): Squad/Parts/Utility/mk2CargoBay/BaySmall
[LOG 09:48:14.257] Load(Model): Squad/Parts/Utility/mk2CrewCabin/model
[LOG 09:48:14.262] Load(Model): Squad/Parts/Utility/mk2DockingPort/model
[LOG 09:48:14.269] Load(Model): Squad/Parts/Utility/mk3CargoBay/long
[LOG 09:48:14.277] Load(Model): Squad/Parts/Utility/mk3CargoBay/medium
[LOG 09:48:14.284] Load(Model): Squad/Parts/Utility/mk3CargoBay/ramp
[LOG 09:48:14.296] Load(Model): Squad/Parts/Utility/mk3CargoBay/short
[LOG 09:48:14.302] Load(Model): Squad/Parts/Utility/parachuteMk1/model
[LOG 09:48:14.349] Load(Model): Squad/Parts/Utility/parachuteMk12-R/model
[LOG 09:48:14.354] Load(Model): Squad/Parts/Utility/parachuteMk16-XL/model
[LOG 09:48:14.360] Load(Model): Squad/Parts/Utility/parachuteMk2-R/model
[LOG 09:48:14.364] Load(Model): Squad/Parts/Utility/parachuteMk25/model
[LOG 09:48:14.370] Load(Model): Squad/Parts/Utility/radialAttachmentPoint/model
[LOG 09:48:14.375] Load(Model): Squad/Parts/Utility/rcsBlockRV-105/model
[LOG 09:48:14.378] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_125
[LOG 09:48:14.389] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_250
[LOG 09:48:14.400] Load(Model): Squad/Parts/Utility/spotLightMk1/model
[LOG 09:48:14.405] Load(Model): Squad/Parts/Utility/spotLightMk2/model
[LOG 09:48:14.432] Load(Model): Squad/Parts/Utility/stackBiCoupler/model
[LOG 09:48:14.437] Load(Model): Squad/Parts/Utility/stackQuadCoupler/model
[LOG 09:48:14.441] Load(Model): Squad/Parts/Utility/stackTriCoupler/model
[LOG 09:48:14.446] Load(Model): Squad/Parts/Wheel/LandingGear/GearExtraLarge
[ERR 09:48:14.457] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.457] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.465] Load(Model): Squad/Parts/Wheel/LandingGear/GearFixed
[ERR 09:48:14.468] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.468] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.470] Load(Model): Squad/Parts/Wheel/LandingGear/GearFree
[ERR 09:48:14.471] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.472] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.475] Load(Model): Squad/Parts/Wheel/LandingGear/GearLarge
[ERR 09:48:14.477] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.477] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.483] Load(Model): Squad/Parts/Wheel/LandingGear/GearMedium
[ERR 09:48:14.488] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.489] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.490] Load(Model): Squad/Parts/Wheel/LandingGear/GearSmall
[ERR 09:48:14.492] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.492] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.497] Load(Model): Squad/Parts/Wheel/roverWheelM1/model
[ERR 09:48:14.502] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.503] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.504] Load(Model): Squad/Parts/Wheel/roverWheelS2/model
[ERR 09:48:14.506] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.506] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.511] Load(Model): Squad/Parts/Wheel/roverWheelTR-2L/model
[ERR 09:48:14.517] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.517] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.518] Load(Model): Squad/Parts/Wheel/roverWheelXL3/model
[ERR 09:48:14.532] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.532] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.535] Load(Model): Squad/Props/AltimeterThreeHands/model
[LOG 09:48:14.541] Load(Model): Squad/Props/AtmosphereDepth/model
[LOG 09:48:14.545] Load(Model): Squad/Props/AxisIndicator/model
[LOG 09:48:14.550] Load(Model): Squad/Props/ButtonSquare/model
[LOG 09:48:14.554] Load(Model): Squad/Props/circularButton/model
[LOG 09:48:14.558] Load(Model): Squad/Props/Compass/model
[LOG 09:48:14.564] Load(Model): Squad/Props/directionalKnob/model
[LOG 09:48:14.568] Load(Model): Squad/Props/directionalKnob2/model
[LOG 09:48:14.572] Load(Model): Squad/Props/IndicatorPanel/model
[LOG 09:48:14.577] Load(Model): Squad/Props/IVANavBall/model
[LOG 09:48:14.590] Load(Model): Squad/Props/ledPanelSpeed/model
[LOG 09:48:14.594] Load(Model): Squad/Props/Monitor/MonitorDockingMode
[LOG 09:48:14.597] Load(Model): Squad/Props/NavBall/model
[LOG 09:48:14.603] Load(Model): Squad/Props/PropsGeneric/Button_DockingMode
[LOG 09:48:14.605] Load(Model): Squad/Props/PropsGeneric/CargoBagA
[LOG 09:48:14.632] Load(Model): Squad/Props/PropsGeneric/CargoBagB
[LOG 09:48:14.636] Load(Model): Squad/Props/PropsGeneric/CargoBagC
[LOG 09:48:14.639] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane
[LOG 09:48:14.642] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Curve90
[LOG 09:48:14.647] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Frame
[LOG 09:48:14.651] Load(Model): Squad/Props/PropsGeneric/Seat_Passenger
[LOG 09:48:14.656] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot
[LOG 09:48:14.660] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot_Helmet
[LOG 09:48:14.665] Load(Model): Squad/Props/PropsGeneric/SideStick
[LOG 09:48:14.669] Load(Model): Squad/Props/pullSwitch/model
[LOG 09:48:14.674] Load(Model): Squad/Props/radarAltitude/model
[LOG 09:48:14.678] Load(Model): Squad/Props/squareButton/model
[LOG 09:48:14.684] Load(Model): Squad/Props/standingSwitch/model
[LOG 09:48:14.688] Load(Model): Squad/Props/switch/model
[LOG 09:48:14.692] Load(Model): Squad/Props/switchGuard/model
[LOG 09:48:14.697] Load(Model): Squad/Props/switchWithGuards/model
[LOG 09:48:14.702] Load(Model): Squad/Props/throttle/model
[LOG 09:48:14.706] Load(Model): Squad/Props/VSI/model
[LOG 09:48:14.711] Load(Model): Squad/Spaces/crewCabinInternals/model
[LOG 09:48:14.729] Load(Model): Squad/Spaces/cupolaInternal/model
[LOG 09:48:14.739] Load(Model): Squad/Spaces/GenericSpace1/model
[LOG 09:48:14.754] Load(Model): Squad/Spaces/GenericSpace3/model
[LOG 09:48:14.778] Load(Model): Squad/Spaces/landerCabinInternals/model
[LOG 09:48:14.792] Load(Model): Squad/Spaces/landerCabinSmallInternal/model
[LOG 09:48:14.800] Load(Model): Squad/Spaces/LargeCrewedLabInternals/Large_Crewed_lab_Int
[LOG 09:48:14.821] Load(Model): Squad/Spaces/mk1CabinInternal/mk1cabin
[LOG 09:48:14.853] Load(Model): Squad/Spaces/mk1CockpitInternal/Mk1StandardIVA
[LOG 09:48:14.860] Load(Model): Squad/Spaces/mk1InlineInternal/Mk1InlineIVA
[LOG 09:48:14.869] Load(Model): Squad/Spaces/mk1PodCockpit/model
[LOG 09:48:14.883] Load(Model): Squad/Spaces/mk2CockpitStandardInternal/model
[LOG 09:48:14.894] Load(Model): Squad/Spaces/Mk2CrewCabinInternal/MK2_CrewCab_Int
[LOG 09:48:14.912] Load(Model): Squad/Spaces/mk2InlineInternal/mk2InlineIVA
[LOG 09:48:14.932] Load(Model): Squad/Spaces/MK3CockpitInternal/MK3_Cockpit_Int
[LOG 09:48:14.944] Load(Model): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 09:48:14.987] Load(Model): Squad/Spaces/OverlayMasks/CupolaMask
[LOG 09:48:14.992] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerBorder
[LOG 09:48:15.002] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerMask
[LOG 09:48:15.006] Load(Model): Squad/Spaces/OverlayMasks/LargeLabBorder
[LOG 09:48:15.010] Load(Model): Squad/Spaces/OverlayMasks/LargeLabMask
[LOG 09:48:15.013] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinBorder
[LOG 09:48:15.018] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinMask
[LOG 09:48:15.022] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask
[LOG 09:48:15.027] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask2
[LOG 09:48:15.032] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder2
[LOG 09:48:15.041] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder3
[LOG 09:48:15.045] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask
[LOG 09:48:15.050] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask2
[LOG 09:48:15.055] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask3
[LOG 09:48:15.059] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinBorder
[LOG 09:48:15.064] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinMask
[LOG 09:48:15.067] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineBorder
[LOG 09:48:15.072] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineMask
[LOG 09:48:15.077] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardBorder
[LOG 09:48:15.081] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardMask
[LOG 09:48:15.086] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinBorder
[LOG 09:48:15.091] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask
[LOG 09:48:15.095] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask2
[LOG 09:48:15.100] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleBorder
[LOG 09:48:15.104] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleMask
[LOG 09:48:15.108] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderBorder
[LOG 09:48:15.112] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderMask
[LOG 09:48:15.117] Load(Model): Squad/Spaces/OverlayMasks/Size1PodBorder
[LOG 09:48:15.121] Load(Model): Squad/Spaces/OverlayMasks/Size1PodMask
[LOG 09:48:15.126] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderBorder
[LOG 09:48:15.131] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderMask
[LOG 09:48:15.135] Load(Model): Squad/Spaces/OverlayMasks/Size2PodBorder
[LOG 09:48:15.140] Load(Model): Squad/Spaces/OverlayMasks/Size2PodMask
[LOG 09:48:15.144] Load(Model): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 09:48:15.150] Load(Model): Squad/Spaces/PodCockpit/model
[LOG 09:48:15.181] Loading Asset Bundle Definitions
[LOG 09:48:15.185] AssetLoader: Loading bundle definitions
[LOG 09:48:15.554] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\squadcore.ksp'
[LOG 09:48:15.617] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia.ksp'
[LOG 09:48:15.714] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraft.ksp'
[LOG 09:48:15.819] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasics.ksp'
[LOG 09:48:15.914] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance.ksp'
[LOG 09:48:16.014] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance2.ksp'
[LOG 09:48:16.089] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicscol.ksp'
[LOG 09:48:16.115] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrol.ksp'
[LOG 09:48:16.211] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrolsurfaces.ksp'
[LOG 09:48:16.303] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsdrag.ksp'
[LOG 09:48:16.390] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsengines.ksp'
[LOG 09:48:16.477] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsforces.ksp'
[LOG 09:48:16.556] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsintakes.ksp'
[LOG 09:48:16.647] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicslandinggear.ksp'
[LOG 09:48:16.673] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicslift.ksp'
[LOG 09:48:16.757] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_career.ksp'
[LOG 09:48:16.833] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicscontracts.ksp'
[LOG 09:48:16.920] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicscrew.ksp'
[LOG 09:48:16.952] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicscurrencies.ksp'
[LOG 09:48:16.988] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicsexperience.ksp'
[LOG 09:48:17.081] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicsfacilities.ksp'
[LOG 09:48:17.168] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicsstrategies.ksp'
[LOG 09:48:17.186] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicstechnology.ksp'
[LOG 09:48:17.209] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-ac.ksp'
[LOG 09:48:17.300] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-admin.ksp'
[LOG 09:48:17.323] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-ksc.ksp'
[LOG 09:48:17.399] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-mc.ksp'
[LOG 09:48:17.466] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-sciencearchives.ksp'
[LOG 09:48:17.577] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-techtree.ksp'
[LOG 09:48:17.670] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-ts.ksp'
[LOG 09:48:17.756] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui.ksp'
[LOG 09:48:17.834] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-actiongroups.ksp'
[LOG 09:48:17.933] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-applauncher.ksp'
[LOG 09:48:18.050] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-crew.ksp'
[LOG 09:48:18.138] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-engineersreport.ksp'
[LOG 09:48:18.161] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-gizmos.ksp'
[LOG 09:48:18.258] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-infos.ksp'
[LOG 09:48:18.327] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-partdetails.ksp'
[LOG 09:48:18.428] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-parts.ksp'
[LOG 09:48:18.454] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-symmetry.ksp'
[LOG 09:48:18.480] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-vesseldetails.ksp'
[LOG 09:48:18.568] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui.ksp'
[LOG 09:48:18.651] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-dockingmode.ksp'
[LOG 09:48:18.673] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-editor.ksp'
[LOG 09:48:18.744] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-editorgizmos.ksp'
[LOG 09:48:18.821] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-eva.ksp'
[LOG 09:48:18.839] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-flight.ksp'
[LOG 09:48:18.857] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-flightactivities.ksp'
[LOG 09:48:18.933] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-flightdirections.ksp'
[LOG 09:48:18.950] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-general.ksp'
[LOG 09:48:18.968] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-mapandtime.ksp'
[LOG 09:48:19.039] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-mouseconstruction.ksp'
[LOG 09:48:19.139] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-mouseflight.ksp'
[LOG 09:48:19.166] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-rcs.ksp'
[LOG 09:48:19.256] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls.ksp'
[LOG 09:48:19.379] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_eastereggs.ksp'
[LOG 09:48:19.461] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-ac.ksp'
[LOG 09:48:19.557] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-admin.ksp'
[LOG 09:48:19.636] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-context.ksp'
[LOG 09:48:19.715] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-ksc.ksp'
[LOG 09:48:19.829] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-launchpad.ksp'
[LOG 09:48:19.917] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-mc.ksp'
[LOG 09:48:19.996] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-randd.ksp'
[LOG 09:48:20.071] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-runway.ksp'
[LOG 09:48:20.151] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-sph.ksp'
[LOG 09:48:20.270] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-ts.ksp'
[LOG 09:48:20.297] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-vab.ksp'
[LOG 09:48:20.320] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-altimeter.ksp'
[LOG 09:48:20.396] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-applauncher.ksp'
[LOG 09:48:20.477] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-evaactivities.ksp'
[LOG 09:48:20.556] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-modecontrol.ksp'
[LOG 09:48:20.638] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-navball.ksp'
[LOG 09:48:20.756] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-portraits.ksp'
[LOG 09:48:20.891] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-staging.ksp'
[LOG 09:48:20.918] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-timeandaction.ksp'
[LOG 09:48:20.963] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui.ksp'
[LOG 09:48:21.041] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heat.ksp'
[LOG 09:48:21.068] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatactiveradiators.ksp'
[LOG 09:48:21.091] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatcore.ksp'
[LOG 09:48:21.121] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatengines.ksp'
[LOG 09:48:21.205] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatflow.ksp'
[LOG 09:48:21.227] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatpart.ksp'
[LOG 09:48:21.249] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatpassiveradiators.ksp'
[LOG 09:48:21.338] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatshields.ksp'
[LOG 09:48:21.441] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_locations.ksp'
[LOG 09:48:21.462] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_manual.ksp'
[LOG 09:48:21.483] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui-mannodes.ksp'
[LOG 09:48:21.555] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes.ksp'
[LOG 09:48:21.634] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes2.ksp'
[LOG 09:48:21.657] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui.ksp'
[LOG 09:48:21.735] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-atmosphere.ksp'
[LOG 09:48:21.755] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingbackdown.ksp'
[LOG 09:48:21.840] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingupthere.ksp'
[LOG 09:48:21.868] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-gravityturn.ksp'
[LOG 09:48:21.949] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-orbits.ksp'
[LOG 09:48:22.050] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-stayingupthere.ksp'
[LOG 09:48:22.124] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics.ksp'
[LOG 09:48:22.211] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-appe.ksp'
[LOG 09:48:22.291] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-dirandinc.ksp'
[LOG 09:48:22.376] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-directions.ksp'
[LOG 09:48:22.394] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-eccentricity.ksp'
[LOG 09:48:22.470] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions.ksp'
[LOG 09:48:22.488] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-adjustinginclination.ksp'
[LOG 09:48:22.555] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-deltav.ksp'
[LOG 09:48:22.625] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-efficiency.ksp'
[LOG 09:48:22.651] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer.ksp'
[LOG 09:48:22.743] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer2.ksp'
[LOG 09:48:22.817] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-orbittypes.ksp'
[LOG 09:48:22.844] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-radandantirad.ksp'
[LOG 09:48:22.922] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-shapingup.ksp'
[LOG 09:48:23.001] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers.ksp'
[LOG 09:48:23.105] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-dres.ksp'
[LOG 09:48:23.218] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-duna.ksp'
[LOG 09:48:23.344] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-eeloo.ksp'
[LOG 09:48:23.371] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-eve.ksp'
[LOG 09:48:23.454] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-jool.ksp'
[LOG 09:48:23.480] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-kerbin.ksp'
[LOG 09:48:23.563] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-moho.ksp'
[LOG 09:48:23.641] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-sun.ksp'
[LOG 09:48:23.723] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-system.ksp'
[LOG 09:48:23.837] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-asteroidmining.ksp'
[LOG 09:48:23.867] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-conversionmanagement.ksp'
[LOG 09:48:23.941] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-drilling.ksp'
[LOG 09:48:24.055] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-findingit.ksp'
[LOG 09:48:24.081] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-findingit2.ksp'
[LOG 09:48:24.176] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-storageandconversion.ksp'
[LOG 09:48:24.203] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources.ksp'
[LOG 09:48:24.290] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketry.ksp'
[LOG 09:48:24.394] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketryadvanced-fairings.ksp'
[LOG 09:48:24.472] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketryadvanced-girders.ksp'
[LOG 09:48:24.573] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketryadvanced.ksp'
[LOG 09:48:24.685] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasics.ksp'
[LOG 09:48:24.825] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsaero.ksp'
[LOG 09:48:24.899] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicscentered.ksp'
[LOG 09:48:24.973] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicschutes.ksp'
[LOG 09:48:25.061] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicscontrol.ksp'
[LOG 09:48:25.135] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsecrecharging.ksp'
[LOG 09:48:25.162] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsengines.ksp'
[LOG 09:48:25.248] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsforces.ksp'
[LOG 09:48:25.327] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicshatchesandladders.ksp'
[LOG 09:48:25.440] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsresources.ksp'
[LOG 09:48:25.562] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsservicecontainers.ksp'
[LOG 09:48:25.636] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsstability.ksp'
[LOG 09:48:25.750] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsstabilityassist.ksp'
[LOG 09:48:25.776] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsstaging.ksp'
[LOG 09:48:25.803] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicssymmetry.ksp'
[LOG 09:48:25.898] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_science.ksp'
[LOG 09:48:25.972] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_sciencedata.ksp'
[LOG 09:48:25.999] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_scienceexperiments.ksp'
[LOG 09:48:26.095] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_sciencelab.ksp'
[LOG 09:48:26.387] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_sciencetransmitted.ksp'
[LOG 09:48:26.466] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_spacetravel.ksp'
[LOG 09:48:26.473] AssetLoader: Finished loading. 152 bundle definitions loaded.
[LOG 09:48:26.474] Config(AGENT) REPOSoftTech/Agencies/Agents/REPOSoftTech
[LOG 09:48:26.476] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONrcsBlock45/IONRCSBlock45
[LOG 09:48:26.477] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONrcsBlock/IONRCSBlock
[LOG 09:48:26.478] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/part/LinearIonRCS
[LOG 09:48:26.479] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/part/LinearPPTRCS
[LOG 09:48:26.480] Config(RESOURCE_DEFINITION) REPOSoftTech/IONRCS/Resources/IONRCSResources/Teflon
[LOG 09:48:26.481] Config(AGENT) Squad/Agencies/Agents/C7 Aerospace Division
[LOG 09:48:26.481] Config(AGENT) Squad/Agencies/Agents/Dinkelstein Kerman's Construction Emporium
[LOG 09:48:26.482] Config(AGENT) Squad/Agencies/Agents/Experimental Engineering Group
[LOG 09:48:26.483] Config(AGENT) Squad/Agencies/Agents/FLOOYD Dynamics Research Labs
[LOG 09:48:26.484] Config(AGENT) Squad/Agencies/Agents/Goliath National Products
[LOG 09:48:26.485] Config(AGENT) Squad/Agencies/Agents/Integrated Integrals
[LOG 09:48:26.486] Config(AGENT) Squad/Agencies/Agents/Ionic Symphonic Protonic Electronics
[LOG 09:48:26.487] Config(AGENT) Squad/Agencies/Agents/Jebediah Kerman's Junkyard and Spacecraft Parts Co
[LOG 09:48:26.487] Config(AGENT) Squad/Agencies/Agents/Kerbal Motion LLC
[LOG 09:48:26.488] Config(AGENT) Squad/Agencies/Agents/Kerbin World-Firsts Record-Keeping Society
[LOG 09:48:26.488] Config(AGENT) Squad/Agencies/Agents/Kerbodyne
[LOG 09:48:26.489] Config(AGENT) Squad/Agencies/Agents/Kerlington Model Rockets and Paper Products Inc
[LOG 09:48:26.489] Config(AGENT) Squad/Agencies/Agents/Maxo Construction Toys
[LOG 09:48:26.490] Config(AGENT) Squad/Agencies/Agents/Moving Parts Experts Group
[LOG 09:48:26.490] Config(AGENT) Squad/Agencies/Agents/O.M.B. Demolition Enterprises
[LOG 09:48:26.491] Config(AGENT) Squad/Agencies/Agents/Periapsis Rocket Supplies Co
[LOG 09:48:26.491] Config(AGENT) Squad/Agencies/Agents/Probodobodyne Inc
[LOG 09:48:26.492] Config(AGENT) Squad/Agencies/Agents/Research & Development Department
[LOG 09:48:26.492] Config(AGENT) Squad/Agencies/Agents/Reaction Systems Ltd
[LOG 09:48:26.492] Config(AGENT) Squad/Agencies/Agents/Rockomax Conglomerate
[LOG 09:48:26.493] Config(AGENT) Squad/Agencies/Agents/Rokea Inc
[LOG 09:48:26.493] Config(AGENT) Squad/Agencies/Agents/Sean's Cannery
[LOG 09:48:26.494] Config(AGENT) Squad/Agencies/Agents/STEADLER Engineering Corps
[LOG 09:48:26.494] Config(AGENT) Squad/Agencies/Agents/StrutCo
[LOG 09:48:26.495] Config(AGENT) Squad/Agencies/Agents/Vac-Co Advanced Suction Systems
[LOG 09:48:26.495] Config(AGENT) Squad/Agencies/Agents/WinterOwl Aircraft Emporium
[LOG 09:48:26.496] Config(AGENT) Squad/Agencies/Agents/Zaltonic Electronics
[LOG 09:48:26.496] Config(Contracts) Squad/Contracts/Contracts/Contracts
[LOG 09:48:26.497] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Pilot
[LOG 09:48:26.497] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Engineer
[LOG 09:48:26.498] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Scientist
[LOG 09:48:26.498] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Tourist
[LOG 09:48:26.499] Config(CUSTOM_PARTLIST_CATEGORY) Squad/PartList/PartCategories/CUSTOM_PARTLIST_CATEGORY
[LOG 09:48:26.499] Config(PART) Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone
[LOG 09:48:26.500] Config(PART) Squad/Parts/Aero/airbrake/Airbrake/airbrake1
[LOG 09:48:26.500] Config(PART) Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop
[LOG 09:48:26.501] Config(PART) Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf
[LOG 09:48:26.501] Config(PART) Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing
[LOG 09:48:26.502] Config(PART) Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin
[LOG 09:48:26.502] Config(PART) Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard
[LOG 09:48:26.503] Config(PART) Squad/Parts/Aero/airplaneFins/standardCanard/CanardController
[LOG 09:48:26.503] Config(PART) Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing
[LOG 09:48:26.504] Config(PART) Squad/Parts/Aero/airplaneFins/tailfin/tailfin
[LOG 09:48:26.504] Config(PART) Squad/Parts/Aero/basicFin/basicFin/basicFin
[LOG 09:48:26.505] Config(PART) Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake
[LOG 09:48:26.505] Config(PART) Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake
[LOG 09:48:26.506] Config(PART) Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone
[LOG 09:48:26.506] Config(PART) Squad/Parts/Aero/cones/ConeA/pointyNoseConeA
[LOG 09:48:26.507] Config(PART) Squad/Parts/Aero/cones/ConeB/pointyNoseConeB
[LOG 09:48:26.507] Config(PART) Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter
[LOG 09:48:26.508] Config(PART) Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone
[LOG 09:48:26.508] Config(PART) Squad/Parts/Aero/cones/tailConnectorA/airplaneTail
[LOG 09:48:26.509] Config(PART) Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB
[LOG 09:48:26.509] Config(PART) Squad/Parts/Aero/fairings/fairingSize1/fairingSize1
[LOG 09:48:26.510] Config(PART) Squad/Parts/Aero/fairings/fairingSize2/fairingSize2
[LOG 09:48:26.510] Config(PART) Squad/Parts/Aero/fairings/fairingSize3/fairingSize3
[LOG 09:48:26.511] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1
[LOG 09:48:26.511] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2
[LOG 09:48:26.512] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3
[LOG 09:48:26.512] Config(PART) Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield
[LOG 09:48:26.513] Config(PART) Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong
[LOG 09:48:26.513] Config(PART) Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake
[LOG 09:48:26.514] Config(PART) Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone
[LOG 09:48:26.514] Config(PART) Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake
[LOG 09:48:26.515] Config(PART) Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta
[LOG 09:48:26.515] Config(PART) Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1
[LOG 09:48:26.516] Config(PART) Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2
[LOG 09:48:26.516] Config(PART) Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder
[LOG 09:48:26.517] Config(PART) Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake
[LOG 09:48:26.517] Config(PART) Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet
[LOG 09:48:26.518] Config(PART) Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet
[LOG 09:48:26.518] Config(PART) Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3
[LOG 09:48:26.519] Config(PART) Squad/Parts/Aero/wings/connector1/wingConnector
[LOG 09:48:26.519] Config(PART) Squad/Parts/Aero/wings/connector2/wingConnector2
[LOG 09:48:26.520] Config(PART) Squad/Parts/Aero/wings/connector3/wingConnector3
[LOG 09:48:26.520] Config(PART) Squad/Parts/Aero/wings/connector4/wingConnector4
[LOG 09:48:26.521] Config(PART) Squad/Parts/Aero/wings/connector5/wingConnector5
[LOG 09:48:26.521] Config(PART) Squad/Parts/Aero/wings/delta/deltaWing
[LOG 09:48:26.522] Config(PART) Squad/Parts/Aero/wings/delta_small/delta_small
[LOG 09:48:26.522] Config(PART) Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf
[LOG 09:48:26.523] Config(PART) Squad/Parts/Aero/wings/elevon2/elevon2
[LOG 09:48:26.523] Config(PART) Squad/Parts/Aero/wings/elevon3/elevon3
[LOG 09:48:26.524] Config(PART) Squad/Parts/Aero/wings/elevon4/smallCtrlSrf
[LOG 09:48:26.524] Config(PART) Squad/Parts/Aero/wings/elevon5/elevon5
[LOG 09:48:26.525] Config(PART) Squad/Parts/Aero/wings/strake/wingStrake
[LOG 09:48:26.525] Config(PART) Squad/Parts/Aero/wings/structural1/structuralWing
[LOG 09:48:26.525] Config(PART) Squad/Parts/Aero/wings/structural2/structuralWing2
[LOG 09:48:26.526] Config(PART) Squad/Parts/Aero/wings/structural3/structuralWing3
[LOG 09:48:26.526] Config(PART) Squad/Parts/Aero/wings/structural4/structuralWing4
[LOG 09:48:26.527] Config(PART) Squad/Parts/Aero/wings/swept1/sweptWing1
[LOG 09:48:26.527] Config(PART) Squad/Parts/Aero/wings/swept2/sweptWing2
[LOG 09:48:26.528] Config(PART) Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2
[LOG 09:48:26.528] Config(PART) Squad/Parts/Command/cupola/cupola/cupola
[LOG 09:48:26.529] Config(PART) Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd
[LOG 09:48:26.529] Config(PART) Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin
[LOG 09:48:26.530] Config(PART) Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule
[LOG 09:48:26.531] Config(PART) Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule
[LOG 09:48:26.531] Config(PART) Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod
[LOG 09:48:26.532] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit
[LOG 09:48:26.532] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin
[LOG 09:48:26.533] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit
[LOG 09:48:26.533] Config(PART) Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall
[LOG 09:48:26.534] Config(PART) Squad/Parts/Command/mk1pod/mk1Pod/mk1pod
[LOG 09:48:26.534] Config(PART) Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline
[LOG 09:48:26.535] Config(PART) Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard
[LOG 09:48:26.535] Config(PART) Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore
[LOG 09:48:26.536] Config(PART) Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin
[LOG 09:48:26.536] Config(PART) Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle
[LOG 09:48:26.537] Config(PART) Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube
[LOG 09:48:26.537] Config(PART) Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex
[LOG 09:48:26.538] Config(PART) Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto
[LOG 09:48:26.538] Config(PART) Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2
[LOG 09:48:26.539] Config(PART) Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody
[LOG 09:48:26.539] Config(PART) Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge
[LOG 09:48:26.540] Config(PART) Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall
[LOG 09:48:26.540] Config(PART) Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere
[LOG 09:48:26.541] Config(PART) Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine
[LOG 09:48:26.541] Config(PART) Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector
[LOG 09:48:26.542] Config(PART) Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2
[LOG 09:48:26.543] Config(PART) Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4
[LOG 09:48:26.543] Config(PART) Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1
[LOG 09:48:26.544] Config(PART) Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3
[LOG 09:48:26.544] Config(PART) Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel
[LOG 09:48:26.545] Config(PART) Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5
[LOG 09:48:26.545] Config(PART) Squad/Parts/Electrical/RTG/RTG/rtg
[LOG 09:48:26.546] Config(PART) Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack
[LOG 09:48:26.546] Config(PART) Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank
[LOG 09:48:26.548] Config(PART) Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini
[LOG 09:48:26.548] Config(PART) Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack
[LOG 09:48:26.549] Config(PART) Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge
[LOG 09:48:26.549] Config(PART) Squad/Parts/Engine/ionEngine/ionEngine/ionEngine
[LOG 09:48:26.550] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet
[LOG 09:48:26.550] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine
[LOG 09:48:26.551] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2
[LOG 09:48:26.551] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine
[LOG 09:48:26.552] Config(PART) Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine
[LOG 09:48:26.553] Config(PART) Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini
[LOG 09:48:26.553] Config(PART) Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike
[LOG 09:48:26.554] Config(PART) Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine
[LOG 09:48:26.554] Config(PART) Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini
[LOG 09:48:26.555] Config(PART) Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3
[LOG 09:48:26.555] Config(PART) Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine
[LOG 09:48:26.556] Config(PART) Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine
[LOG 09:48:26.556] Config(PART) Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2
[LOG 09:48:26.557] Config(PART) Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2
[LOG 09:48:26.557] Config(PART) Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2
[LOG 09:48:26.558] Config(PART) Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2
[LOG 09:48:26.559] Config(PART) Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper
[LOG 09:48:26.559] Config(PART) Squad/Parts/Engine/liquidEngineSSME/SSME/SSME
[LOG 09:48:26.560] Config(PART) Squad/Parts/Engine/MassiveSRB/part/MassiveBooster
[LOG 09:48:26.560] Config(PART) Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine
[LOG 09:48:26.561] Config(PART) Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine
[LOG 09:48:26.561] Config(PART) Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER
[LOG 09:48:26.562] Config(PART) Squad/Parts/Engine/Size2LFB/part/Size2LFB
[LOG 09:48:26.562] Config(PART) Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine
[LOG 09:48:26.563] Config(PART) Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster
[LOG 09:48:26.563] Config(PART) Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1
[LOG 09:48:26.564] Config(PART) Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster
[LOG 09:48:26.564] Config(PART) Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm
[LOG 09:48:26.565] Config(PART) Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1
[LOG 09:48:26.566] Config(PART) Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine
[LOG 09:48:26.566] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2
[LOG 09:48:26.567] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines
[LOG 09:48:26.567] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2
[LOG 09:48:26.568] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant
[LOG 09:48:26.568] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2
[LOG 09:48:26.569] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1
[LOG 09:48:26.569] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant
[LOG 09:48:26.570] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3
[LOG 09:48:26.570] Config(PART) Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2
[LOG 09:48:26.571] Config(PART) Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank
[LOG 09:48:26.571] Config(PART) Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat
[LOG 09:48:26.572] Config(PART) Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall
[LOG 09:48:26.572] Config(PART) Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank
[LOG 09:48:26.573] Config(PART) Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long
[LOG 09:48:26.574] Config(PART) Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank
[LOG 09:48:26.574] Config(PART) Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2
[LOG 09:48:26.575] Config(PART) Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2
[LOG 09:48:26.575] Config(PART) Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2
[LOG 09:48:26.576] Config(PART) Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage
[LOG 09:48:26.576] Config(PART) Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler
[LOG 09:48:26.577] Config(PART) Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong
[LOG 09:48:26.577] Config(PART) Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter
[LOG 09:48:26.578] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO
[LOG 09:48:26.578] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage
[LOG 09:48:26.579] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO
[LOG 09:48:26.579] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid
[LOG 09:48:26.580] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono
[LOG 09:48:26.580] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin
[LOG 09:48:26.581] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100
[LOG 09:48:26.581] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25
[LOG 09:48:26.582] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50
[LOG 09:48:26.582] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100
[LOG 09:48:26.583] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25
[LOG 09:48:26.583] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50
[LOG 09:48:26.584] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO
[LOG 09:48:26.584] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2
[LOG 09:48:26.585] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini
[LOG 09:48:26.585] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank
[LOG 09:48:26.586] Config(PART) Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank
[LOG 09:48:26.586] Config(PART) Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong
[LOG 09:48:26.587] Config(PART) Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank
[LOG 09:48:26.587] Config(PART) Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank
[LOG 09:48:26.588] Config(PART) Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank
[LOG 09:48:26.588] Config(PART) Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank
[LOG 09:48:26.589] Config(PART) Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge
[LOG 09:48:26.589] Config(PART) Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial
[LOG 09:48:26.590] Config(PART) Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore
[LOG 09:48:26.590] Config(PART) Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna
[LOG 09:48:26.591] Config(PART) Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel
[LOG 09:48:26.592] Config(PART) Squad/Parts/Misc/PotatoRoid/part/PotatoRoid
[LOG 09:48:26.592] Config(PART) Squad/Parts/Resources/FuelCell/FuelCell/FuelCell
[LOG 09:48:26.592] Config(PART) Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray
[LOG 09:48:26.593] Config(PART) Squad/Parts/Resources/ISRU/ISRU/ISRU
[LOG 09:48:26.593] Config(PART) Squad/Parts/Resources/LargeTank/LargeTank/LargeTank
[LOG 09:48:26.594] Config(PART) Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill
[LOG 09:48:26.594] Config(PART) Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU
[LOG 09:48:26.595] Config(PART) Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner
[LOG 09:48:26.595] Config(PART) Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill
[LOG 09:48:26.596] Config(PART) Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank
[LOG 09:48:26.596] Config(PART) Squad/Parts/Resources/SmallTank/SmallTank/SmallTank
[LOG 09:48:26.597] Config(PART) Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner
[LOG 09:48:26.598] Config(PART) Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner
[LOG 09:48:26.598] Config(PART) Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere
[LOG 09:48:26.599] Config(PART) Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment
[LOG 09:48:26.599] Config(PART) Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab
[LOG 09:48:26.600] Config(PART) Squad/Parts/Science/MaterialBay/materialBay/science_module
[LOG 09:48:26.600] Config(PART) Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer
[LOG 09:48:26.601] Config(PART) Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer
[LOG 09:48:26.601] Config(PART) Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter
[LOG 09:48:26.602] Config(PART) Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer
[LOG 09:48:26.602] Config(PART) Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi
[LOG 09:48:26.603] Config(PART) Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad
[LOG 09:48:26.603] Config(PART) Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri
[LOG 09:48:26.604] Config(PART) Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort
[LOG 09:48:26.605] Config(PART) Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall
[LOG 09:48:26.605] Config(PART) Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody
[LOG 09:48:26.606] Config(PART) Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody
[LOG 09:48:26.606] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage
[LOG 09:48:26.607] Config(PART) Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage
[LOG 09:48:26.607] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural
[LOG 09:48:26.608] Config(PART) Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler
[LOG 09:48:26.608] Config(PART) Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter
[LOG 09:48:26.609] Config(PART) Squad/Parts/Structural/stationHub/stationHub/stationHub
[LOG 09:48:26.609] Config(PART) Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2
[LOG 09:48:26.610] Config(PART) Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3
[LOG 09:48:26.610] Config(PART) Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1
[LOG 09:48:26.611] Config(PART) Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode
[LOG 09:48:26.612] Config(PART) Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1
[LOG 09:48:26.612] Config(PART) Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2
[LOG 09:48:26.613] Config(PART) Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint
[LOG 09:48:26.613] Config(PART) Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon
[LOG 09:48:26.614] Config(PART) Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube
[LOG 09:48:26.614] Config(PART) Squad/Parts/Structural/strutOcto/strutOcto/strutOcto
[LOG 09:48:26.615] Config(PART) Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter
[LOG 09:48:26.615] Config(PART) Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x
[LOG 09:48:26.616] Config(PART) Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x
[LOG 09:48:26.616] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge
[LOG 09:48:26.617] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed
[LOG 09:48:26.617] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall
[LOG 09:48:26.618] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge
[LOG 09:48:26.618] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg
[LOG 09:48:26.619] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm
[LOG 09:48:26.619] Config(PART) Squad/Parts/Utility/commDish88-88/commDish88-88/commDish
[LOG 09:48:26.620] Config(PART) Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna
[LOG 09:48:26.621] Config(PART) Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna
[LOG 09:48:26.621] Config(PART) Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2
[LOG 09:48:26.622] Config(PART) Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler
[LOG 09:48:26.622] Config(PART) Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2
[LOG 09:48:26.623] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator
[LOG 09:48:26.623] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini
[LOG 09:48:26.624] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig
[LOG 09:48:26.625] Config(PART) Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2
[LOG 09:48:26.625] Config(PART) Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler
[LOG 09:48:26.626] Config(PART) Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini
[LOG 09:48:26.626] Config(PART) Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2
[LOG 09:48:26.627] Config(PART) Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral
[LOG 09:48:26.627] Config(PART) Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3
[LOG 09:48:26.628] Config(PART) Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1
[LOG 09:48:26.628] Config(PART) Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge
[LOG 09:48:26.629] Config(PART) Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice
[LOG 09:48:26.629] Config(PART) Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1
[LOG 09:48:26.630] Config(PART) Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder
[LOG 09:48:26.630] Config(PART) Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay
[LOG 09:48:26.631] Config(PART) Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1
[LOG 09:48:26.631] Config(PART) Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2
[LOG 09:48:26.632] Config(PART) Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg
[LOG 09:48:26.632] Config(PART) Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter
[LOG 09:48:26.633] Config(PART) Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2
[LOG 09:48:26.634] Config(PART) Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1
[LOG 09:48:26.634] Config(PART) Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem
[LOG 09:48:26.635] Config(PART) Squad/Parts/Utility/linearRCS/linearRCS/linearRcs
[LOG 09:48:26.635] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL
[LOG 09:48:26.636] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS
[LOG 09:48:26.636] Config(PART) Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin
[LOG 09:48:26.637] Config(PART) Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort
[LOG 09:48:26.637] Config(PART) Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL
[LOG 09:48:26.638] Config(PART) Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM
[LOG 09:48:26.638] Config(PART) Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp
[LOG 09:48:26.639] Config(PART) Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS
[LOG 09:48:26.639] Config(PART) Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle
[LOG 09:48:26.639] Config(PART) Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue
[LOG 09:48:26.640] Config(PART) Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge
[LOG 09:48:26.641] Config(PART) Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial
[LOG 09:48:26.641] Config(PART) Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue
[LOG 09:48:26.642] Config(PART) Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1
[LOG 09:48:26.642] Config(PART) Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock
[LOG 09:48:26.643] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125
[LOG 09:48:26.643] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250
[LOG 09:48:26.644] Config(PART) Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1
[LOG 09:48:26.644] Config(PART) Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2
[LOG 09:48:26.645] Config(PART) Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler
[LOG 09:48:26.645] Config(PART) Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler
[LOG 09:48:26.646] Config(PART) Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler
[LOG 09:48:26.646] Config(PART) Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge
[LOG 09:48:26.647] Config(PART) Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed
[LOG 09:48:26.647] Config(PART) Squad/Parts/Wheel/LandingGear/GearFree/GearFree
[LOG 09:48:26.648] Config(PART) Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium
[LOG 09:48:26.648] Config(PART) Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall
[LOG 09:48:26.649] Config(PART) Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay
[LOG 09:48:26.649] Config(PART) Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1
[LOG 09:48:26.650] Config(PART) Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2
[LOG 09:48:26.650] Config(PART) Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed
[LOG 09:48:26.651] Config(PART) Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3
[LOG 09:48:26.651] Config(PROP) Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands
[LOG 09:48:26.652] Config(PROP) Squad/Props/AtmosphereDepth/prop/AtmosphereDepth
[LOG 09:48:26.652] Config(PROP) Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch
[LOG 09:48:26.653] Config(PROP) Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll
[LOG 09:48:26.653] Config(PROP) Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw
[LOG 09:48:26.654] Config(PROP) Squad/Props/ButtonSquare/prop/ButtonSquare
[LOG 09:48:26.654] Config(PROP) Squad/Props/circularButton/prop/circularButton
[LOG 09:48:26.655] Config(PROP) Squad/Props/Compass/prop/Compass
[LOG 09:48:26.655] Config(PROP) Squad/Props/directionalKnob/prop/directionalKnob
[LOG 09:48:26.656] Config(PROP) Squad/Props/directionalKnob2/prop/directionalKnob2
[LOG 09:48:26.656] Config(PROP) Squad/Props/IndicatorPanel/prop/IndicatorPanel
[LOG 09:48:26.657] Config(PROP) Squad/Props/IVANavBall/prop/NavBall
[LOG 09:48:26.657] Config(PROP) Squad/Props/ledPanelSpeed/prop/ledPanelSpeed
[LOG 09:48:26.658] Config(PROP) Squad/Props/Monitor/DockingMode/MonitorDockingMode
[LOG 09:48:26.658] Config(PROP) Squad/Props/NavBall/prop/NavBall
[LOG 09:48:26.658] Config(PROP) Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode
[LOG 09:48:26.659] Config(PROP) Squad/Props/PropsGeneric/CargoBagA/CargoBagA
[LOG 09:48:26.659] Config(PROP) Squad/Props/PropsGeneric/CargoBagB/CargoBagB
[LOG 09:48:26.660] Config(PROP) Squad/Props/PropsGeneric/CargoBagC/CargoBagC
[LOG 09:48:26.660] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane
[LOG 09:48:26.661] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90
[LOG 09:48:26.662] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame
[LOG 09:48:26.662] Config(PROP) Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger
[LOG 09:48:26.663] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot
[LOG 09:48:26.663] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet
[LOG 09:48:26.664] Config(PROP) Squad/Props/PropsGeneric/SideStick/SideStick
[LOG 09:48:26.664] Config(PROP) Squad/Props/pullSwitch/prop/pullSwitch
[LOG 09:48:26.664] Config(PROP) Squad/Props/radarAltitude/prop/RadarAltimeter
[LOG 09:48:26.665] Config(PROP) Squad/Props/squareButton/prop/squareButton
[LOG 09:48:26.665] Config(PROP) Squad/Props/standingSwitch/prop/standingSwitch
[LOG 09:48:26.666] Config(PROP) Squad/Props/switch/prop/switch
[LOG 09:48:26.666] Config(PROP) Squad/Props/switchGuard/prop/switchGuard
[LOG 09:48:26.667] Config(PROP) Squad/Props/switchWithGuards/prop/switchWithGuards
[LOG 09:48:26.667] Config(PROP) Squad/Props/throttle/prop/throttle
[LOG 09:48:26.668] Config(PROP) Squad/Props/VSI/prop/VSI
[LOG 09:48:26.668] Config(GLOBAL_RESOURCE) Squad/Resources/Ore/GLOBAL_RESOURCE
[LOG 09:48:26.669] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 09:48:26.669] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 09:48:26.670] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.670] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.671] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.671] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.672] Config(RESOURCE_OVERLAY_CONFIGURATION_SOLID) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_SOLID
[LOG 09:48:26.672] Config(RESOURCE_OVERLAY_CONFIGURATION_LINES) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_LINES
[LOG 09:48:26.673] Config(RESOURCE_OVERLAY_CONFIGURATION_DOTS) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_DOTS
[LOG 09:48:26.673] Config(RESOURCE_CONFIGURATION) Squad/Resources/ResourceDefaults/RESOURCE_CONFIGURATION
[LOG 09:48:26.674] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/LiquidFuel
[LOG 09:48:26.674] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Oxidizer
[LOG 09:48:26.675] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/SolidFuel
[LOG 09:48:26.675] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/MonoPropellant
[LOG 09:48:26.676] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/XenonGas
[LOG 09:48:26.676] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/ElectricCharge
[LOG 09:48:26.677] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/IntakeAir
[LOG 09:48:26.677] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/EVA Propellant
[LOG 09:48:26.678] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ore
[LOG 09:48:26.678] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ablator
[LOG 09:48:26.679] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.679] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.680] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.680] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.681] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.682] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.682] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.683] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.683] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.684] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.684] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.685] Config(STORY_DEF) Squad/Resources/StoryDefs/STORY_DEF
[LOG 09:48:26.685] Config(TechTree) Squad/Resources/TechTree/TechTree
[LOG 09:48:26.686] Config(INTERNAL) Squad/Spaces/crewCabinInternals/internal/crewCabinInternals
[LOG 09:48:26.686] Config(INTERNAL) Squad/Spaces/cupolaInternal/internal/cupolaInternal
[LOG 09:48:26.687] Config(INTERNAL) Squad/Spaces/GenericSpace1/internal/GenericSpace1
[LOG 09:48:26.687] Config(INTERNAL) Squad/Spaces/GenericSpace3/internal/GenericSpace3
[LOG 09:48:26.688] Config(INTERNAL) Squad/Spaces/landerCabinInternals/internal/landerCabinInternals
[LOG 09:48:26.688] Config(INTERNAL) Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal
[LOG 09:48:26.689] Config(INTERNAL) Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int
[LOG 09:48:26.690] Config(INTERNAL) Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal
[LOG 09:48:26.690] Config(INTERNAL) Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal
[LOG 09:48:26.691] Config(INTERNAL) Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal
[LOG 09:48:26.691] Config(INTERNAL) Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit
[LOG 09:48:26.692] Config(INTERNAL) Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals
[LOG 09:48:26.692] Config(INTERNAL) Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int
[LOG 09:48:26.693] Config(INTERNAL) Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal
[LOG 09:48:26.693] Config(INTERNAL) Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int
[LOG 09:48:26.694] Config(INTERNAL) Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int
[LOG 09:48:26.694] Config(INTERNAL) Squad/Spaces/Placeholder/internal/Placeholder
[LOG 09:48:26.695] Config(INTERNAL) Squad/Spaces/PodCockpit/internal/PodCockpit
[LOG 09:48:26.695] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Finances
[LOG 09:48:26.696] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Science
[LOG 09:48:26.696] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Public Relations
[LOG 09:48:26.697] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Operations
[LOG 09:48:26.697] Config(STRATEGY) Squad/Strategies/Strategies/AppreciationCampaignCfg
[LOG 09:48:26.698] Config(STRATEGY) Squad/Strategies/Strategies/FundraisingCampaignCfg
[LOG 09:48:26.699] Config(STRATEGY) Squad/Strategies/Strategies/OpenSourceTechProgramCfg
[LOG 09:48:26.699] Config(STRATEGY) Squad/Strategies/Strategies/UnpaidResearchProgramCfg
[LOG 09:48:26.700] Config(STRATEGY) Squad/Strategies/Strategies/OutsourcedResearchCfg
[LOG 09:48:26.700] Config(STRATEGY) Squad/Strategies/Strategies/PatentsLicensingCfg
[LOG 09:48:26.701] Config(STRATEGY) Squad/Strategies/Strategies/AgressiveNegotiations
[LOG 09:48:26.701] Config(STRATEGY) Squad/Strategies/Strategies/RecoveryTransponders
[LOG 09:48:26.702] Config(STRATEGY) Squad/Strategies/Strategies/BailoutGrant
[LOG 09:48:26.702] Config(STRATEGY) Squad/Strategies/Strategies/researchIPsellout
[LOG 09:48:26.702] Config(STRATEGY) Squad/Strategies/Strategies/LeadershipInitiative
[LOG 09:48:26.703] Config(TUTORIAL) Squad/Tutorials/FlightSuborbital/FlightSuborbital
[LOG 09:48:26.703] Config(TUTORIAL) Squad/Tutorials/FromMun/FromMun
[LOG 09:48:26.704] Config(TUTORIAL) Squad/Tutorials/GoForOrbit/GoForOrbit
[LOG 09:48:26.706] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.707] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.707] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.708] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.708] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.709] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.709] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.709] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.710] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.711] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.711] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.713] GameDatabase: Assets loaded in 41.269s
[LOG 09:48:26.713] CodeAssetLoader: Compiling all code assets
[LOG 09:48:26.720] PartLoader: Loading part database
[LOG 09:48:26.720] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONrcsBlock45/IONRCSBlock45'
[LOG 09:48:26.735] EffectList: Created 11 effect types
[LOG 09:48:26.766] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONrcsBlock45/IONRCSBlock45' has no database record. Creating.
[LOG 09:48:26.782] DragCubeSystem: Creating drag cubes for part 'IONRCSBlock45'
[LOG 09:48:26.814] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONrcsBlock/IONRCSBlock'
[LOG 09:48:26.824] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONrcsBlock/IONRCSBlock' has no database record. Creating.
[LOG 09:48:26.829] DragCubeSystem: Creating drag cubes for part 'IONRCSBlock'
[LOG 09:48:26.852] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/part/LinearIonRCS'
[LOG 09:48:26.863] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/part/LinearIonRCS' has no database record. Creating.
[LOG 09:48:26.868] DragCubeSystem: Creating drag cubes for part 'LinearIonRCS'
[LOG 09:48:26.898] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/part/LinearPPTRCS'
[LOG 09:48:26.912] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/part/LinearPPTRCS' has no database record. Creating.
[LOG 09:48:26.916] DragCubeSystem: Creating drag cubes for part 'LinearPPTRCS'
[LOG 09:48:26.944] PartLoader: Compiling Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone'
[LOG 09:48:26.953] PartLoader: Compiling Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1'
[LOG 09:48:26.969] PartLoader: Compiling Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop'
[LOG 09:48:26.981] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf'
[LOG 09:48:26.994] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing'
[LOG 09:48:27.006] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin'
[LOG 09:48:27.020] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard'
[LOG 09:48:27.032] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController'
[LOG 09:48:27.044] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing'
[LOG 09:48:27.056] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin'
[LOG 09:48:27.068] PartLoader: Compiling Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin'
[LOG 09:48:27.079] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake'
[LOG 09:48:27.092] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake'
[LOG 09:48:27.103] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone'
[LOG 09:48:27.132] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA'
[LOG 09:48:27.145] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB'
[LOG 09:48:27.157] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter'
[LOG 09:48:27.168] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone'
[LOG 09:48:27.178] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail'
[LOG 09:48:27.189] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB'
[LOG 09:48:27.200] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1'
[LOG 09:48:27.227] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2'
[LOG 09:48:27.245] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3'
[LOG 09:48:27.262] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1'
[LOG 09:48:27.281] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2'
[LOG 09:48:27.299] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3'
[LOG 09:48:27.316] PartLoader: Compiling Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield'
[LOG 09:48:27.336] PartLoader: Compiling Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong'
[LOG 09:48:27.348] PartLoader: Compiling Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake'
[LOG 09:48:27.360] PartLoader: Compiling Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone'
[LOG 09:48:27.368] PartLoader: Compiling Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake'
[LOG 09:48:27.380] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta'
[LOG 09:48:27.390] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1'
[LOG 09:48:27.402] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2'
[LOG 09:48:27.414] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder'
[LOG 09:48:27.426] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake'
[LOG 09:48:27.438] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet'
[LOG 09:48:27.450] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet'
[LOG 09:48:27.461] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3'
[LOG 09:48:27.473] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector1/wingConnector'
[LOG 09:48:27.484] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector2/wingConnector2'
[LOG 09:48:27.494] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector3/wingConnector3'
[LOG 09:48:27.505] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector4/wingConnector4'
[LOG 09:48:27.528] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector5/wingConnector5'
[LOG 09:48:27.540] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta/deltaWing'
[LOG 09:48:27.551] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta_small/delta_small'
[LOG 09:48:27.562] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf'
[LOG 09:48:27.574] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon2/elevon2'
[LOG 09:48:27.587] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon3/elevon3'
[LOG 09:48:27.599] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf'
[LOG 09:48:27.611] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon5/elevon5'
[LOG 09:48:27.623] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/strake/wingStrake'
[LOG 09:48:27.634] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural1/structuralWing'
[LOG 09:48:27.645] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural2/structuralWing2'
[LOG 09:48:27.656] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural3/structuralWing3'
[LOG 09:48:27.667] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural4/structuralWing4'
[LOG 09:48:27.678] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept1/sweptWing1'
[LOG 09:48:27.689] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept2/sweptWing2'
[LOG 09:48:27.700] PartLoader: Compiling Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2'
[LOG 09:48:27.712] PartLoader: Compiling Part 'Squad/Parts/Command/cupola/cupola/cupola'
[LOG 09:48:27.736] PartLoader: Compiling Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd'
[LOG 09:48:27.750] PartLoader: Compiling Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin'
[LOG 09:48:27.767] PartLoader: Compiling Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule'
[LOG 09:48:27.777] PartLoader: Compiling Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule'
[LOG 09:48:27.788] PartLoader: Compiling Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod'
[LOG 09:48:27.811] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit'
[LOG 09:48:27.834] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin'
[LOG 09:48:27.852] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit'
[LOG 09:48:27.875] PartLoader: Compiling Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall'
[LOG 09:48:27.908] PartLoader: Compiling Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod'
[LOG 09:48:27.931] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline'
[LOG 09:48:27.957] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard'
[LOG 09:48:27.982] PartLoader: Compiling Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore'
[LOG 09:48:27.998] PartLoader: Compiling Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin'
[LOG 09:48:28.018] PartLoader: Compiling Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle'
[LOG 09:48:28.042] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube'
[LOG 09:48:28.056] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex'
[LOG 09:48:28.072] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto'
[LOG 09:48:28.087] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2'
[LOG 09:48:28.101] PartLoader: Compiling Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody'
[LOG 09:48:28.115] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge'
[LOG 09:48:28.130] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall'
[LOG 09:48:28.145] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere'
[LOG 09:48:28.157] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine'
[LOG 09:48:28.175] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector'
[LOG 09:48:28.188] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2'
[LOG 09:48:28.203] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4'
[LOG 09:48:28.217] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1'
[LOG 09:48:28.230] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3'
[LOG 09:48:28.244] PartLoader: Compiling Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel'
[LOG 09:48:28.258] PartLoader: Compiling Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5'
[LOG 09:48:28.271] PartLoader: Compiling Part 'Squad/Parts/Electrical/RTG/RTG/rtg'
[LOG 09:48:28.303] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack'
[LOG 09:48:28.312] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank'
[LOG 09:48:28.321] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini'
[LOG 09:48:28.330] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack'
[LOG 09:48:28.339] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge'
[LOG 09:48:28.348] PartLoader: Compiling Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine'
[LOG 09:48:28.375] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet'
[LOG 09:48:28.426] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine'
[LOG 09:48:28.454] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2'
[LOG 09:48:28.489] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine'
[LOG 09:48:28.520] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine'
[LOG 09:48:28.541] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini'
[LOG 09:48:28.564] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike'
[LOG 09:48:28.590] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine'
[LOG 09:48:28.608] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini'
[LOG 09:48:28.627] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3'
[LOG 09:48:28.652] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine'
[LOG 09:48:28.679] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine'
[LOG 09:48:28.720] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2'
[LOG 09:48:28.748] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2'
[LOG 09:48:28.776] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2'
[LOG 09:48:28.800] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2'
[LOG 09:48:28.827] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper'
[LOG 09:48:28.855] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME'
[LOG 09:48:28.884] PartLoader: Compiling Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster'
[LOG 09:48:28.907] PartLoader: Compiling Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine'
[LOG 09:48:28.930] PartLoader: Compiling Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine'
[LOG 09:48:28.945] PartLoader: Compiling Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER'
[LOG 09:48:28.980] PartLoader: Compiling Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB'
[LOG 09:48:29.007] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine'
[LOG 09:48:29.038] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster'
[LOG 09:48:29.066] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1'
[LOG 09:48:29.087] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster'
[LOG 09:48:29.127] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm'
[LOG 09:48:29.146] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1'
[LOG 09:48:29.164] PartLoader: Compiling Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine'
[LOG 09:48:29.178] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2'
[LOG 09:48:29.187] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines'
[LOG 09:48:29.197] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2'
[LOG 09:48:29.206] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant'
[LOG 09:48:29.216] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2'
[LOG 09:48:29.225] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1'
[LOG 09:48:29.235] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant'
[LOG 09:48:29.244] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3'
[LOG 09:48:29.254] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2'
[LOG 09:48:29.265] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank'
[LOG 09:48:29.274] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat'
[LOG 09:48:29.283] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall'
[LOG 09:48:29.293] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank'
[LOG 09:48:29.302] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long'
[LOG 09:48:29.312] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank'
[LOG 09:48:29.321] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2'
[LOG 09:48:29.329] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2'
[LOG 09:48:29.338] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2'
[LOG 09:48:29.348] PartLoader: Compiling Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage'
[LOG 09:48:29.357] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler'
[LOG 09:48:29.369] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong'
[LOG 09:48:29.380] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter'
[LOG 09:48:29.392] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO'
[LOG 09:48:29.403] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage'
[LOG 09:48:29.414] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO'
[LOG 09:48:29.426] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid'
[LOG 09:48:29.437] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono'
[LOG 09:48:29.449] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin'
[LOG 09:48:29.468] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100'
[LOG 09:48:29.477] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25'
[LOG 09:48:29.487] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50'
[LOG 09:48:29.497] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100'
[LOG 09:48:29.523] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25'
[LOG 09:48:29.533] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50'
[LOG 09:48:29.543] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO'
[LOG 09:48:29.553] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2'
[LOG 09:48:29.562] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini'
[LOG 09:48:29.572] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank'
[LOG 09:48:29.581] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank'
[LOG 09:48:29.590] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong'
[LOG 09:48:29.599] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank'
[LOG 09:48:29.609] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank'
[LOG 09:48:29.618] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank'
[LOG 09:48:29.628] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank'
[LOG 09:48:29.637] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge'
[LOG 09:48:29.646] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial'
[LOG 09:48:29.655] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore'
[LOG 09:48:29.672] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna'
[LOG 09:48:29.688] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel'
[LOG 09:48:29.701] PartLoader: Compiling Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid'
[ERR 09:48:29.707] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.707] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:29.713] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.713] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:29.728] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.729] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:29.738] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.739] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[LOG 09:48:29.740] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell'
[LOG 09:48:29.758] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray'
[LOG 09:48:29.774] PartLoader: Compiling Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU'
[LOG 09:48:29.813] PartLoader: Compiling Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank'
[LOG 09:48:29.824] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill'
[LOG 09:48:29.856] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU'
[LOG 09:48:29.889] PartLoader: Compiling Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner'
[LOG 09:48:29.909] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill'
[LOG 09:48:29.938] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank'
[LOG 09:48:29.949] PartLoader: Compiling Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank'
[LOG 09:48:29.959] PartLoader: Compiling Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner'
[LOG 09:48:29.995] PartLoader: Compiling Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner'
[LOG 09:48:30.015] PartLoader: Compiling Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere'
[LOG 09:48:30.028] PartLoader: Compiling Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment'
[LOG 09:48:30.043] PartLoader: Compiling Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab'
[LOG 09:48:30.068] PartLoader: Compiling Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module'
[LOG 09:48:30.084] PartLoader: Compiling Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer'
[LOG 09:48:30.099] PartLoader: Compiling Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer'
[LOG 09:48:30.113] PartLoader: Compiling Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter'
[LOG 09:48:30.127] PartLoader: Compiling Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer'
[LOG 09:48:30.142] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi'
[LOG 09:48:30.151] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad'
[LOG 09:48:30.161] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri'
[LOG 09:48:30.170] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort'
[LOG 09:48:30.179] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall'
[LOG 09:48:30.188] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody'
[LOG 09:48:30.202] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody'
[LOG 09:48:30.215] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage'
[LOG 09:48:30.225] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage'
[LOG 09:48:30.239] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural'
[LOG 09:48:30.247] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler'
[LOG 09:48:30.262] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter'
[LOG 09:48:30.271] PartLoader: Compiling Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub'
[LOG 09:48:30.279] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2'
[LOG 09:48:30.288] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3'
[LOG 09:48:30.297] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1'
[LOG 09:48:30.307] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode'
[LOG 09:48:30.316] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1'
[LOG 09:48:30.325] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2'
[LOG 09:48:30.334] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint'
[LOG 09:48:30.349] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon'
[LOG 09:48:30.365] PartLoader: Compiling Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube'
[LOG 09:48:30.374] PartLoader: Compiling Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto'
[LOG 09:48:30.408] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter'
[LOG 09:48:30.418] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x'
[LOG 09:48:30.428] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x'
[LOG 09:48:30.437] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge'
[LOG 09:48:30.456] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed'
[LOG 09:48:30.469] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall'
[LOG 09:48:30.482] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge'
[LOG 09:48:30.493] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg'
[LOG 09:48:30.505] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm'
[LOG 09:48:30.517] PartLoader: Compiling Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish'
[LOG 09:48:30.533] PartLoader: Compiling Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna'
[LOG 09:48:30.551] PartLoader: Compiling Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna'
[LOG 09:48:30.566] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2'
[LOG 09:48:30.583] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler'
[LOG 09:48:30.598] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2'
[LOG 09:48:30.613] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator'
[LOG 09:48:30.628] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini'
[LOG 09:48:30.641] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig'
[LOG 09:48:30.654] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2'
[LOG 09:48:30.667] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler'
[LOG 09:48:30.680] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini'
[LOG 09:48:30.693] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2'
[LOG 09:48:30.706] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral'
[LOG 09:48:30.723] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3'
[LOG 09:48:30.736] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1'
[LOG 09:48:30.753] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge'
[LOG 09:48:30.767] PartLoader: Compiling Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice'
[LOG 09:48:30.810] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1'
[LOG 09:48:30.819] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder'
[LOG 09:48:30.832] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay'
[LOG 09:48:30.845] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1'
[LOG 09:48:30.874] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2'
[LOG 09:48:30.898] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg'
[LOG 09:48:30.921] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter'
[LOG 09:48:30.931] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2'
[LOG 09:48:30.940] PartLoader: Compiling Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1'
[LOG 09:48:30.958] PartLoader: Compiling Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem'
[LOG 09:48:30.978] PartLoader: Compiling Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs'
[LOG 09:48:30.991] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL'
[LOG 09:48:31.008] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS'
[LOG 09:48:31.022] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin'
[LOG 09:48:31.042] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort'
[LOG 09:48:31.061] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL'
[LOG 09:48:31.074] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM'
[LOG 09:48:31.087] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp'
[LOG 09:48:31.100] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS'
[LOG 09:48:31.113] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle'
[LOG 09:48:31.132] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue'
[LOG 09:48:31.149] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge'
[LOG 09:48:31.167] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial'
[LOG 09:48:31.206] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue'
[LOG 09:48:31.225] PartLoader: Compiling Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1'
[LOG 09:48:31.235] PartLoader: Compiling Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock'
[LOG 09:48:31.249] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125'
[LOG 09:48:31.271] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250'
[LOG 09:48:31.292] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1'
[LOG 09:48:31.305] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2'
[LOG 09:48:31.317] PartLoader: Compiling Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler'
[LOG 09:48:31.326] PartLoader: Compiling Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler'
[LOG 09:48:31.338] PartLoader: Compiling Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler'
[LOG 09:48:31.347] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge'
[LOG 09:48:31.381] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed'
[LOG 09:48:31.401] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree'
[LOG 09:48:31.424] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium'
[LOG 09:48:31.457] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall'
[LOG 09:48:31.490] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay'
[LOG 09:48:31.524] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1'
[LOG 09:48:31.553] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2'
[LOG 09:48:31.580] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed'
[LOG 09:48:31.629] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3'
[LOG 09:48:31.655] PartLoader: Compiling Internal Prop 'Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands'
[LOG 09:48:31.659] PartLoader: Compiling Internal Prop 'Squad/Props/AtmosphereDepth/prop/AtmosphereDepth'
[LOG 09:48:31.662] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch'
[LOG 09:48:31.664] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll'
[LOG 09:48:31.666] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw'
[LOG 09:48:31.668] PartLoader: Compiling Internal Prop 'Squad/Props/ButtonSquare/prop/ButtonSquare'
[LOG 09:48:31.670] PartLoader: Compiling Internal Prop 'Squad/Props/circularButton/prop/circularButton'
[LOG 09:48:31.672] PartLoader: Compiling Internal Prop 'Squad/Props/Compass/prop/Compass'
[LOG 09:48:31.673] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob/prop/directionalKnob'
[LOG 09:48:31.675] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob2/prop/directionalKnob2'
[LOG 09:48:31.676] PartLoader: Compiling Internal Prop 'Squad/Props/IndicatorPanel/prop/IndicatorPanel'
[LOG 09:48:31.679] PartLoader: Compiling Internal Prop 'Squad/Props/IVANavBall/prop/NavBall'
[LOG 09:48:31.682] PartLoader: Compiling Internal Prop 'Squad/Props/ledPanelSpeed/prop/ledPanelSpeed'
[LOG 09:48:31.684] PartLoader: Compiling Internal Prop 'Squad/Props/Monitor/DockingMode/MonitorDockingMode'
[LOG 09:48:31.685] PartLoader: Compiling Internal Prop 'Squad/Props/NavBall/prop/NavBall'
[LOG 09:48:31.687] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode'
[LOG 09:48:31.688] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagA/CargoBagA'
[LOG 09:48:31.689] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagB/CargoBagB'
[LOG 09:48:31.690] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagC/CargoBagC'
[LOG 09:48:31.691] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane'
[LOG 09:48:31.692] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90'
[LOG 09:48:31.694] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame'
[LOG 09:48:31.695] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger'
[LOG 09:48:31.696] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot'
[LOG 09:48:31.697] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet'
[LOG 09:48:31.698] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/SideStick/SideStick'
[LOG 09:48:31.699] PartLoader: Compiling Internal Prop 'Squad/Props/pullSwitch/prop/pullSwitch'
[LOG 09:48:31.701] PartLoader: Compiling Internal Prop 'Squad/Props/radarAltitude/prop/RadarAltimeter'
[LOG 09:48:31.703] PartLoader: Compiling Internal Prop 'Squad/Props/squareButton/prop/squareButton'
[LOG 09:48:31.704] PartLoader: Compiling Internal Prop 'Squad/Props/standingSwitch/prop/standingSwitch'
[LOG 09:48:31.706] PartLoader: Compiling Internal Prop 'Squad/Props/switch/prop/switch'
[LOG 09:48:31.707] PartLoader: Compiling Internal Prop 'Squad/Props/switchGuard/prop/switchGuard'
[LOG 09:48:31.708] PartLoader: Compiling Internal Prop 'Squad/Props/switchWithGuards/prop/switchWithGuards'
[LOG 09:48:31.709] PartLoader: Compiling Internal Prop 'Squad/Props/throttle/prop/throttle'
[LOG 09:48:31.711] PartLoader: Compiling Internal Prop 'Squad/Props/VSI/prop/VSI'
[LOG 09:48:31.714] PartLoader: Compiling Internal Space 'Squad/Spaces/crewCabinInternals/internal/crewCabinInternals'
[LOG 09:48:31.724] PartLoader: Compiling Internal Space 'Squad/Spaces/cupolaInternal/internal/cupolaInternal'
[LOG 09:48:31.736] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace1/internal/GenericSpace1'
[LOG 09:48:31.737] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace3/internal/GenericSpace3'
[LOG 09:48:31.740] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinInternals/internal/landerCabinInternals'
[LOG 09:48:31.748] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal'
[LOG 09:48:31.755] PartLoader: Compiling Internal Space 'Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int'
[LOG 09:48:31.758] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal'
[LOG 09:48:31.766] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal'
[LOG 09:48:31.777] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal'
[LOG 09:48:31.786] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit'
[LOG 09:48:31.790] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals'
[LOG 09:48:31.807] PartLoader: Compiling Internal Space 'Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int'
[LOG 09:48:31.815] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal'
[LOG 09:48:31.827] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int'
[LOG 09:48:31.866] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int'
[LOG 09:48:31.870] InternalSeat: Cannot find portraitCamera of name 'Camera_Left003'
[LOG 09:48:31.878] PartLoader: Compiling Internal Space 'Squad/Spaces/Placeholder/internal/Placeholder'
[LOG 09:48:31.889] PartLoader: Compiling Internal Space 'Squad/Spaces/PodCockpit/internal/PodCockpit'
[LOG 09:48:31.904] Loading Systems: Elapsed time is 46.46166s
[WRN 09:48:31.940] The referenced script on this Behaviour is missing!
[WRN 09:48:31.940] The referenced script on this Behaviour is missing!
[WRN 09:48:32.486] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:32.486] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:32.526] UIMasterController: HideUI
[LOG 09:48:32.634] Agent: Found 18 agent mentality types
[LOG 09:48:32.635] AgentList: 28 agents parsed and loaded.
[WRN 09:48:32.637] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:48:32.638] UIMasterController: HideUI
[LOG 09:48:32.656] PQS - Graphics shader in fallback mode
[LOG 09:48:32.666] PQS - Graphics shader in fallback mode
[LOG 09:48:32.674] PQS - Graphics shader in fallback mode
[LOG 09:48:32.679] PQS - Graphics shader in fallback mode
[LOG 09:48:32.684] PQS - Graphics shader in fallback mode
[LOG 09:48:32.696] PQS - Graphics shader in fallback mode
[LOG 09:48:32.701] PQS - Graphics shader in fallback mode
[LOG 09:48:32.852] PQS - Graphics shader in fallback mode
[LOG 09:48:32.858] PQS - Graphics shader in fallback mode
[LOG 09:48:32.864] PQS - Graphics shader in fallback mode
[LOG 09:48:32.870] PQS - Graphics shader in fallback mode
[LOG 09:48:32.875] PQS - Graphics shader in fallback mode
[LOG 09:48:32.880] PQS - Graphics shader in fallback mode
[LOG 09:48:32.885] PQS - Graphics shader in fallback mode
[LOG 09:48:32.890] PQS - Graphics shader in fallback mode
[LOG 09:48:32.895] PQS - Graphics shader in fallback mode
[LOG 09:48:32.900] PQS - Graphics shader in fallback mode
[LOG 09:48:32.906] PQS - Graphics shader in fallback mode
[LOG 09:48:32.919] [CelestialBody]: Kerbin's solar day length is 1d, 0h, 0m long. sidereal day length is 5h, 59m, 9s long
[WRN 09:48:32.929] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:48:32.931] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:32.932] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[WRN 09:48:33.178] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:33.179] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:33.209] UIMasterController: HideUI
[WRN 09:48:33.211] [HighLogic]: =========================== Scene Change : From LOADING to MAINMENU =====================
[LOG 09:48:34.259] AddonLoader: Instantiating addon 'HyperEditModule' from assembly 'HyperEdit-1.5.2_for-KSP-1.1.2'
[LOG 09:48:34.262] HyperEdit: Using "R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Kerbaltek\HyperEdit-1.5.2_for-KSP-1.1.2" as root config directory
[LOG 09:48:34.263] HyperEdit: Cannot add to ApplicationLauncher, instance was null
[LOG 09:48:34.265] UIMasterController: ShowUI
[WRN 09:48:35.092] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:48:35.093] [ApplicationLauncher] Awake False
[LOG 09:48:35.095] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 09:48:35.111] ScaleModList: listSize 41 maxListSize 0
[WRN 09:48:35.114] [UiApp] Awake: MessageSystem
[WRN 09:48:35.128] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:35.129] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:35.213] [UIApp] Adding MessageSystem to Application Launcher
[LOG 09:48:35.216] [ApplicationLauncher] SetHidden:
[LOG 09:48:35.266] [MessageSystem] OnAppInitialized
[LOG 09:48:35.267] [MessageSystem] Reposition 0.137237 5045
[LOG 09:48:47.277] MiniAVC -> Remote checking has been disabled for: IONRCS
[LOG 09:48:47.278] MiniAVC -> R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\IONRCS.version
    NAME: IONRCS
    URL: http://ksp-avc.cybutek.net/version.php?id=284
    DOWNLOAD: http://spacedock.info/mod/586/ION RCS
    GITHUB: NULL
    VERSION: 0.1.1
    KSP_VERSION: 1.1.2
    KSP_VERSION_MIN: 1.1
    KSP_VERSION_MAX: 1.1.2
    CompatibleKspVersion: True
    CompatibleKspVersionMin: True
    CompatibleKspVersionMax: True
    CompatibleGitHubVersion: True
[LOG 09:48:47.279] MiniAVC -> FirstRunGui was destroyed.
[LOG 09:48:47.323] MiniAVC -> Starter was destroyed.
[LOG 09:48:51.184] ExperienceSystem: Found 0 trait types
[LOG 09:48:51.186] ExperienceSystem: Found 9 effect types
[LOG 09:48:52.461] ReflectionUtil: Found 5 types with UpgradeModule attribute in 5 assemblies.
[LOG 09:48:52.474] [KSPUpgradePipeline]: Test (1.1.2) is up to date.
[LOG 09:48:52.479] ScenarioTypes: List Created 14 scenario types loaded from 5 loaded assemblies.
[LOG 09:48:52.482] UIMasterController: HideUI
[WRN 09:48:52.483] [HighLogic]: =========================== Scene Change : From MAINMENU to SPACECENTER (Async) =====================
[LOG 09:48:52.672] UIMasterController: HideUI
[WRN 09:48:53.011] The referenced script on this Behaviour is missing!
[WRN 09:48:53.011] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.013] The referenced script on this Behaviour is missing!
[WRN 09:48:53.013] The referenced script on this Behaviour is missing!
[WRN 09:48:53.013] The referenced script on this Behaviour is missing!
[LOG 09:48:53.796] AddonLoader: Instantiating addon 'ContractDefs' from assembly 'KSP'
[LOG 09:48:53.810] UIMasterController: HideUI
[LOG 09:48:53.811] [PlanetariumCamera]: Focus: Kerbin
[LOG 09:48:54.273] Loading Depletion Nodes
[LOG 09:48:54.274] DepNodeCount:  0
[LOG 09:48:54.275] Loading Biome Nodes
[LOG 09:48:54.275] BiomeNodeCount:  0
[LOG 09:48:54.276] Loading Planet Nodes
[LOG 09:48:54.276] PlanetNodeCount:  0
[LOG 09:48:54.287] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:48:54.321] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:48:54.322] [UiApp] Awake: KSPedia
[LOG 09:48:54.322] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 09:48:54.323] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 09:48:54.325] [ApplicationLauncher] SetVisible:
[LOG 09:48:54.326] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:48:54.334] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:48:54.336] [UIApp] OnDestroy: ContractsApp
[WRN 09:48:54.573] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:54.574] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:54.575] [MessageSystem] Reposition 0.02 5539
[LOG 09:48:55.533] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:48:56.139] UIMasterController: ShowUI
[LOG 09:49:11.023] Flight State Captured
[LOG 09:49:11.028] Saving Achievements Tree...
[LOG 09:49:11.032] [MessageSystem] Save Messages
[LOG 09:49:11.041] Game State Saved to saves/Test/persistent
[LOG 09:49:11.044] UIMasterController: HideUI
[WRN 09:49:11.045] [HighLogic]: =========================== Scene Change : From SPACECENTER to EDITOR (Async) =====================
[LOG 09:49:11.232] [UIApp] OnDestroy: KSPedia
[LOG 09:49:11.310] UIMasterController: HideUI
[WRN 09:49:12.093] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:49:12.094] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:49:12.095] UICanvasPrefabSpawner SceneLogic spawning Editor
[LOG 09:49:12.124] No Input Locks in effect right now
[LOG 09:49:12.191] UIMasterController: HideUI
[WRN 09:49:12.206] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:49:12.209] ------------------- initializing editor mode... ------------------
[LOG 09:49:12.210] editor started
[LOG 09:49:12.227] IconLoader awake
[WRN 09:49:12.669] The referenced script on this Behaviour is missing!
[WRN 09:49:12.669] The referenced script on this Behaviour is missing!
[WRN 09:49:12.669] The referenced script on this Behaviour is missing!
[LOG 09:49:12.967] Loading Depletion Nodes
[LOG 09:49:12.967] DepNodeCount:  0
[LOG 09:49:12.967] Loading Biome Nodes
[LOG 09:49:12.968] BiomeNodeCount:  0
[LOG 09:49:12.968] Loading Planet Nodes
[LOG 09:49:12.969] PlanetNodeCount:  0
[LOG 09:49:12.970] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:49:12.971] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:49:12.972] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:49:12.972] [UiApp] Awake: EngineersReport
[WRN 09:49:12.973] [UiApp] Awake: KSPedia
[LOG 09:49:12.973] [ApplicationLauncher] OnSceneLoadedGUIReady: scene EDITOR ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop False
[LOG 09:49:12.974] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:49:12.984] [UIApp] OnDestroy: ContractsApp
[LOG 09:49:13.287] [MessageSystem] Reposition 0.02 5741
[LOG 09:49:13.526] [UIApp] Adding EngineersReport to Application Launcher
[LOG 09:49:13.565] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:49:13.568] [GenericAppFrame] Reposition 0.2507544 5747
[LOG 09:49:13.823] UIMasterController: ShowUI
[LOG 09:49:43.666] rtg added to ship - part count: 2
[LOG 09:49:46.813] deleting part batteryBank
[LOG 09:49:49.283] batteryBankMini added to ship - part count: 3
[LOG 09:49:55.383] batteryBankMini added to ship - part count: 4
[LOG 09:49:57.849] batteryBankMini added to ship - part count: 5
[LOG 09:49:59.904] batteryBankMini added to ship - part count: 6
[LOG 09:50:05.832] batteryBankMini added to ship - part count: 7
[LOG 09:50:08.827] deleting part batteryBankMini
[LOG 09:50:10.375] deleting part batteryBankMini
[LOG 09:50:17.786] xenonTank added to ship - part count: 7
[LOG 09:50:21.213] xenonTank added to ship - part count: 8
[LOG 09:50:40.412] IONRCSBlock added to ship - part count: 9
[LOG 09:50:40.413] IONRCSBlock added to ship - part count: 10
[LOG 09:50:40.414] IONRCSBlock added to ship - part count: 11
[LOG 09:50:40.414] IONRCSBlock added to ship - part count: 12
[LOG 09:50:44.404] IONRCSBlock added to ship - part count: 13
[LOG 09:50:44.405] IONRCSBlock added to ship - part count: 14
[LOG 09:50:44.406] IONRCSBlock added to ship - part count: 15
[LOG 09:50:44.406] IONRCSBlock added to ship - part count: 16
[LOG 09:51:15.929] [Pre-Flight Check]: Checking for CraftWithinPartCountLimit: PASS!
[LOG 09:51:15.930] [Pre-Flight Check]: Checking for CraftWithinSizeLimits: PASS!
[LOG 09:51:15.931] [Pre-Flight Check]: Checking for CraftWithinMassLimits: PASS!
[LOG 09:51:15.931] [Pre-Flight Check]: Checking for ExperimentalPartsAvailable: PASS!
[LOG 09:51:15.932] [Pre-Flight Check]: Checking for CanAffordLaunchTest: PASS!
[LOG 09:51:15.933] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 09:51:15.933] [Pre-Flight Check]: Checking for NoControlSources: PASS!
[LOG 09:51:15.934] [Pre-Flight Check]: Checking for LaunchSiteClear: PASS!
[LOG 09:51:15.935] [Pre-Flight Check]: All Checks Complete. Go for Launch!
[LOG 09:51:15.940] Launching vessel from LaunchPad. Craft file: R:/User/Emul/PC/KSP/Copy of KSP-1.1.2-Clean/KSP_x64_Data/../saves/Test/Ships/VAB/Auto-Saved Ship.craft
[LOG 09:51:15.941] [MessageSystem] Save Messages
[LOG 09:51:15.943] Game State Saved to saves/Test/persistent
[LOG 09:51:15.945] UIMasterController: HideUI
[WRN 09:51:15.961] [HighLogic]: =========================== Scene Change : From EDITOR to FLIGHT (Async) =====================
[LOG 09:51:16.172] [UIApp] OnDestroy: EngineersReport
[LOG 09:51:16.174] [UIApp] OnDestroy: KSPedia
[LOG 09:51:16.265] UIMasterController: HideUI
[WRN 09:51:16.819] The referenced script on this Behaviour is missing!
[WRN 09:51:16.821] The referenced script on this Behaviour is missing!
[WRN 09:51:17.136] [UiApp] Awake: ResourceDisplay
[LOG 09:51:17.136] UICanvasPrefabSpawner FlightUI spawning Flight
[LOG 09:51:17.211] AddonLoader: Instantiating addon 'NavWaypoint' from assembly 'KSP'
[LOG 09:51:17.214] AddonLoader: Instantiating addon 'AeroGUI' from assembly 'KSP'
[LOG 09:51:17.218] UIMasterController: HideUI
[LOG 09:51:17.245] ------------------- initializing flight mode... ------------------
[LOG 09:51:17.248] [MessageSystem] Save Messages
[LOG 09:51:17.250] Loading ship from file: R:/User/Emul/PC/KSP/Copy of KSP-1.1.2-Clean/KSP_x64_Data/../saves/Test/Ships/VAB/Auto-Saved Ship.craft
[LOG 09:51:17.316] Untitled Space Craft loaded!
[LOG 09:51:19.618] putting ship to ground: 13.62763
[LOG 09:51:19.623] [Untitled Space Craft]: Ready to Launch - waiting to start physics...
[LOG 09:51:19.629] [FLIGHT GLOBALS]: Switching To Vessel Untitled Space Craft ----------------------
[LOG 09:51:19.630] setting new dominant body: Kerbin
FlightGlobals.mainBody: Kerbin
[LOG 09:51:19.632] Reference Frame: Rotating
[LOG 09:51:19.637] Vessel assembly complete!
[LOG 09:51:19.637] all systems started
[LOG 09:51:19.666] [FlightIntegrator]: Reloaded drag cube for zeroed cube root part probeCoreOcto2 on vessel Untitled Space Craft
[LOG 09:51:19.924] Loading Depletion Nodes
[LOG 09:51:19.925] DepNodeCount:  0
[LOG 09:51:19.925] Loading Biome Nodes
[LOG 09:51:19.925] BiomeNodeCount:  0
[LOG 09:51:19.926] Loading Planet Nodes
[LOG 09:51:19.926] PlanetNodeCount:  0
[LOG 09:51:19.928] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:51:19.930] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:51:19.930] [UiApp] Awake: CurrencyWidgetsApp
[WRN 09:51:19.931] [UiApp] Awake: ResourceDisplay
[WRN 09:51:19.931] [UiApp] Awake: KSPedia
[LOG 09:51:19.932] [ApplicationLauncher] OnSceneLoadedGUIReady: scene FLIGHT ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 09:51:19.932] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 09:51:19.934] ScaleModList: listSize 41 maxListSize 849
[LOG 09:51:19.935] ScaleModList: listSize 41 maxListSize 840
[WRN 09:51:19.936] [KnowledgeBase] OnAppLauncherReady 8955
[LOG 09:51:19.943] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:51:20.005] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:51:20.006] [UIApp] OnDestroy: ContractsApp
[LOG 09:51:20.053] [FlightIntegrator]: Vessel Untitled Space Craft has been unloaded 1.79769313486232E+308, applying analytic temperature 310.049856285791
[LOG 09:51:20.055] [Progress Node Reached]: RecordsAltitude
[LOG 09:51:20.056] [Progress Node Reached]: RecordsSpeed
[LOG 09:51:20.057] [Progress Node Reached]: RecordsDistance
[WRN 09:51:20.058] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:51:20.059] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:51:20.059] [MessageSystem] Reposition 0.02 8956
[LOG 09:51:20.148] [PlanetariumCamera]: Focus: Untitled Space Craft
[LOG 09:51:20.257] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 09:51:20.259] ScaleModList: listSize 41 maxListSize 799
[LOG 09:51:20.261] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 09:51:20.262] ScaleModList: listSize 41 maxListSize 758
[WRN 09:51:20.349] [ResourceDisplay] OnAppStarted(): id: -291358
[LOG 09:51:20.351] [GenericAppFrame] Reposition 0.1703075 8960
[WRN 09:51:20.353] [ResourceDisplay] OnAppStarted(): id: 138744
[LOG 09:51:20.354] ResourceDisplay already exist, destroying this instance
[LOG 09:51:20.355] [UIApp] OnDestroy: ResourceDisplay
[LOG 09:51:20.356] ScaleModList: listSize 41 maxListSize 758
[LOG 09:51:20.446] CURRENCY WIDGET False False False
[LOG 09:51:20.449] [UIApp] OnDestroy: CurrencyWidgetsApp
[LOG 09:51:20.528] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:51:20.530] ScaleModList: listSize 41 maxListSize 758
[LOG 09:51:21.156] UIMasterController: ShowUI
[LOG 09:51:21.162] Flight State Captured
[LOG 09:51:21.163] Saving Achievements Tree...
[LOG 09:51:21.165] [MessageSystem] Save Messages
[LOG 09:51:21.173] Game State Saved as persistent
[LOG 09:51:24.001] HyperEdit: No winpos found for "HyperEdit", defaulting to 100,100
[LOG 09:51:26.624] Unpacking Untitled Space Craft
[LOG 09:51:26.986] HyperEdit: No winpos found for "Orbit Editor", defaulting to 100,100
[LOG 09:51:28.996] HyperEdit: Set ActiveVessel.Landed = false
[LOG 09:51:28.997] HyperEdit: Set ActiveVessel.landedAt = ""
[LOG 09:51:29.000] Packing Untitled Space Craft for orbit
[LOG 09:51:29.003] HyperEdit: Orbit "Active vessel" changed to: inc=0.0001 ecc=0 sma=700000 lan=0.0001 argpe=0 mep=0 epoch=0 refbody=Kerbin
[LOG 09:51:29.081] Reference Frame: Inertial
[LOG 09:51:29.097] [Progress Node Complete]: RecordsAltitude
[LOG 09:51:29.098] [Progress Node Complete]: RecordsDistance
[LOG 09:51:29.965] [Progress Node Reached]: Orbit
[LOG 09:51:29.966] [Progress Node Reached]: Kerbin
[LOG 09:51:29.966] [Progress Node Complete]: Orbit
[LOG 09:51:31.381] Unpacking Untitled Space Craft
[LOG 09:51:33.374] Reference Frame: Rotating
[LOG 09:51:35.505] GenericAppFrame: auto scaling app.
[LOG 09:51:35.552] GenericAppFrame: auto scaling app.
[LOG 09:51:43.601] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:03.726] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:16.381] RCS lock/unlock
[LOG 09:52:22.573] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:40.094] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:57.357] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:53:01.455] Reference Frame: Inertial
[LOG 09:53:14.802] SCREENSHOT!!
[LOG 09:53:15.960] [AsteroidSpawner]: New object found near Kerbin: Ast. ERS-253!
[LOG 09:53:42.177] [AsteroidSpawner]: New object found near Kerbin: Ast. FYB-870!
[LOG 09:54:10.880] [AsteroidSpawner]: New object found near Kerbin: Ast. GXH-155!
[LOG 09:54:21.180] UIMasterController: ShowUI
[LOG 09:54:21.181] Game Paused!
[LOG 09:54:24.298] [FlightDriver]: Flight State Reverted to Prelaunch.
[LOG 09:54:24.300] Game State Saved as persistent
[LOG 09:54:24.303] UIMasterController: ShowUI
[LOG 09:54:24.304] Game Unpaused!
[WRN 09:54:24.305] Can not play a disabled audio source
[LOG 09:54:24.306] UIMasterController: HideUI
[WRN 09:54:24.314] [HighLogic]: =========================== Scene Change : From FLIGHT to EDITOR =====================
[LOG 09:54:24.319] Progress data not uploaded because Game Settings disallow it.
[LOG 09:54:24.819] KbApp.OnDestroy Planet Resources
[LOG 09:54:24.820] [PlanetariumCamera]: Focus: Kerbin
[LOG 09:54:24.821] KbApp.OnDestroy Vessel Info
[LOG 09:54:24.822] KbApp.OnDestroy Unowned Info
[LOG 09:54:24.824] [UIApp] OnDestroy: KSPedia
[LOG 09:54:24.825] ScaleModList: listSize 41 maxListSize 758
[LOG 09:54:24.825] KbApp.OnDestroy NullName
[LOG 09:54:24.826] [UIApp] OnDestroy: ResourceDisplay
[LOG 09:54:24.826] ScaleModList: listSize 41 maxListSize 758
[LOG 09:54:24.827] KbApp.OnDestroy Planet Parameters
[LOG 09:54:24.827] KbApp.OnDestroy Vessel Crew
[LOG 09:54:24.828] KbApp.OnDestroy Planet Info
[WRN 09:54:24.845] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:54:24.845] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:54:24.846] UICanvasPrefabSpawner SceneLogic spawning Editor
[LOG 09:54:24.868] No Input Locks in effect right now
[LOG 09:54:24.951] UIMasterController: ShowUI
[WRN 09:54:25.135] The referenced script on this Behaviour is missing!
[WRN 09:54:25.135] The referenced script on this Behaviour is missing!
[WRN 09:54:25.136] The referenced script on this Behaviour is missing!
[WRN 09:54:26.060] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:54:26.061] ------------------- initializing editor mode... ------------------
[LOG 09:54:26.062] editor started
[LOG 09:54:26.077] IconLoader awake
[LOG 09:54:26.201] Untitled Space Craft loaded!
[LOG 09:54:26.394] Loading Depletion Nodes
[LOG 09:54:26.394] DepNodeCount:  0
[LOG 09:54:26.395] Loading Biome Nodes
[LOG 09:54:26.396] BiomeNodeCount:  0
[LOG 09:54:26.396] Loading Planet Nodes
[LOG 09:54:26.397] PlanetNodeCount:  0
[LOG 09:54:26.400] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:54:26.401] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:54:26.402] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:54:26.403] [UiApp] Awake: EngineersReport
[WRN 09:54:26.403] [UiApp] Awake: KSPedia
[LOG 09:54:26.404] [ApplicationLauncher] OnSceneLoadedGUIReady: scene EDITOR ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 09:54:26.405] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 09:54:26.408] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:54:26.414] [UIApp] OnDestroy: ContractsApp
[LOG 09:54:26.481] [MessageSystem] Reposition 0.02 12172
[LOG 09:54:26.650] [UIApp] Adding EngineersReport to Application Launcher
[LOG 09:54:26.690] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:54:26.692] [GenericAppFrame] Reposition 0.2314445 12178
[LOG 09:54:29.530] [MessageSystem] Save Messages
[LOG 09:54:29.532] Game State Saved to saves/Test/persistent
[LOG 09:54:29.533] UIMasterController: HideUI
[WRN 09:54:29.541] [HighLogic]: =========================== Scene Change : From EDITOR to SPACECENTER =====================
[WRN 09:54:29.590] The referenced script on this Behaviour is missing!
[WRN 09:54:29.590] The referenced script on this Behaviour is missing!
[WRN 09:54:29.590] The referenced script on this Behaviour is missing!
[WRN 09:54:29.591] The referenced script on this Behaviour is missing!
[WRN 09:54:29.591] The referenced script on this Behaviour is missing!
[WRN 09:54:29.591] The referenced script on this Behaviour is missing!
[LOG 09:54:29.776] [UIApp] OnDestroy: EngineersReport
[LOG 09:54:29.782] [UIApp] OnDestroy: KSPedia
[LOG 09:54:32.201] UIMasterController: ShowUI
[LOG 09:54:32.388] Loading Depletion Nodes
[LOG 09:54:32.389] DepNodeCount:  0
[LOG 09:54:32.389] Loading Biome Nodes
[LOG 09:54:32.390] BiomeNodeCount:  0
[LOG 09:54:32.390] Loading Planet Nodes
[LOG 09:54:32.391] PlanetNodeCount:  0
[LOG 09:54:32.394] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:54:32.397] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:54:32.397] [UiApp] Awake: KSPedia
[LOG 09:54:32.398] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop False
[LOG 09:54:32.399] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:54:32.403] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:54:32.403] [UIApp] OnDestroy: ContractsApp
[WRN 09:54:32.589] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:54:32.589] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:54:32.590] [MessageSystem] Reposition 0.02 12252
[LOG 09:54:33.011] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:54:34.657] UIMasterController: ShowUI
[LOG 09:54:34.658] Game Paused!
[LOG 09:54:36.053] Flight State Captured
[LOG 09:54:36.054] Saving Achievements Tree...
[LOG 09:54:36.055] [MessageSystem] Save Messages
[LOG 09:54:36.057] Game State Saved to saves/Test/persistent
[LOG 09:54:36.060] UIMasterController: ShowUI
[LOG 09:54:36.060] Game Unpaused!
[LOG 09:54:36.062] UIMasterController: HideUI
[WRN 09:54:36.064] [HighLogic]: =========================== Scene Change : From SPACECENTER to MAINMENU (Async) =====================
[LOG 09:54:36.066] UIMasterController: ShowUI
[LOG 09:54:36.066] Game Unpaused!
[LOG 09:54:36.436] [UIApp] OnDestroy: KSPedia
[LOG 09:54:36.521] UIMasterController: HideUI
[LOG 09:54:37.998] UIMasterController: ShowUI
[WRN 09:54:38.657] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:54:38.658] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 09:54:38.658] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 09:54:38.660] [ApplicationLauncher] SetHidden:
[LOG 09:54:38.661] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[WRN 09:54:38.665] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:54:38.665] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:54:38.666] [MessageSystem] Reposition 0.02 12318
[LOG 09:54:46.068] [UIApp] OnDestroy: MessageSystem

 

 

Edited by Teilnehmer
Link to comment
Share on other sites

16 hours ago, Teilnehmer said:

Hi, @JPLRepo!

In 0.1.1.0, 4-way ION RCS block does not allow to roll left for some reason. Pitch, yaw, roll right, and translation are OK. 45° block and linear ports are OK too.

Here’s my log:

  Reveal hidden contents

Kerbal Space Program - 1.1.2.1260 (WindowsPlayer)


OS: Windows 7 Service Pack 1 (6.1.7601) 64bit
CPU: Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz (4)
RAM: 8068
GPU: Intel(R) HD Graphics (880MB)
SM: 30 (Direct3D 9.0c [igdumd64.dll 9.17.10.2884])
RT Formats: ARGB32, Depth, ARGBHalf, Shadowmap, RGB565, ARGB4444, ARGB1555, Default, ARGB2101010, DefaultHDR, ARGBFloat, RGFloat, RGHalf, RFloat, RHalf


Log started: Thu, Jun 09, 2016 09:47:43


[LOG 09:47:43.476] ******* Log Initiated for Kerbal Space Program - 1.1.2.1260 (WindowsPlayer) *******
[WRN 09:47:45.406] [SpaceNavigatorWindows]: Could not initialize device.

[LOG 09:47:45.417] ActionCanvas MASK: 3458764513820540928
[LOG 09:47:45.418] MainCanvas MASK: 3458764513820540928
[LOG 09:47:45.419] AppCanvas MASK: 3458764513820540928
[LOG 09:47:45.436] PhysicsGlobals: Loading database
[LOG 09:47:46.685] Load(Assembly): Kerbaltek/HyperEdit-1.5.2_for-KSP-1.1.2
[LOG 09:47:46.686] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Kerbaltek\HyperEdit-1.5.2_for-KSP-1.1.2.dll
[LOG 09:47:46.725] Load(Assembly): REPOSoftTech/IONRCS/MiniAVC
[LOG 09:47:46.725] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\MiniAVC.dll
[LOG 09:47:46.740] Load(Assembly): REPOSoftTech/IONRCS/Plugins/IONRCS
[LOG 09:47:46.740] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\Plugins\IONRCS.dll
[LOG 09:47:46.754] AssemblyLoader: KSPAssembly 'IONRCS' V0.1
[LOG 09:47:46.755] Load(Assembly): Squad/Plugins/SaveUpgradePipeline.Scripts
[LOG 09:47:46.755] AssemblyLoader: Loading assembly at R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\Plugins\SaveUpgradePipeline.Scripts.dll
[LOG 09:47:46.790] AssemblyLoader: Loading assemblies
[LOG 09:47:46.814] VesselModules: Found VesselModule of type FlightIntegrator with order 0
[LOG 09:47:46.816] VesselModules: Found 1 VesselModule types
[LOG 09:47:46.821]
************************************************************************

Environment Info
Win32NT 7FFFFFFFFFFFFFFF  Args: KSP_x64.exe

Mod DLLs found:
Stock assembly: Assembly-CSharp v0.0.0.0
HyperEdit v1.5.0.0
MiniAVC v1.0.3.0
IONRCS v0.1.1.0
Stock assembly: SaveUpgradePipeline.Scripts v1.0.0.2 / v1.0.0.21

Folders and files in GameData:
Kerbaltek
REPOSoftTech
Stock folder: Squad


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

[LOG 09:47:46.829] AddonLoader: Instantiating addon 'Logger' from assembly 'MiniAVC'
[LOG 09:47:46.831] AddonLoader: Instantiating addon 'Starter' from assembly 'MiniAVC'
[LOG 09:47:47.584] Load(Audio): Squad/Parts/Utility/landingLegLT-1/sounds/sound_servomotor
[LOG 09:47:47.598] MiniAVC -> Executing: MiniAVC - 1.0.3.0
[LOG 09:47:47.599] MiniAVC -> Assembly: R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\MiniAVC.dll
[LOG 09:47:47.599] MiniAVC -> Starter was created.
[LOG 09:47:47.832] MiniAVC -> FirstRunGui was created.
[LOG 09:47:56.993] Load(Audio): Squad/Sounds/editorLoop01
[LOG 09:47:57.192] Load(Audio): Squad/Sounds/sound_ambience_nature
[LOG 09:47:57.308] Load(Audio): Squad/Sounds/sound_click_flick
[LOG 09:47:57.352] Load(Audio): Squad/Sounds/sound_click_latch
[LOG 09:47:57.363] Load(Audio): Squad/Sounds/sound_click_sharp
[LOG 09:47:57.377] Load(Audio): Squad/Sounds/sound_click_tick
[LOG 09:47:57.387] Load(Audio): Squad/Sounds/sound_click_tock
[LOG 09:47:57.401] Load(Audio): Squad/Sounds/sound_decoupler_fire
[LOG 09:47:57.416] Load(Audio): Squad/Sounds/sound_delete_bin
[LOG 09:47:57.430] Load(Audio): Squad/Sounds/sound_explosion_debris1
[LOG 09:47:57.451] Load(Audio): Squad/Sounds/sound_explosion_debris2
[LOG 09:47:57.469] Load(Audio): Squad/Sounds/sound_explosion_large
[LOG 09:47:57.487] Load(Audio): Squad/Sounds/sound_rocket_mini
[LOG 09:47:57.505] Load(Audio): Squad/Sounds/sound_rocket_spurts
[LOG 09:47:57.529] Load(Audio): Squad/Sounds/sound_tab_extend
[LOG 09:47:57.538] Load(Audio): Squad/Sounds/sound_tab_retreat
[LOG 09:47:57.548] Load(Texture): Kerbaltek/Flags/Kerbaltek-Aerospace
[LOG 09:47:57.565] Load(Texture): Kerbaltek/Flags/Kerbaltek-Rocket
[LOG 09:47:57.581] Load(Texture): Kerbaltek/Flags/Kerbaltek-Satellite
[LOG 09:47:57.597] Load(Texture): Kerbaltek/Flags/Kerbaltek-Spaceplane
[LOG 09:47:57.614] Load(Texture): Kerbaltek/Flags/Kerbaltek-Station
[LOG 09:47:57.629] Load(Texture): REPOSoftTech/Agencies/REPOSoftTech
[LOG 09:47:57.642] Load(Texture): REPOSoftTech/Agencies/REPOSoftTech_scaled
[LOG 09:47:57.646] Load(Texture): REPOSoftTech/IONRCS/Icons/Teflon
[LOG 09:47:57.662] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONRCSBlock45
[LOG 09:47:57.668] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONRCSBlock
[LOG 09:47:57.672] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/model000
[LOG 09:47:57.677] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/model001
[LOG 09:47:57.681] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/model000
[LOG 09:47:57.688] Load(Texture): REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/model001
[LOG 09:47:57.697] Load(Texture): Squad/Agencies/C7AerospaceDivision
[LOG 09:47:57.719] Load(Texture): Squad/Agencies/C7AerospaceDivision_scaled
[LOG 09:47:57.730] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium
[LOG 09:47:57.751] Load(Texture): Squad/Agencies/DinkelsteinKermansConstructionEmporium_scaled
[LOG 09:47:57.773] Load(Texture): Squad/Agencies/ExperimentalEngineering
[LOG 09:47:57.793] Load(Texture): Squad/Agencies/ExperimentalEngineering_scaled
[LOG 09:47:57.816] Load(Texture): Squad/Agencies/FlooydResearchLab
[LOG 09:47:57.837] Load(Texture): Squad/Agencies/FlooydResearchLab_scaled
[LOG 09:47:57.855] Load(Texture): Squad/Agencies/GoliathNationalProducts
[LOG 09:47:57.876] Load(Texture): Squad/Agencies/GoliathNationalProducts_scaled
[LOG 09:47:57.892] Load(Texture): Squad/Agencies/IntegratedIntegrals
[LOG 09:47:57.907] Load(Texture): Squad/Agencies/IntegratedIntegrals_scaled
[LOG 09:47:57.916] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics
[LOG 09:47:57.927] Load(Texture): Squad/Agencies/IonicSymphonicProtonicElectronics_scaled
[LOG 09:47:57.966] Load(Texture): Squad/Agencies/JebsJunkyard
[LOG 09:47:57.996] Load(Texture): Squad/Agencies/JebsJunkyard_scaled
[LOG 09:47:58.014] Load(Texture): Squad/Agencies/KerbalMotion
[LOG 09:47:58.032] Load(Texture): Squad/Agencies/KerbalMotion_scaled
[LOG 09:47:58.038] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety
[LOG 09:47:58.049] Load(Texture): Squad/Agencies/KerbinWorldFirstRecordKeepingSociety_scaled
[LOG 09:47:58.070] Load(Texture): Squad/Agencies/Kerbodyne
[LOG 09:47:58.073] Load(Texture): Squad/Agencies/Kerbodyne_scaled
[LOG 09:47:58.102] Load(Texture): Squad/Agencies/Kerlington
[LOG 09:47:58.124] Load(Texture): Squad/Agencies/Kerlington_scaled
[LOG 09:47:58.149] Load(Texture): Squad/Agencies/MaxoConstructionToys
[LOG 09:47:58.152] Load(Texture): Squad/Agencies/MaxoConstructionToys_scaled
[LOG 09:47:58.176] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup
[LOG 09:47:58.180] Load(Texture): Squad/Agencies/MovingPartsExpertsGroup_scaled
[LOG 09:47:58.201] Load(Texture): Squad/Agencies/OMBDemolition
[LOG 09:47:58.212] Load(Texture): Squad/Agencies/OMBDemolition_scaled
[LOG 09:47:58.247] Load(Texture): Squad/Agencies/PeriapsisCo
[LOG 09:47:58.280] Load(Texture): Squad/Agencies/PeriapsisCo_scaled
[LOG 09:47:58.284] Load(Texture): Squad/Agencies/Probodobodyne
[LOG 09:47:58.291] Load(Texture): Squad/Agencies/Probodobodyne_scaled
[LOG 09:47:58.310] Load(Texture): Squad/Agencies/R&D
[LOG 09:47:58.332] Load(Texture): Squad/Agencies/R&D_scaled
[LOG 09:47:58.335] Load(Texture): Squad/Agencies/ReactionSystemsLtd
[LOG 09:47:58.340] Load(Texture): Squad/Agencies/ReactionSystemsLtd_scaled
[LOG 09:47:58.345] Load(Texture): Squad/Agencies/Rockomax
[LOG 09:47:58.352] Load(Texture): Squad/Agencies/Rockomax_scaled
[LOG 09:47:58.357] Load(Texture): Squad/Agencies/Rokea
[LOG 09:47:58.362] Load(Texture): Squad/Agencies/Rokea_scaled
[LOG 09:47:58.369] Load(Texture): Squad/Agencies/SeansCannery
[LOG 09:47:58.373] Load(Texture): Squad/Agencies/SeansCannery_scaled
[LOG 09:47:58.377] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps
[LOG 09:47:58.382] Load(Texture): Squad/Agencies/SteadlerEngineeringCorps_scaled
[LOG 09:47:58.409] Load(Texture): Squad/Agencies/StrutCo
[LOG 09:47:58.429] Load(Texture): Squad/Agencies/StrutCo_scaled
[LOG 09:47:58.433] Load(Texture): Squad/Agencies/Vac-Co
[LOG 09:47:58.453] Load(Texture): Squad/Agencies/Vac-Co_scaled
[LOG 09:47:58.456] Load(Texture): Squad/Agencies/WinterOwl
[LOG 09:47:58.467] Load(Texture): Squad/Agencies/WinterOwl_scaled
[LOG 09:47:58.470] Load(Texture): Squad/Agencies/ZaltonicElectronics
[LOG 09:47:58.493] Load(Texture): Squad/Agencies/ZaltonicElectronics_scaled
[LOG 09:47:58.496] Load(Texture): Squad/Contracts/Icons/balloon
[LOG 09:47:58.508] Load(Texture): Squad/Contracts/Icons/default
[LOG 09:47:58.511] Load(Texture): Squad/Contracts/Icons/dish
[LOG 09:47:58.515] Load(Texture): Squad/Contracts/Icons/eva
[LOG 09:47:58.537] Load(Texture): Squad/Contracts/Icons/gravity
[LOG 09:47:58.539] Load(Texture): Squad/Contracts/Icons/marker
[LOG 09:47:58.563] Load(Texture): Squad/Contracts/Icons/pressure
[LOG 09:47:58.595] Load(Texture): Squad/Contracts/Icons/report
[LOG 09:47:58.634] Load(Texture): Squad/Contracts/Icons/sample
[LOG 09:47:58.644] Load(Texture): Squad/Contracts/Icons/seismic
[LOG 09:47:58.647] Load(Texture): Squad/Contracts/Icons/thermometer
[LOG 09:47:58.658] Load(Texture): Squad/Contracts/Icons/vessel
[LOG 09:47:58.667] Load(Texture): Squad/Flags/09
[LOG 09:47:58.703] Load(Texture): Squad/Flags/blorbs
[LOG 09:47:58.735] Load(Texture): Squad/Flags/bullseye
[LOG 09:47:58.763] Load(Texture): Squad/Flags/capsule
[LOG 09:47:58.797] Load(Texture): Squad/Flags/circles
[LOG 09:47:58.829] Load(Texture): Squad/Flags/default
[LOG 09:47:58.847] Load(Texture): Squad/Flags/esa_dark_blue
[LOG 09:47:58.880] Load(Texture): Squad/Flags/hexagon
[LOG 09:47:58.909] Load(Texture): Squad/Flags/hexagonCircles
[LOG 09:47:58.936] Load(Texture): Squad/Flags/kerbal1
[LOG 09:47:58.962] Load(Texture): Squad/Flags/kerbal2
[LOG 09:47:58.994] Load(Texture): Squad/Flags/kerbin
[LOG 09:47:59.014] Load(Texture): Squad/Flags/kerbinmunflag
[LOG 09:47:59.030] Load(Texture): Squad/Flags/line
[LOG 09:47:59.061] Load(Texture): Squad/Flags/minimalistic
[LOG 09:47:59.099] Load(Texture): Squad/Flags/NASA
[LOG 09:47:59.132] Load(Texture): Squad/Flags/orbit
[LOG 09:47:59.151] Load(Texture): Squad/Flags/orbs
[LOG 09:47:59.182] Load(Texture): Squad/Flags/retro
[LOG 09:47:59.224] Load(Texture): Squad/Flags/rings
[LOG 09:47:59.245] Load(Texture): Squad/Flags/rocketScience
[LOG 09:47:59.263] Load(Texture): Squad/Flags/satellite
[LOG 09:47:59.280] Load(Texture): Squad/Flags/spheres
[LOG 09:47:59.299] Load(Texture): Squad/Flags/squadLogo
[LOG 09:47:59.315] Load(Texture): Squad/Flags/squadLogo2
[LOG 09:47:59.347] Load(Texture): Squad/Flags/stripes
[LOG 09:47:59.366] Load(Texture): Squad/Flags/trees
[LOG 09:47:59.401] Load(Texture): Squad/Flags/trippy
[LOG 09:47:59.441] Load(Texture): Squad/Flags/uk_space_agency
[LOG 09:47:59.484] Load(Texture): Squad/FX/DiamondBlue
[LOG 09:47:59.504] Load(Texture): Squad/FX/FlameBlueOrange
[LOG 09:47:59.522] Load(Texture): Squad/FX/FlamePurple
[LOG 09:47:59.529] Load(Texture): Squad/FX/FlameRed
[LOG 09:47:59.541] Load(Texture): Squad/FX/FlameRedOrange
[LOG 09:47:59.554] Load(Texture): Squad/FX/plasma2
[LOG 09:47:59.578] Load(Texture): Squad/FX/rocketplume2
[LOG 09:47:59.600] Load(Texture): Squad/FX/shockDiamond2
[LOG 09:47:59.621] Load(Texture): Squad/FX/smokepuff1
[LOG 09:47:59.644] Load(Texture): Squad/PartList/SimpleIcons/cs_main
[LOG 09:47:59.677] Load(Texture): Squad/PartList/SimpleIcons/cs_mk2
[LOG 09:47:59.705] Load(Texture): Squad/PartList/SimpleIcons/cs_mk3
[LOG 09:47:59.731] Load(Texture): Squad/PartList/SimpleIcons/cs_size0
[LOG 09:47:59.759] Load(Texture): Squad/PartList/SimpleIcons/cs_size1
[LOG 09:47:59.790] Load(Texture): Squad/PartList/SimpleIcons/cs_size2
[LOG 09:47:59.817] Load(Texture): Squad/PartList/SimpleIcons/cs_size3
[LOG 09:47:59.839] Load(Texture): Squad/PartList/SimpleIcons/cs_surface
[LOG 09:47:59.853] Load(Texture): Squad/PartList/SimpleIcons/fuels_monopropellant
[LOG 09:47:59.873] Load(Texture): Squad/PartList/SimpleIcons/fuels_ore
[LOG 09:47:59.889] Load(Texture): Squad/PartList/SimpleIcons/fuels_oxidizer
[LOG 09:47:59.908] Load(Texture): Squad/PartList/SimpleIcons/fuels_solidfuel
[LOG 09:47:59.922] Load(Texture): Squad/PartList/SimpleIcons/fuels_xenongas
[LOG 09:47:59.937] Load(Texture): Squad/PartList/SimpleIcons/number1
[LOG 09:47:59.952] Load(Texture): Squad/PartList/SimpleIcons/number2
[LOG 09:47:59.974] Load(Texture): Squad/PartList/SimpleIcons/number3
[LOG 09:47:59.984] Load(Texture): Squad/PartList/SimpleIcons/number4
[LOG 09:48:00.003] Load(Texture): Squad/PartList/SimpleIcons/number5
[LOG 09:48:00.016] Load(Texture): Squad/PartList/SimpleIcons/number6
[LOG 09:48:00.039] Load(Texture): Squad/PartList/SimpleIcons/number7
[LOG 09:48:00.053] Load(Texture): Squad/PartList/SimpleIcons/number8
[LOG 09:48:00.081] Load(Texture): Squad/PartList/SimpleIcons/number9
[LOG 09:48:00.096] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advaerodynamics
[LOG 09:48:00.113] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advancedmotors
[LOG 09:48:00.128] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advconstruction
[LOG 09:48:00.146] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advelectrics
[LOG 09:48:00.165] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advexploration
[LOG 09:48:00.178] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advflightcontrol
[LOG 09:48:00.193] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advlanding
[LOG 09:48:00.206] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advmetalworks
[LOG 09:48:00.220] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advrocketry
[LOG 09:48:00.242] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advsciencetech
[LOG 09:48:00.258] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_advunmanned
[LOG 09:48:00.276] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerodynamicsystems
[LOG 09:48:00.285] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_aerospacetech
[LOG 09:48:00.301] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_automation
[LOG 09:48:00.315] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicprobes
[LOG 09:48:00.325] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_basicrocketry
[LOG 09:48:00.336] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_composites
[LOG 09:48:00.360] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electrics
[LOG 09:48:00.370] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_electronics
[LOG 09:48:00.391] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_evatech
[LOG 09:48:00.405] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalaerodynamics
[LOG 09:48:00.420] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalelectrics
[LOG 09:48:00.431] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalmotors
[LOG 09:48:00.445] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalrocketry
[LOG 09:48:00.464] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_experimentalscience
[LOG 09:48:00.476] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fieldscience
[LOG 09:48:00.490] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_flightcontrol
[LOG 09:48:00.513] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_fuelsystems
[LOG 09:48:00.527] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalconstruction
[LOG 09:48:00.551] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generalrocketry
[LOG 09:48:00.562] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_generic
[LOG 09:48:00.582] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavierrocketry
[LOG 09:48:00.592] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyaerodynamics
[LOG 09:48:00.612] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_heavyrocketry
[LOG 09:48:00.639] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudeflight
[LOG 09:48:00.653] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_highaltitudepropulsion
[LOG 09:48:00.667] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_hypersonicflight
[LOG 09:48:00.699] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_ionpropulsion
[LOG 09:48:00.713] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_landing
[LOG 09:48:00.730] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largecontrol
[LOG 09:48:00.748] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeelectrics
[LOG 09:48:00.762] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_largeprobes
[LOG 09:48:00.790] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_metamaterials
[LOG 09:48:00.804] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nanolathing
[LOG 09:48:00.817] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_nuclearpropulsion
[LOG 09:48:00.872] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_precisionengineering
[LOG 09:48:00.885] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_robotics
[LOG 09:48:00.899] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_sciencetech
[LOG 09:48:00.922] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedconstruction
[LOG 09:48:00.972] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedcontrol
[LOG 09:48:00.990] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_specializedelectrics
[LOG 09:48:01.008] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_stability
[LOG 09:48:01.053] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_start
[LOG 09:48:01.067] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_supersonicflight
[LOG 09:48:01.085] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_survivability
[LOG 09:48:01.102] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_unmannedtech
[LOG 09:48:01.120] Load(Texture): Squad/PartList/SimpleIcons/R&D_node_icon_veryheavyrocketry
[LOG 09:48:01.178] Load(Texture): Squad/PartList/SimpleIcons/RDicon_aerospaceTech2
[LOG 09:48:01.215] Load(Texture): Squad/PartList/SimpleIcons/RDicon_commandmodules
[LOG 09:48:01.295] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-advanced
[LOG 09:48:01.398] Load(Texture): Squad/PartList/SimpleIcons/RDicon_fuelSystems-highPerformance
[LOG 09:48:01.554] Load(Texture): Squad/PartList/SimpleIcons/RDicon_largeVolumeContainment
[LOG 09:48:01.638] Load(Texture): Squad/PartList/SimpleIcons/RDicon_miniaturization
[LOG 09:48:01.683] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsion-precision
[LOG 09:48:01.723] Load(Texture): Squad/PartList/SimpleIcons/RDicon_propulsionSystems
[LOG 09:48:01.763] Load(Texture): Squad/PartList/SimpleIcons/RDicon_telescope
[LOG 09:48:01.803] Load(Texture): Squad/Parts/Aero/aerodynamicNoseCone/Nosecone
[LOG 09:48:01.852] Load(Texture): Squad/Parts/Aero/airbrake/Airbrake
[LOG 09:48:01.895] Load(Texture): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 09:48:01.956] Load(Texture): Squad/Parts/Aero/airlinerWings/AirlinerWings
[LOG 09:48:02.137] Load(Texture): Squad/Parts/Aero/airplaneFins/AirplaneFins
[LOG 09:48:02.226] Load(Texture): Squad/Parts/Aero/basicFin/BasicFin
[LOG 09:48:02.267] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes
[LOG 09:48:02.327] Load(Texture): Squad/Parts/Aero/circularIntake/CircluarIntakes_Heat
[LOG 09:48:02.361] Load(Texture): Squad/Parts/Aero/cones/Cones
[LOG 09:48:02.432] Load(Texture): Squad/Parts/Aero/cones/Cones_Heat
[LOG 09:48:02.494] Load(Texture): Squad/Parts/Aero/fairings/FairingBase
[LOG 09:48:02.531] Load(Texture): Squad/Parts/Aero/fairings/fairings_diff
[LOG 09:48:02.588] Load(Texture): Squad/Parts/Aero/HeatShield/Fairing
[LOG 09:48:02.648] Load(Texture): Squad/Parts/Aero/HeatShield/heatshield
[LOG 09:48:02.705] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 09:48:02.882] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShieldFairing
[LOG 09:48:02.941] Load(Texture): Squad/Parts/Aero/InflatableHeatShield/HeatShield_NRM
[LOG 09:48:03.106] Load(Texture): Squad/Parts/Aero/intakeRadialLong/Radial_long
[LOG 09:48:03.329] Load(Texture): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 09:48:03.385] Load(Texture): Squad/Parts/Aero/protectiveRocketNoseMk7/model000
[LOG 09:48:03.404] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 09:48:03.426] Load(Texture): Squad/Parts/Aero/ramAirIntake/RampIntake_Heat
[LOG 09:48:03.442] Load(Texture): Squad/Parts/Aero/shuttleWings/ShuttleWings
[LOG 09:48:03.529] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model000
[LOG 09:48:03.565] Load(Texture): Squad/Parts/Aero/wingletAV-R8/model001
[LOG 09:48:03.587] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model000
[LOG 09:48:03.614] Load(Texture): Squad/Parts/Aero/wingletAV-T1/model001
[LOG 09:48:03.660] Load(Texture): Squad/Parts/Aero/wingletDeltaDeluxe/model000
[LOG 09:48:03.678] Load(Texture): Squad/Parts/Aero/wings/Wings
[LOG 09:48:03.711] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model000
[LOG 09:48:03.740] Load(Texture): Squad/Parts/Command/advancedSasModuleLarge/model001
[LOG 09:48:03.760] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_diff
[LOG 09:48:03.835] Load(Texture): Squad/Parts/Command/cupola/ksp_l_cupola_normal
[LOG 09:48:03.841] Load(Texture): Squad/Parts/Command/cupola/window
[LOG 09:48:03.844] Load(Texture): Squad/Parts/Command/externalCommandSeat/model000
[LOG 09:48:03.931] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin
[LOG 09:48:03.943] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/cabin_n
[LOG 09:48:03.980] Load(Texture): Squad/Parts/Command/hitchhikerStorageContainer/window
[LOG 09:48:03.982] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model000
[LOG 09:48:04.008] Load(Texture): Squad/Parts/Command/inlineAdvancedStabilizer/model001
[LOG 09:48:04.053] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model000
[LOG 09:48:04.085] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model001
[LOG 09:48:04.174] Load(Texture): Squad/Parts/Command/inlineReactionWheel/model002
[LOG 09:48:04.183] Load(Texture): Squad/Parts/Command/Mk1-2Pod/ladder
[LOG 09:48:04.194] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch NRM
[LOG 09:48:04.220] Load(Texture): Squad/Parts/Command/Mk1-2Pod/mk 1-2 external shell Variant-Hatch
[LOG 09:48:04.233] Load(Texture): Squad/Parts/Command/Mk1-2Pod/walls
[LOG 09:48:04.287] Load(Texture): Squad/Parts/Command/Mk1-2Pod/window
[LOG 09:48:04.290] Load(Texture): Squad/Parts/Command/mk1Cockpits/GLOW
[LOG 09:48:04.319] Load(Texture): Squad/Parts/Command/mk1Cockpits/Mk1Cockpit
[LOG 09:48:04.332] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_diff
[LOG 09:48:04.427] Load(Texture): Squad/Parts/Command/mk1LanderCan/ksp_s_landerCan_normal
[LOG 09:48:04.466] Load(Texture): Squad/Parts/Command/mk1pod/hatch
[LOG 09:48:04.486] Load(Texture): Squad/Parts/Command/mk1pod/ladderrung
[LOG 09:48:04.490] Load(Texture): Squad/Parts/Command/mk1pod/outer shell NRM
[LOG 09:48:04.534] Load(Texture): Squad/Parts/Command/mk1pod/outer shell
[LOG 09:48:04.572] Load(Texture): Squad/Parts/Command/mk1pod/window
[LOG 09:48:04.598] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_A
[LOG 09:48:04.637] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_Emissive
[LOG 09:48:04.764] Load(Texture): Squad/Parts/Command/mk2CockpitInline/Cockpit_inline_normal
[LOG 09:48:04.875] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit
[LOG 09:48:05.011] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_Lum
[LOG 09:48:05.053] Load(Texture): Squad/Parts/Command/mk2CockpitStandard/Cockpit_NRM
[LOG 09:48:05.107] Load(Texture): Squad/Parts/Command/mk2DroneCore/mk2Dronecore
[LOG 09:48:05.142] Load(Texture): Squad/Parts/Command/mk2LanderCan/ladder
[LOG 09:48:05.177] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell
[LOG 09:48:05.232] Load(Texture): Squad/Parts/Command/mk2LanderCan/outershell_n
[LOG 09:48:05.277] Load(Texture): Squad/Parts/Command/mk2LanderCan/window
[LOG 09:48:05.320] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle
[LOG 09:48:05.364] Load(Texture): Squad/Parts/Command/mk3CockpitShuttle/Mk3CockpitShuttle_LUM
[LOG 09:48:05.409] Load(Texture): Squad/Parts/Command/probeCoreCube/model000
[LOG 09:48:05.447] Load(Texture): Squad/Parts/Command/probeCoreCube/model001
[LOG 09:48:05.491] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_diff
[LOG 09:48:05.528] Load(Texture): Squad/Parts/Command/probeCoreHex/ksp_m_hexProbe_normal
[LOG 09:48:05.559] Load(Texture): Squad/Parts/Command/probeCoreOcto/model000
[LOG 09:48:05.589] Load(Texture): Squad/Parts/Command/probeCoreOcto/model001
[LOG 09:48:05.619] Load(Texture): Squad/Parts/Command/probeCoreOcto2/model000
[LOG 09:48:05.650] Load(Texture): Squad/Parts/Command/probeRoverBody/model000
[LOG 09:48:05.682] Load(Texture): Squad/Parts/Command/probeRoverBody/model001
[LOG 09:48:05.722] Load(Texture): Squad/Parts/Command/probeStackLarge/model000
[LOG 09:48:05.765] Load(Texture): Squad/Parts/Command/probeStackLarge/model001
[LOG 09:48:05.809] Load(Texture): Squad/Parts/Command/probeStackSmall/model000
[LOG 09:48:05.851] Load(Texture): Squad/Parts/Command/probeStackSmall/model001
[LOG 09:48:05.892] Load(Texture): Squad/Parts/Command/probeStackSphere/model000
[LOG 09:48:05.931] Load(Texture): Squad/Parts/Command/probeStackSphere/model001
[LOG 09:48:05.966] Load(Texture): Squad/Parts/CompoundParts/fuelLine/model000
[LOG 09:48:05.998] Load(Texture): Squad/Parts/CompoundParts/strutConnector/model000
[LOG 09:48:06.029] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model000
[LOG 09:48:06.060] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model001
[LOG 09:48:06.090] Load(Texture): Squad/Parts/Electrical/1x6ShroudSolarPanels/model002
[LOG 09:48:06.120] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model000
[LOG 09:48:06.150] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model001
[LOG 09:48:06.181] Load(Texture): Squad/Parts/Electrical/1x6SolarPanels/model002
[LOG 09:48:06.212] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model000
[LOG 09:48:06.243] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model001
[LOG 09:48:06.285] Load(Texture): Squad/Parts/Electrical/3x2ShroudSolarPanels/model002
[LOG 09:48:06.326] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model000
[LOG 09:48:06.362] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model001
[LOG 09:48:06.406] Load(Texture): Squad/Parts/Electrical/3x2SolarPanels/model002
[LOG 09:48:06.452] Load(Texture): Squad/Parts/Electrical/gigantorXlSolarArray/panel
[LOG 09:48:06.492] Load(Texture): Squad/Parts/Electrical/radialFlatSolarPanel/model000
[LOG 09:48:06.533] Load(Texture): Squad/Parts/Electrical/RTG/model000
[LOG 09:48:06.568] Load(Texture): Squad/Parts/Electrical/z-100Battery/model000
[LOG 09:48:06.582] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model000
[LOG 09:48:06.586] Load(Texture): Squad/Parts/Electrical/z-1kBattery/model001
[LOG 09:48:06.592] Load(Texture): Squad/Parts/Electrical/z-200Battery/ksp_m_batteryPack_diff
[LOG 09:48:06.596] Load(Texture): Squad/Parts/Electrical/z-400Battery/model000
[LOG 09:48:06.671] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_diff
[LOG 09:48:06.676] Load(Texture): Squad/Parts/Electrical/z-4kBattery/ksp_l_batteryPack_normal
[LOG 09:48:06.682] Load(Texture): Squad/Parts/Engine/ionEngine/model000
[LOG 09:48:06.687] Load(Texture): Squad/Parts/Engine/jetEngines/Jet Engines
[LOG 09:48:06.698] Load(Texture): Squad/Parts/Engine/jetEngines/Jet_Heat
[LOG 09:48:06.707] Load(Texture): Squad/Parts/Engine/liquidEngine24-77/model000
[LOG 09:48:06.710] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_diff
[LOG 09:48:06.716] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidEngine_norm
[LOG 09:48:06.723] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_norm
[LOG 09:48:06.730] Load(Texture): Squad/Parts/Engine/liquidEngine48-7S/ksp_m_liquidFuelEngine_fairing_psd
[LOG 09:48:06.735] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike
[LOG 09:48:06.739] Load(Texture): Squad/Parts/Engine/liquidEngineAerospike/Aerospike_Heat
[LOG 09:48:06.748] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/model000
[LOG 09:48:06.753] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1/model001
[LOG 09:48:06.758] Load(Texture): Squad/Parts/Engine/liquidEngineLV-1R/ksp_r_microEngine_diff
[LOG 09:48:06.766] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/bigfairing
[LOG 09:48:06.773] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3
[LOG 09:48:06.778] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_emissive
[LOG 09:48:06.787] Load(Texture): Squad/Parts/Engine/liquidEngineLV-909/engine3_n
[LOG 09:48:06.793] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model000
[LOG 09:48:06.812] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model001
[LOG 09:48:06.818] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model002
[LOG 09:48:06.821] Load(Texture): Squad/Parts/Engine/liquidEngineLV-N/model003
[LOG 09:48:06.829] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model000
[LOG 09:48:06.833] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model001
[LOG 09:48:06.840] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T30/model002
[LOG 09:48:06.849] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model000
[LOG 09:48:06.854] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model001
[LOG 09:48:06.858] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model002
[LOG 09:48:06.863] Load(Texture): Squad/Parts/Engine/liquidEngineLV-T45/model003
[LOG 09:48:06.872] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model000
[LOG 09:48:06.877] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model001
[LOG 09:48:06.882] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model002
[LOG 09:48:06.893] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model003
[LOG 09:48:06.899] Load(Texture): Squad/Parts/Engine/liquidEngineMainsail/model004
[LOG 09:48:06.907] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 09:48:06.913] Load(Texture): Squad/Parts/Engine/liquidEngineMk55/Thud_Heat
[LOG 09:48:06.917] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model000
[LOG 09:48:06.921] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model001
[LOG 09:48:06.926] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model002
[LOG 09:48:06.932] Load(Texture): Squad/Parts/Engine/liquidEnginePoodle/model003
[LOG 09:48:06.936] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_diff
[LOG 09:48:06.944] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_emissive
[LOG 09:48:06.951] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_diff
[LOG 09:48:06.958] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_fairing_norm
[LOG 09:48:06.970] Load(Texture): Squad/Parts/Engine/liquidEngineSkipper/ksp_l_midrangeEngine_normal
[LOG 09:48:06.976] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 09:48:06.980] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_GLOW
[LOG 09:48:06.982] Load(Texture): Squad/Parts/Engine/liquidEngineSSME/SSME_NRM
[LOG 09:48:06.987] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_cm
[LOG 09:48:06.995] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_em
[LOG 09:48:06.999] Load(Texture): Squad/Parts/Engine/MassiveSRB/solid_booster_nm
[LOG 09:48:07.006] Load(Texture): Squad/Parts/Engine/miniJet/SmallJet
[LOG 09:48:07.009] Load(Texture): Squad/Parts/Engine/OMSEngine/engineoms 1
[LOG 09:48:07.013] Load(Texture): Squad/Parts/Engine/OMSEngine/engineomsN_NRM
[LOG 09:48:07.018] Load(Texture): Squad/Parts/Engine/rapierEngine/rapierDiffuse
[LOG 09:48:07.023] Load(Texture): Squad/Parts/Engine/rapierEngine/rapieremit
[LOG 09:48:07.027] Load(Texture): Squad/Parts/Engine/Size2LFB/Size2LFBEmissive
[LOG 09:48:07.032] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_cm
[LOG 09:48:07.043] Load(Texture): Squad/Parts/Engine/Size2LFB/twin_nozzle_booster_nm
[LOG 09:48:07.055] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/decoupler_and_adaptor_cm
[LOG 09:48:07.067] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineDiffuse
[LOG 09:48:07.079] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineEmissive
[LOG 09:48:07.085] Load(Texture): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngineNormal
[LOG 09:48:07.090] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/ClusterEngineEmit
[LOG 09:48:07.093] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_cm
[LOG 09:48:07.104] Load(Texture): Squad/Parts/Engine/Size3EngineCluster/four_nozzle_engine_nm
[LOG 09:48:07.115] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model000
[LOG 09:48:07.120] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model001
[LOG 09:48:07.125] Load(Texture): Squad/Parts/Engine/solidBoosterBACC/model002
[LOG 09:48:07.128] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model000
[LOG 09:48:07.139] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model001
[LOG 09:48:07.144] Load(Texture): Squad/Parts/Engine/solidBoosterRT-10/model002
[LOG 09:48:07.147] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5
[LOG 09:48:07.152] Load(Texture): Squad/Parts/Engine/solidBoosterRT-5/RT5_N_NRM
[LOG 09:48:07.156] Load(Texture): Squad/Parts/Engine/solidBoosterSep/model000
[LOG 09:48:07.160] Load(Texture): Squad/Parts/Engine/vernorEngine/vernierEngine3UV
[LOG 09:48:07.164] Load(Texture): Squad/Parts/FuelTank/adapterTanks/Mk3Adapters
[LOG 09:48:07.187] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model000
[LOG 09:48:07.193] Load(Texture): Squad/Parts/FuelTank/fuelTankJumbo-64/model001
[LOG 09:48:07.211] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model000
[LOG 09:48:07.213] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/model001
[LOG 09:48:07.217] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank
[LOG 09:48:07.222] Load(Texture): Squad/Parts/FuelTank/fuelTankOscarB/tank_n
[LOG 09:48:07.227] Load(Texture): Squad/Parts/FuelTank/fuelTankT100/tank4
[LOG 09:48:07.235] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3
[LOG 09:48:07.238] Load(Texture): Squad/Parts/FuelTank/fuelTankT200/tank3_n
[LOG 09:48:07.243] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model000
[LOG 09:48:07.246] Load(Texture): Squad/Parts/FuelTank/fuelTankT400/model001
[LOG 09:48:07.258] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model000
[LOG 09:48:07.263] Load(Texture): Squad/Parts/FuelTank/fuelTankT800/model001
[LOG 09:48:07.271] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model000
[LOG 09:48:07.276] Load(Texture): Squad/Parts/FuelTank/fuelTankToroidal/model001
[LOG 09:48:07.280] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model000
[LOG 09:48:07.286] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-16/model001
[LOG 09:48:07.292] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model000
[LOG 09:48:07.304] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-32/model001
[LOG 09:48:07.310] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model000
[LOG 09:48:07.322] Load(Texture): Squad/Parts/FuelTank/fuelTankX200-8/model001
[LOG 09:48:07.327] Load(Texture): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 09:48:07.331] Load(Texture): Squad/Parts/FuelTank/mk2Adapters/mk2adapters1m
[LOG 09:48:07.343] Load(Texture): Squad/Parts/FuelTank/mk2FuselageLong/mk2Fuselage
[LOG 09:48:07.355] Load(Texture): Squad/Parts/FuelTank/mk2FuselageShort/mk2FuselageShort
[LOG 09:48:07.367] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage
[LOG 09:48:07.391] Load(Texture): Squad/Parts/FuelTank/mk3Fuselage/Mk3Fuselage_LUM
[LOG 09:48:07.393] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model000
[LOG 09:48:07.404] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR1/model001
[LOG 09:48:07.410] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_diff
[LOG 09:48:07.417] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR10/ksp_m_rcsTank_normal
[LOG 09:48:07.422] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model000
[LOG 09:48:07.427] Load(Texture): Squad/Parts/FuelTank/RCSFuelTankR25/model001
[LOG 09:48:07.433] Load(Texture): Squad/Parts/FuelTank/RCSTankRadial/model000
[LOG 09:48:07.438] Load(Texture): Squad/Parts/FuelTank/RCStankRadialLong/ksp_r_rcsCylTank_diff
[LOG 09:48:07.449] Load(Texture): Squad/Parts/FuelTank/Size3Tanks/fueltTanks_cm
[LOG 09:48:07.463] Load(Texture): Squad/Parts/FuelTank/xenonTank/model000
[LOG 09:48:07.468] Load(Texture): Squad/Parts/FuelTank/xenonTank/model001
[LOG 09:48:07.475] Load(Texture): Squad/Parts/FuelTank/xenonTankLarge/tank
[LOG 09:48:07.480] Load(Texture): Squad/Parts/FuelTank/xenonTankRadial/ksp_r_xenonTank_diff
[LOG 09:48:07.485] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat
[LOG 09:48:07.493] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_glow
[LOG 09:48:07.498] Load(Texture): Squad/Parts/Misc/AsteroidDay/CamSat_N_NRM
[LOG 09:48:07.511] Load(Texture): Squad/Parts/Misc/AsteroidDay/default
[LOG 09:48:07.514] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe
[LOG 09:48:07.521] Load(Texture): Squad/Parts/Misc/AsteroidDay/JumboHexProbe_NORM_NRM
[LOG 09:48:07.526] Load(Texture): Squad/Parts/Misc/PotatoRoid/squareButton
[LOG 09:48:07.534] Load(Texture): Squad/Parts/Resources/FuelCell/FCLamp
[LOG 09:48:07.538] Load(Texture): Squad/Parts/Resources/FuelCell/FuelCellRack
[LOG 09:48:07.543] Load(Texture): Squad/Parts/Resources/FuelCell/fuellcell
[LOG 09:48:07.548] Load(Texture): Squad/Parts/Resources/ISRU/Processor_Large
[LOG 09:48:07.556] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_diff
[LOG 09:48:07.569] Load(Texture): Squad/Parts/Resources/LargeTank/ksp_l_resourceContainer_norm
[LOG 09:48:07.584] Load(Texture): Squad/Parts/Resources/MiniDrill/DustParticle
[LOG 09:48:07.590] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_diff
[LOG 09:48:07.616] Load(Texture): Squad/Parts/Resources/MiniDrill/ksp_r_rockProbe_PSD
[LOG 09:48:07.629] Load(Texture): Squad/Parts/Resources/MiniISRU/ksp_s_processorSmall_diff
[LOG 09:48:07.638] Load(Texture): Squad/Parts/Resources/OrbitalScanner/detector
[LOG 09:48:07.642] Load(Texture): Squad/Parts/Resources/RadialDrill/DustParticle
[LOG 09:48:07.649] Load(Texture): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 09:48:07.654] Load(Texture): Squad/Parts/Resources/RadialTank/ksp_r_resourceContainer_psd_2
[LOG 09:48:07.658] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_diff
[LOG 09:48:07.670] Load(Texture): Squad/Parts/Resources/SmallTank/ksp_s_resourceContainer_normal
[LOG 09:48:07.681] Load(Texture): Squad/Parts/Resources/SurfaceScanner/ksp_r_samplerAir_diff
[LOG 09:48:07.692] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish
[LOG 09:48:07.699] Load(Texture): Squad/Parts/Resources/SurveyScanner/dish_n
[LOG 09:48:07.710] Load(Texture): Squad/Parts/Science/AtmosphereSensor/ksp_r_hydroscoop_diff
[LOG 09:48:07.717] Load(Texture): Squad/Parts/Science/GooExperiment/A_GooExperiment_diff
[LOG 09:48:07.728] Load(Texture): Squad/Parts/Science/LargeCrewedLab/Large_Crewed_Lab
[LOG 09:48:07.739] Load(Texture): Squad/Parts/Science/LargeCrewedLab/window
[LOG 09:48:07.741] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 09:48:07.753] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_emit
[LOG 09:48:07.757] Load(Texture): Squad/Parts/Science/MaterialBay/science_module_small_nrm
[LOG 09:48:07.762] Load(Texture): Squad/Parts/Science/MaterialBay/wires
[LOG 09:48:07.767] Load(Texture): Squad/Parts/Science/sensorAccelerometer/model000
[LOG 09:48:07.769] Load(Texture): Squad/Parts/Science/sensorBarometer/model000
[LOG 09:48:07.773] Load(Texture): Squad/Parts/Science/sensorGravimeter/model000
[LOG 09:48:07.778] Load(Texture): Squad/Parts/Science/sensorThermometer/model000
[LOG 09:48:07.782] Load(Texture): Squad/Parts/Structural/adapterLargeSmallBi/ksp_l_biAdapter_diff
[LOG 09:48:07.830] Load(Texture): Squad/Parts/Structural/adapterLargeSmallQuad/ksp_l_quadAdapter_diff
[LOG 09:48:07.839] Load(Texture): Squad/Parts/Structural/adapterLargeSmallTri/ksp_l_triAdapter_diff
[LOG 09:48:07.847] Load(Texture): Squad/Parts/Structural/adapterSmallMiniShort/ksp_s_adapterShort_diff
[LOG 09:48:07.852] Load(Texture): Squad/Parts/Structural/adapterSmallMiniTall/ksp_s_adapterLong_diff
[LOG 09:48:07.860] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1Structural
[LOG 09:48:07.873] Load(Texture): Squad/Parts/Structural/mk1Parts/Mk1StructuralHeat
[LOG 09:48:07.886] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_cm
[LOG 09:48:07.899] Load(Texture): Squad/Parts/Structural/Size3Decoupler/decoupler_and_adaptor_nm
[LOG 09:48:07.911] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_cm
[LOG 09:48:07.923] Load(Texture): Squad/Parts/Structural/Size3To2Adapter/decoupler_and_adaptor_nm
[LOG 09:48:07.938] Load(Texture): Squad/Parts/Structural/stationHub/model000
[LOG 09:48:07.943] Load(Texture): Squad/Parts/Structural/stationHub/model001
[LOG 09:48:07.949] Load(Texture): Squad/Parts/Structural/structuralIBeam200/model000
[LOG 09:48:07.952] Load(Texture): Squad/Parts/Structural/structuralIBeam200Pocket/model000
[LOG 09:48:07.957] Load(Texture): Squad/Parts/Structural/structuralIBeam650/model000
[LOG 09:48:07.961] Load(Texture): Squad/Parts/Structural/structuralMicronode/model000
[LOG 09:48:07.966] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model000
[LOG 09:48:07.971] Load(Texture): Squad/Parts/Structural/structuralPanel1x1/model001
[LOG 09:48:07.975] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model000
[LOG 09:48:07.980] Load(Texture): Squad/Parts/Structural/structuralPanel2x2/model001
[LOG 09:48:07.984] Load(Texture): Squad/Parts/Structural/structuralPylons/Pylons
[LOG 09:48:07.990] Load(Texture): Squad/Parts/Structural/strutCubicOcto/model000
[LOG 09:48:07.994] Load(Texture): Squad/Parts/Structural/strutOcto/model000
[LOG 09:48:07.998] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model000
[LOG 09:48:08.003] Load(Texture): Squad/Parts/Structural/trussGirderAdapter/model001
[LOG 09:48:08.008] Load(Texture): Squad/Parts/Structural/trussGirderL/model000
[LOG 09:48:08.017] Load(Texture): Squad/Parts/Structural/trussGirderXL/model000
[LOG 09:48:08.025] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator
[LOG 09:48:08.034] Load(Texture): Squad/Parts/Thermal/FoldingRadiators/radiator_N_NRM
[LOG 09:48:08.049] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel
[LOG 09:48:08.057] Load(Texture): Squad/Parts/Thermal/RadiatorPanels/radPanel_N_NRM
[LOG 09:48:08.072] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_array
[LOG 09:48:08.078] Load(Texture): Squad/Parts/Utility/commDish88-88/comm_dish_v2_diff
[LOG 09:48:08.085] Load(Texture): Squad/Parts/Utility/commDish88-88/model000
[LOG 09:48:08.102] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 09:48:08.114] Load(Texture): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna_Emit
[LOG 09:48:08.116] Load(Texture): Squad/Parts/Utility/commsDish16/model000
[LOG 09:48:08.119] Load(Texture): Squad/Parts/Utility/decouplerRadialHDM/model000
[LOG 09:48:08.124] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model000
[LOG 09:48:08.128] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-38K/model001
[LOG 09:48:08.134] Load(Texture): Squad/Parts/Utility/decouplerRadialTT-70/model000
[LOG 09:48:08.137] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model000
[LOG 09:48:08.143] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-18D/model001
[LOG 09:48:08.148] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-2C/model000
[LOG 09:48:08.151] Load(Texture): Squad/Parts/Utility/decouplerSeparatorTR-XL/model000
[LOG 09:48:08.157] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model000
[LOG 09:48:08.161] Load(Texture): Squad/Parts/Utility/decouplerStack2m/model001
[LOG 09:48:08.165] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model000
[LOG 09:48:08.170] Load(Texture): Squad/Parts/Utility/decouplerStackTR-18A/model001
[LOG 09:48:08.175] Load(Texture): Squad/Parts/Utility/decouplerStackTR-2V/model000
[LOG 09:48:08.179] Load(Texture): Squad/Parts/Utility/dockingPort/model000
[LOG 09:48:08.184] Load(Texture): Squad/Parts/Utility/dockingPort/model001
[LOG 09:48:08.188] Load(Texture): Squad/Parts/Utility/dockingPortInline/model000
[LOG 09:48:08.193] Load(Texture): Squad/Parts/Utility/dockingPortInline/model001
[LOG 09:48:08.198] Load(Texture): Squad/Parts/Utility/dockingPortInline/model002
[LOG 09:48:08.203] Load(Texture): Squad/Parts/Utility/dockingPortJr/model000
[LOG 09:48:08.207] Load(Texture): Squad/Parts/Utility/dockingPortJr/model001
[LOG 09:48:08.211] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model000
[LOG 09:48:08.216] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model001
[LOG 09:48:08.221] Load(Texture): Squad/Parts/Utility/dockingPortShielded/model002
[LOG 09:48:08.225] Load(Texture): Squad/Parts/Utility/dockingPortSr/model000
[LOG 09:48:08.236] Load(Texture): Squad/Parts/Utility/dockingPortSr/model001
[LOG 09:48:08.247] Load(Texture): Squad/Parts/Utility/GrapplingDevice/grabberDiffuse
[LOG 09:48:08.252] Load(Texture): Squad/Parts/Utility/GrapplingDevice/window
[LOG 09:48:08.254] Load(Texture): Squad/Parts/Utility/ladderRadial/model000
[LOG 09:48:08.258] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model000
[LOG 09:48:08.266] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model001
[LOG 09:48:08.277] Load(Texture): Squad/Parts/Utility/ladderTelescopic/model002
[LOG 09:48:08.284] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model000
[LOG 09:48:08.296] Load(Texture): Squad/Parts/Utility/ladderTelescopicBay/model001
[LOG 09:48:08.307] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 09:48:08.312] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff OUT OF DATE
[LOG 09:48:08.313] Load(Texture): Squad/Parts/Utility/landingLegLT-1/ksp_r_landingStrut_diff
[LOG 09:48:08.336] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 09:48:08.339] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg OUT OF DATE
[LOG 09:48:08.340] Load(Texture): Squad/Parts/Utility/landingLegLT-2/landingLeg
[LOG 09:48:08.358] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 09:48:08.360] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg OUT OF DATE
[LOG 09:48:08.361] Load(Texture): Squad/Parts/Utility/landingLegLT-5/leg
[LOG 09:48:08.364] Load(Texture): Squad/Parts/Utility/landingLegLT-5/model000
[LOG 09:48:08.368] Load(Texture): Squad/Parts/Utility/largeAdapter/model000
[LOG 09:48:08.374] Load(Texture): Squad/Parts/Utility/largeAdapterShort/model000
[LOG 09:48:08.377] Load(Texture): Squad/Parts/Utility/launchClamp1/model000
[LOG 09:48:08.382] Load(Texture): Squad/Parts/Utility/launchClamp1/model001
[LOG 09:48:08.386] Load(Texture): Squad/Parts/Utility/launchEscapeSystem/LES_Diffuse
[LOG 09:48:08.398] Load(Texture): Squad/Parts/Utility/linearRCS/model000
[LOG 09:48:08.401] Load(Texture): Squad/Parts/Utility/linearRCS/model001
[LOG 09:48:08.404] Load(Texture): Squad/Parts/Utility/mk2CargoBay/mk2CargoBay
[LOG 09:48:08.415] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin
[LOG 09:48:08.423] Load(Texture): Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin_LUM
[LOG 09:48:08.425] Load(Texture): Squad/Parts/Utility/mk2DockingPort/mk2DockingPort
[LOG 09:48:08.437] Load(Texture): Squad/Parts/Utility/mk3CargoBay/Mk3CargoBay
[LOG 09:48:08.448] Load(Texture): Squad/Parts/Utility/parachuteMk1/model000
[LOG 09:48:08.453] Load(Texture): Squad/Parts/Utility/parachuteMk1/model001
[LOG 09:48:08.458] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model000
[LOG 09:48:08.462] Load(Texture): Squad/Parts/Utility/parachuteMk12-R/model001
[LOG 09:48:08.466] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model000
[LOG 09:48:08.469] Load(Texture): Squad/Parts/Utility/parachuteMk16-XL/model001
[LOG 09:48:08.474] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model000
[LOG 09:48:08.478] Load(Texture): Squad/Parts/Utility/parachuteMk2-R/model001
[LOG 09:48:08.482] Load(Texture): Squad/Parts/Utility/parachuteMk25/model000
[LOG 09:48:08.487] Load(Texture): Squad/Parts/Utility/parachuteMk25/model001
[LOG 09:48:08.491] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model000
[LOG 09:48:08.496] Load(Texture): Squad/Parts/Utility/radialAttachmentPoint/model001
[LOG 09:48:08.500] Load(Texture): Squad/Parts/Utility/rcsBlockRV-105/model000
[LOG 09:48:08.505] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay
[LOG 09:48:08.510] Load(Texture): Squad/Parts/Utility/ServiceBay/ServiceBay_N_NRM
[LOG 09:48:08.515] Load(Texture): Squad/Parts/Utility/spotLightMk1/model000
[LOG 09:48:08.518] Load(Texture): Squad/Parts/Utility/spotLightMk1/model001
[LOG 09:48:08.524] Load(Texture): Squad/Parts/Utility/spotLightMk2/model000
[LOG 09:48:08.527] Load(Texture): Squad/Parts/Utility/spotLightMk2/model001
[LOG 09:48:08.532] Load(Texture): Squad/Parts/Utility/stackBiCoupler/model000
[LOG 09:48:08.537] Load(Texture): Squad/Parts/Utility/stackQuadCoupler/ksp_s_quadCoupler_diff
[LOG 09:48:08.544] Load(Texture): Squad/Parts/Utility/stackTriCoupler/model000
[LOG 09:48:08.548] Load(Texture): Squad/Parts/Wheel/LandingGear/Flare
[LOG 09:48:08.551] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear
[LOG 09:48:08.564] Load(Texture): Squad/Parts/Wheel/LandingGear/LandingGear_Emissive
[LOG 09:48:08.566] Load(Texture): Squad/Parts/Wheel/roverWheelM1/model000
[LOG 09:48:08.570] Load(Texture): Squad/Parts/Wheel/roverWheelM1/roverwheel1
[LOG 09:48:08.592] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model000
[LOG 09:48:08.598] Load(Texture): Squad/Parts/Wheel/roverWheelS2/model001
[LOG 09:48:08.602] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2
[LOG 09:48:08.611] Load(Texture): Squad/Parts/Wheel/roverWheelS2/roverwheel2_n
[LOG 09:48:08.632] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_diff
[LOG 09:48:08.719] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_normal
[LOG 09:48:08.799] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_diff
[LOG 09:48:08.877] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/ksp_r_medWheel_wheel_normal
[LOG 09:48:08.953] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model000
[LOG 09:48:08.983] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model001
[LOG 09:48:08.995] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model002
[LOG 09:48:09.006] Load(Texture): Squad/Parts/Wheel/roverWheelTR-2L/model003
[LOG 09:48:09.018] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model000
[LOG 09:48:09.029] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model001
[LOG 09:48:09.035] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model002
[LOG 09:48:09.037] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/model003
[LOG 09:48:09.041] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount
[LOG 09:48:09.124] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/mount_n
[LOG 09:48:09.139] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel
[LOG 09:48:09.149] Load(Texture): Squad/Parts/Wheel/roverWheelXL3/wheel_n
[LOG 09:48:09.159] Load(Texture): Squad/Props/AltimeterThreeHands/model000
[LOG 09:48:09.161] Load(Texture): Squad/Props/AltimeterThreeHands/model001
[LOG 09:48:09.165] Load(Texture): Squad/Props/AtmosphereDepth/model000
[LOG 09:48:09.170] Load(Texture): Squad/Props/AtmosphereDepth/model001
[LOG 09:48:09.174] Load(Texture): Squad/Props/AxisIndicator/model000
[LOG 09:48:09.179] Load(Texture): Squad/Props/ButtonSquare/model000
[LOG 09:48:09.187] Load(Texture): Squad/Props/circularButton/model000
[LOG 09:48:09.189] Load(Texture): Squad/Props/Compass/model000
[LOG 09:48:09.194] Load(Texture): Squad/Props/directionalKnob/model000
[LOG 09:48:09.198] Load(Texture): Squad/Props/directionalKnob2/model000
[LOG 09:48:09.203] Load(Texture): Squad/Props/IndicatorPanel/model000
[LOG 09:48:09.208] Load(Texture): Squad/Props/IndicatorPanel/model001
[LOG 09:48:09.212] Load(Texture): Squad/Props/IVANavBall/Arrows8dir
[LOG 09:48:09.218] Load(Texture): Squad/Props/IVANavBall/IVANavBall
[LOG 09:48:09.222] Load(Texture): Squad/Props/IVANavBall/IVANavBall_Glow
[LOG 09:48:09.226] Load(Texture): Squad/Props/IVANavBall/ManeuverNode_vectors
[LOG 09:48:09.231] Load(Texture): Squad/Props/IVANavBall/navball2
[LOG 09:48:09.236] Load(Texture): Squad/Props/IVANavBall/navBall_DV_IVA
[LOG 09:48:09.240] Load(Texture): Squad/Props/IVANavBall/navBall_vectors_IVA
[LOG 09:48:09.245] Load(Texture): Squad/Props/ledPanelSpeed/model000
[LOG 09:48:09.250] Load(Texture): Squad/Props/ledPanelSpeed/model001
[LOG 09:48:09.254] Load(Texture): Squad/Props/Monitor/Emissives
[LOG 09:48:09.259] Load(Texture): Squad/Props/Monitor/Emissives_glow
[LOG 09:48:09.263] Load(Texture): Squad/Props/Monitor/Monitor
[LOG 09:48:09.268] Load(Texture): Squad/Props/NavBall/model000
[LOG 09:48:09.273] Load(Texture): Squad/Props/NavBall/model001
[LOG 09:48:09.278] Load(Texture): Squad/Props/NavBall/model002
[LOG 09:48:09.282] Load(Texture): Squad/Props/NavBall/model003
[LOG 09:48:09.287] Load(Texture): Squad/Props/PropsGeneric/propsGeneric
[LOG 09:48:09.298] Load(Texture): Squad/Props/pullSwitch/model000
[LOG 09:48:09.301] Load(Texture): Squad/Props/pullSwitch/model001
[LOG 09:48:09.304] Load(Texture): Squad/Props/radarAltitude/model000
[LOG 09:48:09.310] Load(Texture): Squad/Props/squareButton/model000
[LOG 09:48:09.314] Load(Texture): Squad/Props/standingSwitch/model000
[LOG 09:48:09.319] Load(Texture): Squad/Props/standingSwitch/model001
[LOG 09:48:09.322] Load(Texture): Squad/Props/switch/model000
[LOG 09:48:09.327] Load(Texture): Squad/Props/switchGuard/model000
[LOG 09:48:09.332] Load(Texture): Squad/Props/switchWithGuards/model000
[LOG 09:48:09.336] Load(Texture): Squad/Props/switchWithGuards/model001
[LOG 09:48:09.340] Load(Texture): Squad/Props/switchWithGuards/model002
[LOG 09:48:09.345] Load(Texture): Squad/Props/throttle/model000
[LOG 09:48:09.349] Load(Texture): Squad/Props/throttle/model001
[LOG 09:48:09.360] Load(Texture): Squad/Props/VSI/model000
[LOG 09:48:09.365] Load(Texture): Squad/Spaces/crewCabinInternals/model000
[LOG 09:48:09.367] Load(Texture): Squad/Spaces/crewCabinInternals/model001
[LOG 09:48:09.389] Load(Texture): Squad/Spaces/crewCabinInternals/model002
[LOG 09:48:09.393] Load(Texture): Squad/Spaces/crewCabinInternals/model003
[LOG 09:48:09.405] Load(Texture): Squad/Spaces/crewCabinInternals/model004
[LOG 09:48:09.407] Load(Texture): Squad/Spaces/crewCabinInternals/model005
[LOG 09:48:09.418] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_diff
[LOG 09:48:09.467] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_normal
[LOG 09:48:09.521] Load(Texture): Squad/Spaces/cupolaInternal/ksp_l_cupola_internal_windows_alpha
[LOG 09:48:09.532] Load(Texture): Squad/Spaces/cupolaInternal/pilot Seat
[LOG 09:48:09.543] Load(Texture): Squad/Spaces/GenericSpace1/model000
[LOG 09:48:09.555] Load(Texture): Squad/Spaces/GenericSpace1/model001
[LOG 09:48:09.566] Load(Texture): Squad/Spaces/GenericSpace1/model002
[LOG 09:48:09.577] Load(Texture): Squad/Spaces/GenericSpace1/model003
[LOG 09:48:09.588] Load(Texture): Squad/Spaces/GenericSpace1/model004
[LOG 09:48:09.600] Load(Texture): Squad/Spaces/GenericSpace1/model005
[LOG 09:48:09.611] Load(Texture): Squad/Spaces/GenericSpace3/model000
[LOG 09:48:09.622] Load(Texture): Squad/Spaces/GenericSpace3/model001
[LOG 09:48:09.628] Load(Texture): Squad/Spaces/GenericSpace3/model002
[LOG 09:48:09.639] Load(Texture): Squad/Spaces/GenericSpace3/model003
[LOG 09:48:09.650] Load(Texture): Squad/Spaces/GenericSpace3/model004
[LOG 09:48:09.661] Load(Texture): Squad/Spaces/GenericSpace3/model005
[LOG 09:48:09.672] Load(Texture): Squad/Spaces/GenericSpace3/model006
[LOG 09:48:09.679] Load(Texture): Squad/Spaces/GenericSpace3/model007
[LOG 09:48:09.691] Load(Texture): Squad/Spaces/landerCabinInternals/model000
[LOG 09:48:09.702] Load(Texture): Squad/Spaces/landerCabinInternals/model001
[LOG 09:48:09.714] Load(Texture): Squad/Spaces/landerCabinInternals/model002
[LOG 09:48:09.727] Load(Texture): Squad/Spaces/landerCabinInternals/model003
[LOG 09:48:09.751] Load(Texture): Squad/Spaces/landerCabinInternals/model004
[LOG 09:48:09.764] Load(Texture): Squad/Spaces/landerCabinInternals/model005
[LOG 09:48:09.767] Load(Texture): Squad/Spaces/landerCabinInternals/model006
[LOG 09:48:09.779] Load(Texture): Squad/Spaces/landerCabinInternals/model007
[LOG 09:48:09.780] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_diff
[LOG 09:48:09.830] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_normal
[LOG 09:48:09.886] Load(Texture): Squad/Spaces/landerCabinSmallInternal/ksp_s_landerCan_internal_window_alpha
[LOG 09:48:09.911] Load(Texture): Squad/Spaces/landerCabinSmallInternal/pilot Seat
[LOG 09:48:09.922] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/Glass
[LOG 09:48:09.956] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int
[LOG 09:48:10.447] Load(Texture): Squad/Spaces/LargeCrewedLabInternals/MPL_Int_n_NRM
[LOG 09:48:10.665] Load(Texture): Squad/Spaces/mk1CabinInternal/Cabin_Lightmap
[LOG 09:48:10.769] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric
[LOG 09:48:10.771] Load(Texture): Squad/Spaces/mk1CabinInternal/CockpitGeneric_NRM
[LOG 09:48:10.775] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric
[LOG 09:48:10.780] Load(Texture): Squad/Spaces/mk1CockpitInternal/CockpitGeneric_NRM
[LOG 09:48:10.784] Load(Texture): Squad/Spaces/mk1CockpitInternal/IVAMAP
[LOG 09:48:10.795] Load(Texture): Squad/Spaces/mk1CockpitInternal/Windows
[LOG 09:48:10.798] Load(Texture): Squad/Spaces/mk1InlineInternal/Canopy
[LOG 09:48:10.809] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric
[LOG 09:48:10.811] Load(Texture): Squad/Spaces/mk1InlineInternal/CockpitGeneric_NRM
[LOG 09:48:10.815] Load(Texture): Squad/Spaces/mk1InlineInternal/Mk1Inline_Lightmap
[LOG 09:48:10.821] Load(Texture): Squad/Spaces/mk1PodCockpit/model000
[LOG 09:48:10.832] Load(Texture): Squad/Spaces/mk1PodCockpit/model001
[LOG 09:48:10.844] Load(Texture): Squad/Spaces/mk1PodCockpit/model002
[LOG 09:48:10.856] Load(Texture): Squad/Spaces/mk1PodCockpit/model003
[LOG 09:48:10.867] Load(Texture): Squad/Spaces/mk1PodCockpit/model004
[LOG 09:48:10.890] Load(Texture): Squad/Spaces/mk1PodCockpit/model005
[LOG 09:48:10.893] Load(Texture): Squad/Spaces/mk1PodCockpit/model006
[LOG 09:48:10.906] Load(Texture): Squad/Spaces/mk1PodCockpit/model007
[LOG 09:48:10.908] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/CargoBagA
[LOG 09:48:10.914] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Mk2StandardIVA
[LOG 09:48:10.923] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Pilotseat
[LOG 09:48:10.928] Load(Texture): Squad/Spaces/mk2CockpitStandardInternal/Windows
[LOG 09:48:10.932] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/CargoBagA
[LOG 09:48:10.935] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Glass
[LOG 09:48:10.941] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Mk2StandardIVA
[LOG 09:48:10.949] Load(Texture): Squad/Spaces/Mk2CrewCabinInternal/Pilotseat
[LOG 09:48:10.955] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric
[LOG 09:48:10.967] Load(Texture): Squad/Spaces/mk2InlineInternal/CockpitGeneric_NRM
[LOG 09:48:10.979] Load(Texture): Squad/Spaces/mk2InlineInternal/Mk2InlineLightmap
[LOG 09:48:10.992] Load(Texture): Squad/Spaces/mk2InlineInternal/propsGeneric
[LOG 09:48:11.004] Load(Texture): Squad/Spaces/MK3CockpitInternal/Glass
[LOG 09:48:11.009] Load(Texture): Squad/Spaces/MK3CockpitInternal/Mk2StandardIVA
[LOG 09:48:11.016] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Glass
[LOG 09:48:11.021] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/GlassMK3CC
[LOG 09:48:11.023] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Mk2StandardIVA
[LOG 09:48:11.031] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 09:48:11.043] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int_n
[LOG 09:48:11.048] Load(Texture): Squad/Spaces/MK3_CrewCab_Int/Pilotseat
[LOG 09:48:11.053] Load(Texture): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 09:48:11.055] Load(Texture): Squad/Spaces/PodCockpit/model000
[LOG 09:48:11.066] Load(Texture): Squad/Spaces/PodCockpit/model001
[LOG 09:48:11.079] Load(Texture): Squad/Spaces/PodCockpit/model002
[LOG 09:48:11.091] Load(Texture): Squad/Spaces/PodCockpit/model003
[LOG 09:48:11.103] Load(Texture): Squad/Spaces/PodCockpit/model004
[LOG 09:48:11.115] Load(Texture): Squad/Spaces/PodCockpit/model005
[LOG 09:48:11.128] Load(Texture): Squad/Spaces/PodCockpit/model006
[LOG 09:48:11.134] Load(Texture): Squad/Spaces/PodCockpit/model007
[LOG 09:48:11.146] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric
[LOG 09:48:11.158] Load(Texture): Squad/Spaces/sharedAssets/CockpitGeneric_NRM
[LOG 09:48:11.181] Load(Texture): Squad/Strategies/Icons/AggressiveNegotiations
[LOG 09:48:11.193] Load(Texture): Squad/Strategies/Icons/AppreciationCampaign
[LOG 09:48:11.202] Load(Texture): Squad/Strategies/Icons/BailOutGrant
[LOG 09:48:11.212] Load(Texture): Squad/Strategies/Icons/FundraisingCampaign
[LOG 09:48:11.221] Load(Texture): Squad/Strategies/Icons/LeadershipInitiative
[LOG 09:48:11.231] Load(Texture): Squad/Strategies/Icons/OpenSourceTechProgram
[LOG 09:48:11.240] Load(Texture): Squad/Strategies/Icons/OutsourcedResearch
[LOG 09:48:11.250] Load(Texture): Squad/Strategies/Icons/PatentsLicensing
[LOG 09:48:11.264] Load(Texture): Squad/Strategies/Icons/RecoveryTransponderFitting
[LOG 09:48:11.278] Load(Texture): Squad/Strategies/Icons/ResearchRightsSellOut
[LOG 09:48:11.292] Load(Texture): Squad/Strategies/Icons/UnpaidResearchProgram
[LOG 09:48:11.302] Load(Texture): Squad/Tutorials/ChuteColors
[LOG 09:48:11.316] Load(Texture): Squad/Tutorials/EditorCoM
[LOG 09:48:11.330] Load(Texture): Squad/Tutorials/EditorSnap
[LOG 09:48:11.343] Load(Texture): Squad/Tutorials/EditorSnap4x
[LOG 09:48:11.357] Load(Texture): Squad/Tutorials/EditorSymm
[LOG 09:48:11.370] Load(Texture): Squad/Tutorials/StagingStack
[LOG 09:48:11.383] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONRCSBlock45
[LOG 09:48:11.417] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONRCSBlock
[LOG 09:48:11.420] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/model
[LOG 09:48:11.424] Load(Model): REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/model
[LOG 09:48:11.427] Load(Model): Squad/FX/afterburner_flame
[LOG 09:48:11.469] Load(Model): Squad/FX/afterburner_shock
[LOG 09:48:11.477] Load(Model): Squad/FX/diamondBlue
[LOG 09:48:11.499] Load(Model): Squad/FX/exhaustFlames_blue
[LOG 09:48:11.501] Load(Model): Squad/FX/hydroLOXFlame
[LOG 09:48:11.527] Load(Model): Squad/FX/IonPlume
[LOG 09:48:11.530] Load(Model): Squad/FX/ks1_Exhaust
[LOG 09:48:11.534] Load(Model): Squad/FX/ks25_Exhaust
[LOG 09:48:11.539] Load(Model): Squad/FX/ksX_Exhaust
[LOG 09:48:11.544] Load(Model): Squad/FX/LES_Thruster
[LOG 09:48:11.548] Load(Model): Squad/FX/shockExhaust_blue
[LOG 09:48:11.552] Load(Model): Squad/FX/shockExhaust_blue_small
[LOG 09:48:11.574] Load(Model): Squad/FX/shockExhaust_red_small
[LOG 09:48:11.578] Load(Model): Squad/FX/SRB_Large
[LOG 09:48:11.581] Load(Model): Squad/FX/SRB_LargeSparks
[LOG 09:48:11.586] Load(Model): Squad/Parts/Aero/aerodynamicNoseCone/model
[LOG 09:48:11.616] Load(Model): Squad/Parts/Aero/airbrake/Airbrake
[LOG 09:48:11.673] Load(Model): Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
[LOG 09:48:11.698] Load(Model): Squad/Parts/Aero/airlinerWings/ControlSurface
[LOG 09:48:11.701] Load(Model): Squad/Parts/Aero/airlinerWings/MainWing
[LOG 09:48:11.705] Load(Model): Squad/Parts/Aero/airlinerWings/TailFin
[LOG 09:48:11.727] Load(Model): Squad/Parts/Aero/airplaneFins/AdvCanard
[LOG 09:48:11.729] Load(Model): Squad/Parts/Aero/airplaneFins/Canard
[LOG 09:48:11.761] Load(Model): Squad/Parts/Aero/airplaneFins/Swept
[LOG 09:48:11.784] Load(Model): Squad/Parts/Aero/airplaneFins/TailFin
[LOG 09:48:11.806] Load(Model): Squad/Parts/Aero/basicFin/basicFin
[LOG 09:48:11.830] Load(Model): Squad/Parts/Aero/circularIntake/CircularIntake
[LOG 09:48:11.910] Load(Model): Squad/Parts/Aero/circularIntake/ConeIntake
[LOG 09:48:11.914] Load(Model): Squad/Parts/Aero/cones/AvioCone
[LOG 09:48:11.930] Load(Model): Squad/Parts/Aero/cones/ConeA
[LOG 09:48:11.933] Load(Model): Squad/Parts/Aero/cones/ConeB
[LOG 09:48:11.937] Load(Model): Squad/Parts/Aero/cones/NCS
[LOG 09:48:11.956] Load(Model): Squad/Parts/Aero/cones/TailA
[LOG 09:48:11.960] Load(Model): Squad/Parts/Aero/cones/TailB
[LOG 09:48:11.993] Load(Model): Squad/Parts/Aero/cones/TinyCone
[LOG 09:48:11.999] Load(Model): Squad/Parts/Aero/fairings/fairingSize1
[LOG 09:48:12.021] Load(Model): Squad/Parts/Aero/fairings/fairingSize2
[LOG 09:48:12.044] Load(Model): Squad/Parts/Aero/fairings/fairingSize3
[LOG 09:48:12.063] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield1
[LOG 09:48:12.087] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield2
[LOG 09:48:12.110] Load(Model): Squad/Parts/Aero/HeatShield/HeatShield3
[LOG 09:48:12.139] Load(Model): Squad/Parts/Aero/InflatableHeatShield/HeatShield
[LOG 09:48:12.222] Load(Model): Squad/Parts/Aero/intakeRadialLong/IntakeRadial
[LOG 09:48:12.237] Load(Model): Squad/Parts/Aero/miniIntake/SmallIntake
[LOG 09:48:12.252] Load(Model): Squad/Parts/Aero/protectiveRocketNoseMk7/model
[LOG 09:48:12.285] Load(Model): Squad/Parts/Aero/ramAirIntake/RampIntake
[LOG 09:48:12.304] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleDeltaWing
[LOG 09:48:12.320] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonA
[LOG 09:48:12.339] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleElevonB
[LOG 09:48:12.343] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleRudder
[LOG 09:48:12.348] Load(Model): Squad/Parts/Aero/shuttleWings/ShuttleStrake
[LOG 09:48:12.352] Load(Model): Squad/Parts/Aero/wingletAV-R8/model
[LOG 09:48:12.356] Load(Model): Squad/Parts/Aero/wingletAV-T1/model
[LOG 09:48:12.373] Load(Model): Squad/Parts/Aero/wingletDeltaDeluxe/model
[LOG 09:48:12.377] Load(Model): Squad/Parts/Aero/wings/connector1
[LOG 09:48:12.398] Load(Model): Squad/Parts/Aero/wings/connector2
[LOG 09:48:12.410] Load(Model): Squad/Parts/Aero/wings/connector3
[LOG 09:48:12.412] Load(Model): Squad/Parts/Aero/wings/connector4
[LOG 09:48:12.417] Load(Model): Squad/Parts/Aero/wings/connector5
[LOG 09:48:12.421] Load(Model): Squad/Parts/Aero/wings/delta
[LOG 09:48:12.426] Load(Model): Squad/Parts/Aero/wings/delta_small
[LOG 09:48:12.430] Load(Model): Squad/Parts/Aero/wings/elevon1
[LOG 09:48:12.435] Load(Model): Squad/Parts/Aero/wings/elevon2
[LOG 09:48:12.441] Load(Model): Squad/Parts/Aero/wings/elevon3
[LOG 09:48:12.445] Load(Model): Squad/Parts/Aero/wings/elevon4
[LOG 09:48:12.450] Load(Model): Squad/Parts/Aero/wings/elevon5
[LOG 09:48:12.455] Load(Model): Squad/Parts/Aero/wings/strake
[LOG 09:48:12.460] Load(Model): Squad/Parts/Aero/wings/structural1
[LOG 09:48:12.480] Load(Model): Squad/Parts/Aero/wings/structural2
[LOG 09:48:12.491] Load(Model): Squad/Parts/Aero/wings/structural3
[LOG 09:48:12.503] Load(Model): Squad/Parts/Aero/wings/structural4
[LOG 09:48:12.513] Load(Model): Squad/Parts/Aero/wings/swept1
[LOG 09:48:12.524] Load(Model): Squad/Parts/Aero/wings/swept2
[LOG 09:48:12.548] Load(Model): Squad/Parts/Command/advancedSasModuleLarge/model
[LOG 09:48:12.617] Load(Model): Squad/Parts/Command/cupola/model
[LOG 09:48:12.661] Load(Model): Squad/Parts/Command/externalCommandSeat/model
[LOG 09:48:12.748] Load(Model): Squad/Parts/Command/hitchhikerStorageContainer/model
[LOG 09:48:12.792] Load(Model): Squad/Parts/Command/inlineAdvancedStabilizer/model
[LOG 09:48:12.811] Load(Model): Squad/Parts/Command/inlineReactionWheel/model
[LOG 09:48:12.876] Load(Model): Squad/Parts/Command/Mk1-2Pod/model
[LOG 09:48:12.918] Load(Model): Squad/Parts/Command/mk1Cockpits/Cabin
[LOG 09:48:12.949] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitInline
[LOG 09:48:12.974] Load(Model): Squad/Parts/Command/mk1Cockpits/CockpitStandard
[LOG 09:48:13.033] Load(Model): Squad/Parts/Command/mk1LanderCan/model
[LOG 09:48:13.063] Load(Model): Squad/Parts/Command/mk1pod/model
[LOG 09:48:13.087] Load(Model): Squad/Parts/Command/mk2CockpitInline/model
[LOG 09:48:13.122] Load(Model): Squad/Parts/Command/mk2CockpitStandard/model
[LOG 09:48:13.132] Load(Model): Squad/Parts/Command/mk2DroneCore/model
[LOG 09:48:13.140] Load(Model): Squad/Parts/Command/mk2LanderCan/model
[LOG 09:48:13.154] Load(Model): Squad/Parts/Command/mk3CockpitShuttle/model
[LOG 09:48:13.165] Load(Model): Squad/Parts/Command/probeCoreCube/model
[LOG 09:48:13.169] Load(Model): Squad/Parts/Command/probeCoreHex/model
[LOG 09:48:13.173] Load(Model): Squad/Parts/Command/probeCoreOcto/model
[LOG 09:48:13.178] Load(Model): Squad/Parts/Command/probeCoreOcto2/model
[LOG 09:48:13.183] Load(Model): Squad/Parts/Command/probeRoverBody/model
[LOG 09:48:13.188] Load(Model): Squad/Parts/Command/probeStackLarge/model
[LOG 09:48:13.193] Load(Model): Squad/Parts/Command/probeStackSmall/model
[LOG 09:48:13.198] Load(Model): Squad/Parts/Command/probeStackSphere/model
[LOG 09:48:13.203] Load(Model): Squad/Parts/CompoundParts/fuelLine/model
[LOG 09:48:13.209] Load(Model): Squad/Parts/CompoundParts/strutConnector/model
[LOG 09:48:13.214] Load(Model): Squad/Parts/Electrical/1x6ShroudSolarPanels/model
[LOG 09:48:13.219] Load(Model): Squad/Parts/Electrical/1x6SolarPanels/model
[LOG 09:48:13.224] Load(Model): Squad/Parts/Electrical/3x2ShroudSolarPanels/model
[LOG 09:48:13.230] Load(Model): Squad/Parts/Electrical/3x2SolarPanels/model
[LOG 09:48:13.235] Load(Model): Squad/Parts/Electrical/gigantorXlSolarArray/model
[LOG 09:48:13.240] Load(Model): Squad/Parts/Electrical/radialFlatSolarPanel/model
[LOG 09:48:13.244] Load(Model): Squad/Parts/Electrical/RTG/model
[LOG 09:48:13.250] Load(Model): Squad/Parts/Electrical/z-100Battery/model
[LOG 09:48:13.269] Load(Model): Squad/Parts/Electrical/z-1kBattery/model
[LOG 09:48:13.273] Load(Model): Squad/Parts/Electrical/z-200Battery/model
[LOG 09:48:13.276] Load(Model): Squad/Parts/Electrical/z-400Battery/model
[LOG 09:48:13.281] Load(Model): Squad/Parts/Electrical/z-4kBattery/model
[LOG 09:48:13.286] Load(Model): Squad/Parts/Engine/ionEngine/model
[LOG 09:48:13.291] Load(Model): Squad/Parts/Engine/jetEngines/turbineInside
[LOG 09:48:13.297] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize1
[LOG 09:48:13.303] Load(Model): Squad/Parts/Engine/jetEngines/turboFanSize2
[LOG 09:48:13.312] Load(Model): Squad/Parts/Engine/jetEngines/turboJet
[LOG 09:48:13.318] Load(Model): Squad/Parts/Engine/jetEngines/turboRamJet
[LOG 09:48:13.326] Load(Model): Squad/Parts/Engine/liquidEngine24-77/model
[LOG 09:48:13.329] Load(Model): Squad/Parts/Engine/liquidEngine48-7S/model
[LOG 09:48:13.335] Load(Model): Squad/Parts/Engine/liquidEngineAerospike/AeroSpike
[LOG 09:48:13.340] Load(Model): Squad/Parts/Engine/liquidEngineLV-1/model
[LOG 09:48:13.343] Load(Model): Squad/Parts/Engine/liquidEngineLV-1R/model
[LOG 09:48:13.349] Load(Model): Squad/Parts/Engine/liquidEngineLV-909/model
[LOG 09:48:13.355] Load(Model): Squad/Parts/Engine/liquidEngineLV-N/model
[LOG 09:48:13.363] Load(Model): Squad/Parts/Engine/liquidEngineLV-T30/model
[LOG 09:48:13.369] Load(Model): Squad/Parts/Engine/liquidEngineLV-T45/model
[LOG 09:48:13.375] Load(Model): Squad/Parts/Engine/liquidEngineMainsail/model
[LOG 09:48:13.383] Load(Model): Squad/Parts/Engine/liquidEngineMk55/Thud
[LOG 09:48:13.388] Load(Model): Squad/Parts/Engine/liquidEnginePoodle/model
[LOG 09:48:13.394] Load(Model): Squad/Parts/Engine/liquidEngineSkipper/model
[LOG 09:48:13.402] Load(Model): Squad/Parts/Engine/liquidEngineSSME/SSME
[LOG 09:48:13.409] Load(Model): Squad/Parts/Engine/MassiveSRB/MassiveSRB
[LOG 09:48:13.415] Load(Model): Squad/Parts/Engine/miniJet/SmallJet
[LOG 09:48:13.419] Load(Model): Squad/Parts/Engine/OMSEngine/NewModel
[LOG 09:48:13.424] Load(Model): Squad/Parts/Engine/rapierEngine/rapier
[LOG 09:48:13.431] Load(Model): Squad/Parts/Engine/Size2LFB/Size2LFB
[LOG 09:48:13.439] Load(Model): Squad/Parts/Engine/Size3AdvancedEngine/Size3AdvancedEngine
[LOG 09:48:13.447] Load(Model): Squad/Parts/Engine/Size3EngineCluster/Size3EngineCluster
[LOG 09:48:13.457] Load(Model): Squad/Parts/Engine/solidBoosterBACC/model
[LOG 09:48:13.461] Load(Model): Squad/Parts/Engine/solidBoosterRT-10/model
[LOG 09:48:13.467] Load(Model): Squad/Parts/Engine/solidBoosterRT-5/SRB_RT5
[LOG 09:48:13.473] Load(Model): Squad/Parts/Engine/solidBoosterSep/model
[LOG 09:48:13.476] Load(Model): Squad/Parts/Engine/vernorEngine/NewModel
[LOG 09:48:13.481] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2
[LOG 09:48:13.485] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2
[LOG 09:48:13.490] Load(Model): Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant
[LOG 09:48:13.494] Load(Model): Squad/Parts/FuelTank/adapterTanks/ShuttleAdapter
[LOG 09:48:13.498] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Mk2
[LOG 09:48:13.503] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1
[LOG 09:48:13.509] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant
[LOG 09:48:13.513] Load(Model): Squad/Parts/FuelTank/adapterTanks/Size3-Mk3
[LOG 09:48:13.517] Load(Model): Squad/Parts/FuelTank/fuelTankJumbo-64/model
[LOG 09:48:13.523] Load(Model): Squad/Parts/FuelTank/fuelTankOscarB/model
[LOG 09:48:13.527] Load(Model): Squad/Parts/FuelTank/fuelTankT100/model
[LOG 09:48:13.532] Load(Model): Squad/Parts/FuelTank/fuelTankT200/model
[LOG 09:48:13.541] Load(Model): Squad/Parts/FuelTank/fuelTankT400/model
[LOG 09:48:13.547] Load(Model): Squad/Parts/FuelTank/fuelTankT800/model
[LOG 09:48:13.553] Load(Model): Squad/Parts/FuelTank/fuelTankToroidal/model
[LOG 09:48:13.561] Load(Model): Squad/Parts/FuelTank/fuelTankX200-16/model
[LOG 09:48:13.566] Load(Model): Squad/Parts/FuelTank/fuelTankX200-32/model
[LOG 09:48:13.572] Load(Model): Squad/Parts/FuelTank/fuelTankX200-8/model
[LOG 09:48:13.576] Load(Model): Squad/Parts/FuelTank/miniFuselage/Fuselage
[LOG 09:48:13.580] Load(Model): Squad/Parts/FuelTank/mk2Adapters/bicoupler
[LOG 09:48:13.587] Load(Model): Squad/Parts/FuelTank/mk2Adapters/long
[LOG 09:48:13.591] Load(Model): Squad/Parts/FuelTank/mk2Adapters/standard
[LOG 09:48:13.595] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLFO
[LOG 09:48:13.598] Load(Model): Squad/Parts/FuelTank/mk2FuselageLong/FuselageLongLiquid
[LOG 09:48:13.603] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLFO
[LOG 09:48:13.608] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortLiquid
[LOG 09:48:13.612] Load(Model): Squad/Parts/FuelTank/mk2FuselageShort/FuselageShortMono
[LOG 09:48:13.616] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/CREW
[LOG 09:48:13.622] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_100
[LOG 09:48:13.626] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_25
[LOG 09:48:13.630] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LFO_50
[LOG 09:48:13.634] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_100
[LOG 09:48:13.639] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_25
[LOG 09:48:13.643] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/LF_50
[LOG 09:48:13.649] Load(Model): Squad/Parts/FuelTank/mk3Fuselage/MONO
[LOG 09:48:13.653] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR1/model
[LOG 09:48:13.657] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR10/model
[LOG 09:48:13.662] Load(Model): Squad/Parts/FuelTank/RCSFuelTankR25/model
[LOG 09:48:13.667] Load(Model): Squad/Parts/FuelTank/RCSTankRadial/model
[LOG 09:48:13.670] Load(Model): Squad/Parts/FuelTank/RCStankRadialLong/model
[LOG 09:48:13.676] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3LargeTank
[LOG 09:48:13.681] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3MediumTank
[LOG 09:48:13.686] Load(Model): Squad/Parts/FuelTank/Size3Tanks/Size3SmallTank
[LOG 09:48:13.691] Load(Model): Squad/Parts/FuelTank/xenonTank/model
[LOG 09:48:13.695] Load(Model): Squad/Parts/FuelTank/xenonTankLarge/model
[LOG 09:48:13.701] Load(Model): Squad/Parts/FuelTank/xenonTankRadial/model
[LOG 09:48:13.705] Load(Model): Squad/Parts/Misc/AsteroidDay/HECS2
[LOG 09:48:13.709] Load(Model): Squad/Parts/Misc/AsteroidDay/HighGainAntenna
[LOG 09:48:13.715] Load(Model): Squad/Parts/Misc/AsteroidDay/LgRadialSolar
[LOG 09:48:13.719] Load(Model): Squad/Parts/Misc/PotatoRoid/PotatoRoid
[ERR 09:48:13.726] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:13.727] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:13.734] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:13.735] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[LOG 09:48:13.735] Load(Model): Squad/Parts/Resources/FuelCell/FuelCell
[LOG 09:48:13.738] Load(Model): Squad/Parts/Resources/FuelCell/FuelCellArray
[LOG 09:48:13.746] Load(Model): Squad/Parts/Resources/ISRU/ISRU
[LOG 09:48:13.755] Load(Model): Squad/Parts/Resources/LargeTank/LargeTank
[LOG 09:48:13.761] Load(Model): Squad/Parts/Resources/MiniDrill/MiniDrill
[LOG 09:48:13.771] Load(Model): Squad/Parts/Resources/MiniISRU/MiniISRU
[LOG 09:48:13.777] Load(Model): Squad/Parts/Resources/OrbitalScanner/OrbitalScanner
[LOG 09:48:13.782] Load(Model): Squad/Parts/Resources/RadialDrill/TriBitDrill
[LOG 09:48:13.790] Load(Model): Squad/Parts/Resources/RadialTank/RadialOreTank
[LOG 09:48:13.794] Load(Model): Squad/Parts/Resources/SmallTank/SmallTank
[LOG 09:48:13.798] Load(Model): Squad/Parts/Resources/SurfaceScanner/SurfaceScanner
[LOG 09:48:13.802] Load(Model): Squad/Parts/Resources/SurveyScanner/SurveyScanner
[LOG 09:48:13.807] Load(Model): Squad/Parts/Science/AtmosphereSensor/model
[LOG 09:48:13.811] Load(Model): Squad/Parts/Science/GooExperiment/GooExperiment
[LOG 09:48:13.815] Load(Model): Squad/Parts/Science/LargeCrewedLab/large_crewed_lab
[LOG 09:48:13.831] Load(Model): Squad/Parts/Science/MaterialBay/science_module_small
[LOG 09:48:13.837] Load(Model): Squad/Parts/Science/sensorAccelerometer/model
[LOG 09:48:13.840] Load(Model): Squad/Parts/Science/sensorBarometer/model
[LOG 09:48:13.844] Load(Model): Squad/Parts/Science/sensorGravimeter/model
[LOG 09:48:13.849] Load(Model): Squad/Parts/Science/sensorThermometer/model
[LOG 09:48:13.852] Load(Model): Squad/Parts/Structural/adapterLargeSmallBi/model
[LOG 09:48:13.857] Load(Model): Squad/Parts/Structural/adapterLargeSmallQuad/model
[LOG 09:48:13.862] Load(Model): Squad/Parts/Structural/adapterLargeSmallTri/model
[LOG 09:48:13.866] Load(Model): Squad/Parts/Structural/adapterSmallMiniShort/model
[LOG 09:48:13.870] Load(Model): Squad/Parts/Structural/adapterSmallMiniTall/model
[LOG 09:48:13.875] Load(Model): Squad/Parts/Structural/mk1Parts/Fuselage
[LOG 09:48:13.880] Load(Model): Squad/Parts/Structural/mk1Parts/IntakeFuselage
[LOG 09:48:13.885] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle1
[LOG 09:48:13.889] Load(Model): Squad/Parts/Structural/mk1Parts/Nacelle2
[LOG 09:48:13.894] Load(Model): Squad/Parts/Structural/mk1Parts/Structural
[LOG 09:48:13.899] Load(Model): Squad/Parts/Structural/mk1Parts/StructuralHollow
[LOG 09:48:13.902] Load(Model): Squad/Parts/Structural/Size3Decoupler/size3Decoupler
[LOG 09:48:13.908] Load(Model): Squad/Parts/Structural/Size3To2Adapter/Size3Adapter
[LOG 09:48:13.913] Load(Model): Squad/Parts/Structural/stationHub/model
[LOG 09:48:13.919] Load(Model): Squad/Parts/Structural/structuralIBeam200/model
[LOG 09:48:13.921] Load(Model): Squad/Parts/Structural/structuralIBeam200Pocket/model
[LOG 09:48:13.925] Load(Model): Squad/Parts/Structural/structuralIBeam650/model
[LOG 09:48:13.930] Load(Model): Squad/Parts/Structural/structuralMicronode/model
[LOG 09:48:13.934] Load(Model): Squad/Parts/Structural/structuralPanel1x1/model
[LOG 09:48:13.938] Load(Model): Squad/Parts/Structural/structuralPanel2x2/model
[LOG 09:48:13.942] Load(Model): Squad/Parts/Structural/structuralPylons/PylonBig
[LOG 09:48:13.948] Load(Model): Squad/Parts/Structural/structuralPylons/PylonSmall
[LOG 09:48:13.951] Load(Model): Squad/Parts/Structural/strutCubicOcto/model
[LOG 09:48:13.956] Load(Model): Squad/Parts/Structural/strutOcto/model
[LOG 09:48:13.960] Load(Model): Squad/Parts/Structural/trussGirderAdapter/model
[LOG 09:48:13.965] Load(Model): Squad/Parts/Structural/trussGirderL/model
[LOG 09:48:13.970] Load(Model): Squad/Parts/Structural/trussGirderXL/model
[LOG 09:48:13.974] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge
[LOG 09:48:13.999] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadMed
[LOG 09:48:14.010] Load(Model): Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall
[LOG 09:48:14.020] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelEdge
[LOG 09:48:14.023] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelLg
[LOG 09:48:14.028] Load(Model): Squad/Parts/Thermal/RadiatorPanels/radPanelSm
[LOG 09:48:14.032] Load(Model): Squad/Parts/Utility/commDish88-88/model
[LOG 09:48:14.072] Load(Model): Squad/Parts/Utility/commsAntennaDTS-M1/mediumDishAntenna
[LOG 09:48:14.079] Load(Model): Squad/Parts/Utility/commsDish16/model
[LOG 09:48:14.083] Load(Model): Squad/Parts/Utility/decouplerRadialHDM/model
[LOG 09:48:14.087] Load(Model): Squad/Parts/Utility/decouplerRadialTT-38K/model
[LOG 09:48:14.091] Load(Model): Squad/Parts/Utility/decouplerRadialTT-70/model
[LOG 09:48:14.095] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-18D/model
[LOG 09:48:14.100] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-2C/model
[LOG 09:48:14.104] Load(Model): Squad/Parts/Utility/decouplerSeparatorTR-XL/model
[LOG 09:48:14.109] Load(Model): Squad/Parts/Utility/decouplerStack2m/model
[LOG 09:48:14.114] Load(Model): Squad/Parts/Utility/decouplerStackTR-18A/model
[LOG 09:48:14.118] Load(Model): Squad/Parts/Utility/decouplerStackTR-2V/model
[LOG 09:48:14.122] Load(Model): Squad/Parts/Utility/dockingPort/model
[LOG 09:48:14.128] Load(Model): Squad/Parts/Utility/dockingPortInline/model
[LOG 09:48:14.135] Load(Model): Squad/Parts/Utility/dockingPortJr/model
[LOG 09:48:14.139] Load(Model): Squad/Parts/Utility/dockingPortShielded/model
[LOG 09:48:14.146] Load(Model): Squad/Parts/Utility/dockingPortSr/model
[LOG 09:48:14.151] Load(Model): Squad/Parts/Utility/GrapplingDevice/GrapplingArm
[LOG 09:48:14.178] Load(Model): Squad/Parts/Utility/ladderRadial/model
[LOG 09:48:14.182] Load(Model): Squad/Parts/Utility/ladderTelescopic/model
[LOG 09:48:14.189] Load(Model): Squad/Parts/Utility/ladderTelescopicBay/model
[LOG 09:48:14.202] Load(Model): Squad/Parts/Utility/landingLegLT-1/model
[LOG 09:48:14.208] Load(Model): Squad/Parts/Utility/landingLegLT-2/model
[LOG 09:48:14.213] Load(Model): Squad/Parts/Utility/landingLegLT-5/model
[ERR 09:48:14.217] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.218] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.220] Load(Model): Squad/Parts/Utility/largeAdapter/model
[LOG 09:48:14.224] Load(Model): Squad/Parts/Utility/largeAdapterShort/model
[LOG 09:48:14.228] Load(Model): Squad/Parts/Utility/launchClamp1/model
[LOG 09:48:14.233] Load(Model): Squad/Parts/Utility/launchEscapeSystem/LaunchEscapeSystem
[LOG 09:48:14.241] Load(Model): Squad/Parts/Utility/linearRCS/model
[LOG 09:48:14.245] Load(Model): Squad/Parts/Utility/mk2CargoBay/BayLarge
[LOG 09:48:14.251] Load(Model): Squad/Parts/Utility/mk2CargoBay/BaySmall
[LOG 09:48:14.257] Load(Model): Squad/Parts/Utility/mk2CrewCabin/model
[LOG 09:48:14.262] Load(Model): Squad/Parts/Utility/mk2DockingPort/model
[LOG 09:48:14.269] Load(Model): Squad/Parts/Utility/mk3CargoBay/long
[LOG 09:48:14.277] Load(Model): Squad/Parts/Utility/mk3CargoBay/medium
[LOG 09:48:14.284] Load(Model): Squad/Parts/Utility/mk3CargoBay/ramp
[LOG 09:48:14.296] Load(Model): Squad/Parts/Utility/mk3CargoBay/short
[LOG 09:48:14.302] Load(Model): Squad/Parts/Utility/parachuteMk1/model
[LOG 09:48:14.349] Load(Model): Squad/Parts/Utility/parachuteMk12-R/model
[LOG 09:48:14.354] Load(Model): Squad/Parts/Utility/parachuteMk16-XL/model
[LOG 09:48:14.360] Load(Model): Squad/Parts/Utility/parachuteMk2-R/model
[LOG 09:48:14.364] Load(Model): Squad/Parts/Utility/parachuteMk25/model
[LOG 09:48:14.370] Load(Model): Squad/Parts/Utility/radialAttachmentPoint/model
[LOG 09:48:14.375] Load(Model): Squad/Parts/Utility/rcsBlockRV-105/model
[LOG 09:48:14.378] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_125
[LOG 09:48:14.389] Load(Model): Squad/Parts/Utility/ServiceBay/ServiceBay_250
[LOG 09:48:14.400] Load(Model): Squad/Parts/Utility/spotLightMk1/model
[LOG 09:48:14.405] Load(Model): Squad/Parts/Utility/spotLightMk2/model
[LOG 09:48:14.432] Load(Model): Squad/Parts/Utility/stackBiCoupler/model
[LOG 09:48:14.437] Load(Model): Squad/Parts/Utility/stackQuadCoupler/model
[LOG 09:48:14.441] Load(Model): Squad/Parts/Utility/stackTriCoupler/model
[LOG 09:48:14.446] Load(Model): Squad/Parts/Wheel/LandingGear/GearExtraLarge
[ERR 09:48:14.457] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.457] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.465] Load(Model): Squad/Parts/Wheel/LandingGear/GearFixed
[ERR 09:48:14.468] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.468] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.470] Load(Model): Squad/Parts/Wheel/LandingGear/GearFree
[ERR 09:48:14.471] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.472] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.475] Load(Model): Squad/Parts/Wheel/LandingGear/GearLarge
[ERR 09:48:14.477] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.477] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.483] Load(Model): Squad/Parts/Wheel/LandingGear/GearMedium
[ERR 09:48:14.488] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.489] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.490] Load(Model): Squad/Parts/Wheel/LandingGear/GearSmall
[ERR 09:48:14.492] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.492] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.497] Load(Model): Squad/Parts/Wheel/roverWheelM1/model
[ERR 09:48:14.502] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.503] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.504] Load(Model): Squad/Parts/Wheel/roverWheelS2/model
[ERR 09:48:14.506] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.506] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.511] Load(Model): Squad/Parts/Wheel/roverWheelTR-2L/model
[ERR 09:48:14.517] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.517] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.518] Load(Model): Squad/Parts/Wheel/roverWheelXL3/model
[ERR 09:48:14.532] WheelCollider requires an attached Rigidbody to function.

[ERR 09:48:14.532] WheelCollider requires an attached Rigidbody to function.

[LOG 09:48:14.535] Load(Model): Squad/Props/AltimeterThreeHands/model
[LOG 09:48:14.541] Load(Model): Squad/Props/AtmosphereDepth/model
[LOG 09:48:14.545] Load(Model): Squad/Props/AxisIndicator/model
[LOG 09:48:14.550] Load(Model): Squad/Props/ButtonSquare/model
[LOG 09:48:14.554] Load(Model): Squad/Props/circularButton/model
[LOG 09:48:14.558] Load(Model): Squad/Props/Compass/model
[LOG 09:48:14.564] Load(Model): Squad/Props/directionalKnob/model
[LOG 09:48:14.568] Load(Model): Squad/Props/directionalKnob2/model
[LOG 09:48:14.572] Load(Model): Squad/Props/IndicatorPanel/model
[LOG 09:48:14.577] Load(Model): Squad/Props/IVANavBall/model
[LOG 09:48:14.590] Load(Model): Squad/Props/ledPanelSpeed/model
[LOG 09:48:14.594] Load(Model): Squad/Props/Monitor/MonitorDockingMode
[LOG 09:48:14.597] Load(Model): Squad/Props/NavBall/model
[LOG 09:48:14.603] Load(Model): Squad/Props/PropsGeneric/Button_DockingMode
[LOG 09:48:14.605] Load(Model): Squad/Props/PropsGeneric/CargoBagA
[LOG 09:48:14.632] Load(Model): Squad/Props/PropsGeneric/CargoBagB
[LOG 09:48:14.636] Load(Model): Squad/Props/PropsGeneric/CargoBagC
[LOG 09:48:14.639] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane
[LOG 09:48:14.642] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Curve90
[LOG 09:48:14.647] Load(Model): Squad/Props/PropsGeneric/Hatch_Plane_Frame
[LOG 09:48:14.651] Load(Model): Squad/Props/PropsGeneric/Seat_Passenger
[LOG 09:48:14.656] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot
[LOG 09:48:14.660] Load(Model): Squad/Props/PropsGeneric/Seat_Pilot_Helmet
[LOG 09:48:14.665] Load(Model): Squad/Props/PropsGeneric/SideStick
[LOG 09:48:14.669] Load(Model): Squad/Props/pullSwitch/model
[LOG 09:48:14.674] Load(Model): Squad/Props/radarAltitude/model
[LOG 09:48:14.678] Load(Model): Squad/Props/squareButton/model
[LOG 09:48:14.684] Load(Model): Squad/Props/standingSwitch/model
[LOG 09:48:14.688] Load(Model): Squad/Props/switch/model
[LOG 09:48:14.692] Load(Model): Squad/Props/switchGuard/model
[LOG 09:48:14.697] Load(Model): Squad/Props/switchWithGuards/model
[LOG 09:48:14.702] Load(Model): Squad/Props/throttle/model
[LOG 09:48:14.706] Load(Model): Squad/Props/VSI/model
[LOG 09:48:14.711] Load(Model): Squad/Spaces/crewCabinInternals/model
[LOG 09:48:14.729] Load(Model): Squad/Spaces/cupolaInternal/model
[LOG 09:48:14.739] Load(Model): Squad/Spaces/GenericSpace1/model
[LOG 09:48:14.754] Load(Model): Squad/Spaces/GenericSpace3/model
[LOG 09:48:14.778] Load(Model): Squad/Spaces/landerCabinInternals/model
[LOG 09:48:14.792] Load(Model): Squad/Spaces/landerCabinSmallInternal/model
[LOG 09:48:14.800] Load(Model): Squad/Spaces/LargeCrewedLabInternals/Large_Crewed_lab_Int
[LOG 09:48:14.821] Load(Model): Squad/Spaces/mk1CabinInternal/mk1cabin
[LOG 09:48:14.853] Load(Model): Squad/Spaces/mk1CockpitInternal/Mk1StandardIVA
[LOG 09:48:14.860] Load(Model): Squad/Spaces/mk1InlineInternal/Mk1InlineIVA
[LOG 09:48:14.869] Load(Model): Squad/Spaces/mk1PodCockpit/model
[LOG 09:48:14.883] Load(Model): Squad/Spaces/mk2CockpitStandardInternal/model
[LOG 09:48:14.894] Load(Model): Squad/Spaces/Mk2CrewCabinInternal/MK2_CrewCab_Int
[LOG 09:48:14.912] Load(Model): Squad/Spaces/mk2InlineInternal/mk2InlineIVA
[LOG 09:48:14.932] Load(Model): Squad/Spaces/MK3CockpitInternal/MK3_Cockpit_Int
[LOG 09:48:14.944] Load(Model): Squad/Spaces/MK3_CrewCab_Int/MK3_CrewCab_Int
[LOG 09:48:14.987] Load(Model): Squad/Spaces/OverlayMasks/CupolaMask
[LOG 09:48:14.992] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerBorder
[LOG 09:48:15.002] Load(Model): Squad/Spaces/OverlayMasks/HitchhikerMask
[LOG 09:48:15.006] Load(Model): Squad/Spaces/OverlayMasks/LargeLabBorder
[LOG 09:48:15.010] Load(Model): Squad/Spaces/OverlayMasks/LargeLabMask
[LOG 09:48:15.013] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinBorder
[LOG 09:48:15.018] Load(Model): Squad/Spaces/OverlayMasks/Mk1CabinMask
[LOG 09:48:15.022] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask
[LOG 09:48:15.027] Load(Model): Squad/Spaces/OverlayMasks/Mk1InlineMask2
[LOG 09:48:15.032] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder2
[LOG 09:48:15.041] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardBorder3
[LOG 09:48:15.045] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask
[LOG 09:48:15.050] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask2
[LOG 09:48:15.055] Load(Model): Squad/Spaces/OverlayMasks/Mk1StandardMask3
[LOG 09:48:15.059] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinBorder
[LOG 09:48:15.064] Load(Model): Squad/Spaces/OverlayMasks/Mk2CabinMask
[LOG 09:48:15.067] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineBorder
[LOG 09:48:15.072] Load(Model): Squad/Spaces/OverlayMasks/Mk2InlineMask
[LOG 09:48:15.077] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardBorder
[LOG 09:48:15.081] Load(Model): Squad/Spaces/OverlayMasks/Mk2StandardMask
[LOG 09:48:15.086] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinBorder
[LOG 09:48:15.091] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask
[LOG 09:48:15.095] Load(Model): Squad/Spaces/OverlayMasks/Mk3CabinMask2
[LOG 09:48:15.100] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleBorder
[LOG 09:48:15.104] Load(Model): Squad/Spaces/OverlayMasks/Mk3ShuttleMask
[LOG 09:48:15.108] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderBorder
[LOG 09:48:15.112] Load(Model): Squad/Spaces/OverlayMasks/Size1LanderMask
[LOG 09:48:15.117] Load(Model): Squad/Spaces/OverlayMasks/Size1PodBorder
[LOG 09:48:15.121] Load(Model): Squad/Spaces/OverlayMasks/Size1PodMask
[LOG 09:48:15.126] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderBorder
[LOG 09:48:15.131] Load(Model): Squad/Spaces/OverlayMasks/Size2LanderMask
[LOG 09:48:15.135] Load(Model): Squad/Spaces/OverlayMasks/Size2PodBorder
[LOG 09:48:15.140] Load(Model): Squad/Spaces/OverlayMasks/Size2PodMask
[LOG 09:48:15.144] Load(Model): Squad/Spaces/Placeholder/PlaceholderIVA
[LOG 09:48:15.150] Load(Model): Squad/Spaces/PodCockpit/model
[LOG 09:48:15.181] Loading Asset Bundle Definitions
[LOG 09:48:15.185] AssetLoader: Loading bundle definitions
[LOG 09:48:15.554] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\squadcore.ksp'
[LOG 09:48:15.617] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia.ksp'
[LOG 09:48:15.714] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraft.ksp'
[LOG 09:48:15.819] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasics.ksp'
[LOG 09:48:15.914] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance.ksp'
[LOG 09:48:16.014] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsbalance2.ksp'
[LOG 09:48:16.089] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicscol.ksp'
[LOG 09:48:16.115] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrol.ksp'
[LOG 09:48:16.211] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicscontrolsurfaces.ksp'
[LOG 09:48:16.303] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsdrag.ksp'
[LOG 09:48:16.390] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsengines.ksp'
[LOG 09:48:16.477] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsforces.ksp'
[LOG 09:48:16.556] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicsintakes.ksp'
[LOG 09:48:16.647] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicslandinggear.ksp'
[LOG 09:48:16.673] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_aircraftbasicslift.ksp'
[LOG 09:48:16.757] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_career.ksp'
[LOG 09:48:16.833] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicscontracts.ksp'
[LOG 09:48:16.920] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicscrew.ksp'
[LOG 09:48:16.952] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicscurrencies.ksp'
[LOG 09:48:16.988] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicsexperience.ksp'
[LOG 09:48:17.081] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicsfacilities.ksp'
[LOG 09:48:17.168] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicsstrategies.ksp'
[LOG 09:48:17.186] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerbasicstechnology.ksp'
[LOG 09:48:17.209] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-ac.ksp'
[LOG 09:48:17.300] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-admin.ksp'
[LOG 09:48:17.323] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-ksc.ksp'
[LOG 09:48:17.399] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-mc.ksp'
[LOG 09:48:17.466] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-sciencearchives.ksp'
[LOG 09:48:17.577] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-techtree.ksp'
[LOG 09:48:17.670] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui-ts.ksp'
[LOG 09:48:17.756] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_careerui.ksp'
[LOG 09:48:17.834] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-actiongroups.ksp'
[LOG 09:48:17.933] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-applauncher.ksp'
[LOG 09:48:18.050] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-crew.ksp'
[LOG 09:48:18.138] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-engineersreport.ksp'
[LOG 09:48:18.161] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-gizmos.ksp'
[LOG 09:48:18.258] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-infos.ksp'
[LOG 09:48:18.327] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-partdetails.ksp'
[LOG 09:48:18.428] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-parts.ksp'
[LOG 09:48:18.454] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-symmetry.ksp'
[LOG 09:48:18.480] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui-vesseldetails.ksp'
[LOG 09:48:18.568] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_constructionui.ksp'
[LOG 09:48:18.651] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-dockingmode.ksp'
[LOG 09:48:18.673] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-editor.ksp'
[LOG 09:48:18.744] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-editorgizmos.ksp'
[LOG 09:48:18.821] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-eva.ksp'
[LOG 09:48:18.839] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-flight.ksp'
[LOG 09:48:18.857] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-flightactivities.ksp'
[LOG 09:48:18.933] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-flightdirections.ksp'
[LOG 09:48:18.950] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-general.ksp'
[LOG 09:48:18.968] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-mapandtime.ksp'
[LOG 09:48:19.039] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-mouseconstruction.ksp'
[LOG 09:48:19.139] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-mouseflight.ksp'
[LOG 09:48:19.166] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls-rcs.ksp'
[LOG 09:48:19.256] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_controls.ksp'
[LOG 09:48:19.379] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_eastereggs.ksp'
[LOG 09:48:19.461] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-ac.ksp'
[LOG 09:48:19.557] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-admin.ksp'
[LOG 09:48:19.636] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-context.ksp'
[LOG 09:48:19.715] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-ksc.ksp'
[LOG 09:48:19.829] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-launchpad.ksp'
[LOG 09:48:19.917] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-mc.ksp'
[LOG 09:48:19.996] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-randd.ksp'
[LOG 09:48:20.071] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-runway.ksp'
[LOG 09:48:20.151] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-sph.ksp'
[LOG 09:48:20.270] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-ts.ksp'
[LOG 09:48:20.297] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_facilities-vab.ksp'
[LOG 09:48:20.320] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-altimeter.ksp'
[LOG 09:48:20.396] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-applauncher.ksp'
[LOG 09:48:20.477] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-evaactivities.ksp'
[LOG 09:48:20.556] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-modecontrol.ksp'
[LOG 09:48:20.638] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-navball.ksp'
[LOG 09:48:20.756] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-portraits.ksp'
[LOG 09:48:20.891] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-staging.ksp'
[LOG 09:48:20.918] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui-timeandaction.ksp'
[LOG 09:48:20.963] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_flightui.ksp'
[LOG 09:48:21.041] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heat.ksp'
[LOG 09:48:21.068] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatactiveradiators.ksp'
[LOG 09:48:21.091] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatcore.ksp'
[LOG 09:48:21.121] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatengines.ksp'
[LOG 09:48:21.205] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatflow.ksp'
[LOG 09:48:21.227] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatpart.ksp'
[LOG 09:48:21.249] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatpassiveradiators.ksp'
[LOG 09:48:21.338] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_heatshields.ksp'
[LOG 09:48:21.441] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_locations.ksp'
[LOG 09:48:21.462] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_manual.ksp'
[LOG 09:48:21.483] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui-mannodes.ksp'
[LOG 09:48:21.555] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes.ksp'
[LOG 09:48:21.634] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui-orbitnodes2.ksp'
[LOG 09:48:21.657] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_mapui.ksp'
[LOG 09:48:21.735] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-atmosphere.ksp'
[LOG 09:48:21.755] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingbackdown.ksp'
[LOG 09:48:21.840] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-gettingupthere.ksp'
[LOG 09:48:21.868] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-gravityturn.ksp'
[LOG 09:48:21.949] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-orbits.ksp'
[LOG 09:48:22.050] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics-stayingupthere.ksp'
[LOG 09:48:22.124] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalbasics.ksp'
[LOG 09:48:22.211] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-appe.ksp'
[LOG 09:48:22.291] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-dirandinc.ksp'
[LOG 09:48:22.376] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-directions.ksp'
[LOG 09:48:22.394] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions-eccentricity.ksp'
[LOG 09:48:22.470] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitaldefinitions.ksp'
[LOG 09:48:22.488] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-adjustinginclination.ksp'
[LOG 09:48:22.555] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-deltav.ksp'
[LOG 09:48:22.625] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-efficiency.ksp'
[LOG 09:48:22.651] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer.ksp'
[LOG 09:48:22.743] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-hohmanntransfer2.ksp'
[LOG 09:48:22.817] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-orbittypes.ksp'
[LOG 09:48:22.844] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-radandantirad.ksp'
[LOG 09:48:22.922] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers-shapingup.ksp'
[LOG 09:48:23.001] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_orbitalmaneuvers.ksp'
[LOG 09:48:23.105] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-dres.ksp'
[LOG 09:48:23.218] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-duna.ksp'
[LOG 09:48:23.344] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-eeloo.ksp'
[LOG 09:48:23.371] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-eve.ksp'
[LOG 09:48:23.454] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-jool.ksp'
[LOG 09:48:23.480] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-kerbin.ksp'
[LOG 09:48:23.563] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-moho.ksp'
[LOG 09:48:23.641] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-sun.ksp'
[LOG 09:48:23.723] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_planets-system.ksp'
[LOG 09:48:23.837] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-asteroidmining.ksp'
[LOG 09:48:23.867] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-conversionmanagement.ksp'
[LOG 09:48:23.941] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-drilling.ksp'
[LOG 09:48:24.055] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-findingit.ksp'
[LOG 09:48:24.081] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-findingit2.ksp'
[LOG 09:48:24.176] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources-storageandconversion.ksp'
[LOG 09:48:24.203] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_resources.ksp'
[LOG 09:48:24.290] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketry.ksp'
[LOG 09:48:24.394] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketryadvanced-fairings.ksp'
[LOG 09:48:24.472] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketryadvanced-girders.ksp'
[LOG 09:48:24.573] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketryadvanced.ksp'
[LOG 09:48:24.685] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasics.ksp'
[LOG 09:48:24.825] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsaero.ksp'
[LOG 09:48:24.899] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicscentered.ksp'
[LOG 09:48:24.973] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicschutes.ksp'
[LOG 09:48:25.061] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicscontrol.ksp'
[LOG 09:48:25.135] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsecrecharging.ksp'
[LOG 09:48:25.162] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsengines.ksp'
[LOG 09:48:25.248] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsforces.ksp'
[LOG 09:48:25.327] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicshatchesandladders.ksp'
[LOG 09:48:25.440] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsresources.ksp'
[LOG 09:48:25.562] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsservicecontainers.ksp'
[LOG 09:48:25.636] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsstability.ksp'
[LOG 09:48:25.750] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsstabilityassist.ksp'
[LOG 09:48:25.776] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicsstaging.ksp'
[LOG 09:48:25.803] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_rocketrybasicssymmetry.ksp'
[LOG 09:48:25.898] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_science.ksp'
[LOG 09:48:25.972] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_sciencedata.ksp'
[LOG 09:48:25.999] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_scienceexperiments.ksp'
[LOG 09:48:26.095] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_sciencelab.ksp'
[LOG 09:48:26.387] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_sciencetransmitted.ksp'
[LOG 09:48:26.466] AssetLoader: Loaded bundle 'R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Squad\KSPedia\kspedia_spacetravel.ksp'
[LOG 09:48:26.473] AssetLoader: Finished loading. 152 bundle definitions loaded.
[LOG 09:48:26.474] Config(AGENT) REPOSoftTech/Agencies/Agents/REPOSoftTech
[LOG 09:48:26.476] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONrcsBlock45/IONRCSBlock45
[LOG 09:48:26.477] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONrcsBlock/IONRCSBlock
[LOG 09:48:26.478] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/part/LinearIonRCS
[LOG 09:48:26.479] Config(PART) REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/part/LinearPPTRCS
[LOG 09:48:26.480] Config(RESOURCE_DEFINITION) REPOSoftTech/IONRCS/Resources/IONRCSResources/Teflon
[LOG 09:48:26.481] Config(AGENT) Squad/Agencies/Agents/C7 Aerospace Division
[LOG 09:48:26.481] Config(AGENT) Squad/Agencies/Agents/Dinkelstein Kerman's Construction Emporium
[LOG 09:48:26.482] Config(AGENT) Squad/Agencies/Agents/Experimental Engineering Group
[LOG 09:48:26.483] Config(AGENT) Squad/Agencies/Agents/FLOOYD Dynamics Research Labs
[LOG 09:48:26.484] Config(AGENT) Squad/Agencies/Agents/Goliath National Products
[LOG 09:48:26.485] Config(AGENT) Squad/Agencies/Agents/Integrated Integrals
[LOG 09:48:26.486] Config(AGENT) Squad/Agencies/Agents/Ionic Symphonic Protonic Electronics
[LOG 09:48:26.487] Config(AGENT) Squad/Agencies/Agents/Jebediah Kerman's Junkyard and Spacecraft Parts Co
[LOG 09:48:26.487] Config(AGENT) Squad/Agencies/Agents/Kerbal Motion LLC
[LOG 09:48:26.488] Config(AGENT) Squad/Agencies/Agents/Kerbin World-Firsts Record-Keeping Society
[LOG 09:48:26.488] Config(AGENT) Squad/Agencies/Agents/Kerbodyne
[LOG 09:48:26.489] Config(AGENT) Squad/Agencies/Agents/Kerlington Model Rockets and Paper Products Inc
[LOG 09:48:26.489] Config(AGENT) Squad/Agencies/Agents/Maxo Construction Toys
[LOG 09:48:26.490] Config(AGENT) Squad/Agencies/Agents/Moving Parts Experts Group
[LOG 09:48:26.490] Config(AGENT) Squad/Agencies/Agents/O.M.B. Demolition Enterprises
[LOG 09:48:26.491] Config(AGENT) Squad/Agencies/Agents/Periapsis Rocket Supplies Co
[LOG 09:48:26.491] Config(AGENT) Squad/Agencies/Agents/Probodobodyne Inc
[LOG 09:48:26.492] Config(AGENT) Squad/Agencies/Agents/Research & Development Department
[LOG 09:48:26.492] Config(AGENT) Squad/Agencies/Agents/Reaction Systems Ltd
[LOG 09:48:26.492] Config(AGENT) Squad/Agencies/Agents/Rockomax Conglomerate
[LOG 09:48:26.493] Config(AGENT) Squad/Agencies/Agents/Rokea Inc
[LOG 09:48:26.493] Config(AGENT) Squad/Agencies/Agents/Sean's Cannery
[LOG 09:48:26.494] Config(AGENT) Squad/Agencies/Agents/STEADLER Engineering Corps
[LOG 09:48:26.494] Config(AGENT) Squad/Agencies/Agents/StrutCo
[LOG 09:48:26.495] Config(AGENT) Squad/Agencies/Agents/Vac-Co Advanced Suction Systems
[LOG 09:48:26.495] Config(AGENT) Squad/Agencies/Agents/WinterOwl Aircraft Emporium
[LOG 09:48:26.496] Config(AGENT) Squad/Agencies/Agents/Zaltonic Electronics
[LOG 09:48:26.496] Config(Contracts) Squad/Contracts/Contracts/Contracts
[LOG 09:48:26.497] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Pilot
[LOG 09:48:26.497] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Engineer
[LOG 09:48:26.498] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Scientist
[LOG 09:48:26.498] Config(EXPERIENCE_TRAIT) Squad/Experience/Traits/Tourist
[LOG 09:48:26.499] Config(CUSTOM_PARTLIST_CATEGORY) Squad/PartList/PartCategories/CUSTOM_PARTLIST_CATEGORY
[LOG 09:48:26.499] Config(PART) Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone
[LOG 09:48:26.500] Config(PART) Squad/Parts/Aero/airbrake/Airbrake/airbrake1
[LOG 09:48:26.500] Config(PART) Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop
[LOG 09:48:26.501] Config(PART) Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf
[LOG 09:48:26.501] Config(PART) Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing
[LOG 09:48:26.502] Config(PART) Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin
[LOG 09:48:26.502] Config(PART) Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard
[LOG 09:48:26.503] Config(PART) Squad/Parts/Aero/airplaneFins/standardCanard/CanardController
[LOG 09:48:26.503] Config(PART) Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing
[LOG 09:48:26.504] Config(PART) Squad/Parts/Aero/airplaneFins/tailfin/tailfin
[LOG 09:48:26.504] Config(PART) Squad/Parts/Aero/basicFin/basicFin/basicFin
[LOG 09:48:26.505] Config(PART) Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake
[LOG 09:48:26.505] Config(PART) Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake
[LOG 09:48:26.506] Config(PART) Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone
[LOG 09:48:26.506] Config(PART) Squad/Parts/Aero/cones/ConeA/pointyNoseConeA
[LOG 09:48:26.507] Config(PART) Squad/Parts/Aero/cones/ConeB/pointyNoseConeB
[LOG 09:48:26.507] Config(PART) Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter
[LOG 09:48:26.508] Config(PART) Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone
[LOG 09:48:26.508] Config(PART) Squad/Parts/Aero/cones/tailConnectorA/airplaneTail
[LOG 09:48:26.509] Config(PART) Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB
[LOG 09:48:26.509] Config(PART) Squad/Parts/Aero/fairings/fairingSize1/fairingSize1
[LOG 09:48:26.510] Config(PART) Squad/Parts/Aero/fairings/fairingSize2/fairingSize2
[LOG 09:48:26.510] Config(PART) Squad/Parts/Aero/fairings/fairingSize3/fairingSize3
[LOG 09:48:26.511] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1
[LOG 09:48:26.511] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2
[LOG 09:48:26.512] Config(PART) Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3
[LOG 09:48:26.512] Config(PART) Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield
[LOG 09:48:26.513] Config(PART) Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong
[LOG 09:48:26.513] Config(PART) Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake
[LOG 09:48:26.514] Config(PART) Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone
[LOG 09:48:26.514] Config(PART) Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake
[LOG 09:48:26.515] Config(PART) Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta
[LOG 09:48:26.515] Config(PART) Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1
[LOG 09:48:26.516] Config(PART) Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2
[LOG 09:48:26.516] Config(PART) Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder
[LOG 09:48:26.517] Config(PART) Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake
[LOG 09:48:26.517] Config(PART) Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet
[LOG 09:48:26.518] Config(PART) Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet
[LOG 09:48:26.518] Config(PART) Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3
[LOG 09:48:26.519] Config(PART) Squad/Parts/Aero/wings/connector1/wingConnector
[LOG 09:48:26.519] Config(PART) Squad/Parts/Aero/wings/connector2/wingConnector2
[LOG 09:48:26.520] Config(PART) Squad/Parts/Aero/wings/connector3/wingConnector3
[LOG 09:48:26.520] Config(PART) Squad/Parts/Aero/wings/connector4/wingConnector4
[LOG 09:48:26.521] Config(PART) Squad/Parts/Aero/wings/connector5/wingConnector5
[LOG 09:48:26.521] Config(PART) Squad/Parts/Aero/wings/delta/deltaWing
[LOG 09:48:26.522] Config(PART) Squad/Parts/Aero/wings/delta_small/delta_small
[LOG 09:48:26.522] Config(PART) Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf
[LOG 09:48:26.523] Config(PART) Squad/Parts/Aero/wings/elevon2/elevon2
[LOG 09:48:26.523] Config(PART) Squad/Parts/Aero/wings/elevon3/elevon3
[LOG 09:48:26.524] Config(PART) Squad/Parts/Aero/wings/elevon4/smallCtrlSrf
[LOG 09:48:26.524] Config(PART) Squad/Parts/Aero/wings/elevon5/elevon5
[LOG 09:48:26.525] Config(PART) Squad/Parts/Aero/wings/strake/wingStrake
[LOG 09:48:26.525] Config(PART) Squad/Parts/Aero/wings/structural1/structuralWing
[LOG 09:48:26.525] Config(PART) Squad/Parts/Aero/wings/structural2/structuralWing2
[LOG 09:48:26.526] Config(PART) Squad/Parts/Aero/wings/structural3/structuralWing3
[LOG 09:48:26.526] Config(PART) Squad/Parts/Aero/wings/structural4/structuralWing4
[LOG 09:48:26.527] Config(PART) Squad/Parts/Aero/wings/swept1/sweptWing1
[LOG 09:48:26.527] Config(PART) Squad/Parts/Aero/wings/swept2/sweptWing2
[LOG 09:48:26.528] Config(PART) Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2
[LOG 09:48:26.528] Config(PART) Squad/Parts/Command/cupola/cupola/cupola
[LOG 09:48:26.529] Config(PART) Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd
[LOG 09:48:26.529] Config(PART) Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin
[LOG 09:48:26.530] Config(PART) Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule
[LOG 09:48:26.531] Config(PART) Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule
[LOG 09:48:26.531] Config(PART) Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod
[LOG 09:48:26.532] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit
[LOG 09:48:26.532] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin
[LOG 09:48:26.533] Config(PART) Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit
[LOG 09:48:26.533] Config(PART) Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall
[LOG 09:48:26.534] Config(PART) Squad/Parts/Command/mk1pod/mk1Pod/mk1pod
[LOG 09:48:26.534] Config(PART) Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline
[LOG 09:48:26.535] Config(PART) Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard
[LOG 09:48:26.535] Config(PART) Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore
[LOG 09:48:26.536] Config(PART) Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin
[LOG 09:48:26.536] Config(PART) Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle
[LOG 09:48:26.537] Config(PART) Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube
[LOG 09:48:26.537] Config(PART) Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex
[LOG 09:48:26.538] Config(PART) Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto
[LOG 09:48:26.538] Config(PART) Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2
[LOG 09:48:26.539] Config(PART) Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody
[LOG 09:48:26.539] Config(PART) Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge
[LOG 09:48:26.540] Config(PART) Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall
[LOG 09:48:26.540] Config(PART) Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere
[LOG 09:48:26.541] Config(PART) Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine
[LOG 09:48:26.541] Config(PART) Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector
[LOG 09:48:26.542] Config(PART) Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2
[LOG 09:48:26.543] Config(PART) Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4
[LOG 09:48:26.543] Config(PART) Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1
[LOG 09:48:26.544] Config(PART) Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3
[LOG 09:48:26.544] Config(PART) Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel
[LOG 09:48:26.545] Config(PART) Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5
[LOG 09:48:26.545] Config(PART) Squad/Parts/Electrical/RTG/RTG/rtg
[LOG 09:48:26.546] Config(PART) Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack
[LOG 09:48:26.546] Config(PART) Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank
[LOG 09:48:26.548] Config(PART) Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini
[LOG 09:48:26.548] Config(PART) Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack
[LOG 09:48:26.549] Config(PART) Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge
[LOG 09:48:26.549] Config(PART) Squad/Parts/Engine/ionEngine/ionEngine/ionEngine
[LOG 09:48:26.550] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet
[LOG 09:48:26.550] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine
[LOG 09:48:26.551] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2
[LOG 09:48:26.551] Config(PART) Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine
[LOG 09:48:26.552] Config(PART) Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine
[LOG 09:48:26.553] Config(PART) Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini
[LOG 09:48:26.553] Config(PART) Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike
[LOG 09:48:26.554] Config(PART) Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine
[LOG 09:48:26.554] Config(PART) Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini
[LOG 09:48:26.555] Config(PART) Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3
[LOG 09:48:26.555] Config(PART) Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine
[LOG 09:48:26.556] Config(PART) Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine
[LOG 09:48:26.556] Config(PART) Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2
[LOG 09:48:26.557] Config(PART) Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2
[LOG 09:48:26.557] Config(PART) Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2
[LOG 09:48:26.558] Config(PART) Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2
[LOG 09:48:26.559] Config(PART) Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper
[LOG 09:48:26.559] Config(PART) Squad/Parts/Engine/liquidEngineSSME/SSME/SSME
[LOG 09:48:26.560] Config(PART) Squad/Parts/Engine/MassiveSRB/part/MassiveBooster
[LOG 09:48:26.560] Config(PART) Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine
[LOG 09:48:26.561] Config(PART) Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine
[LOG 09:48:26.561] Config(PART) Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER
[LOG 09:48:26.562] Config(PART) Squad/Parts/Engine/Size2LFB/part/Size2LFB
[LOG 09:48:26.562] Config(PART) Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine
[LOG 09:48:26.563] Config(PART) Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster
[LOG 09:48:26.563] Config(PART) Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1
[LOG 09:48:26.564] Config(PART) Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster
[LOG 09:48:26.564] Config(PART) Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm
[LOG 09:48:26.565] Config(PART) Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1
[LOG 09:48:26.566] Config(PART) Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine
[LOG 09:48:26.566] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2
[LOG 09:48:26.567] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines
[LOG 09:48:26.567] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2
[LOG 09:48:26.568] Config(PART) Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant
[LOG 09:48:26.568] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2
[LOG 09:48:26.569] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1
[LOG 09:48:26.569] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant
[LOG 09:48:26.570] Config(PART) Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3
[LOG 09:48:26.570] Config(PART) Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2
[LOG 09:48:26.571] Config(PART) Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank
[LOG 09:48:26.571] Config(PART) Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat
[LOG 09:48:26.572] Config(PART) Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall
[LOG 09:48:26.572] Config(PART) Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank
[LOG 09:48:26.573] Config(PART) Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long
[LOG 09:48:26.574] Config(PART) Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank
[LOG 09:48:26.574] Config(PART) Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2
[LOG 09:48:26.575] Config(PART) Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2
[LOG 09:48:26.575] Config(PART) Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2
[LOG 09:48:26.576] Config(PART) Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage
[LOG 09:48:26.576] Config(PART) Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler
[LOG 09:48:26.577] Config(PART) Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong
[LOG 09:48:26.577] Config(PART) Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter
[LOG 09:48:26.578] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO
[LOG 09:48:26.578] Config(PART) Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage
[LOG 09:48:26.579] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO
[LOG 09:48:26.579] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid
[LOG 09:48:26.580] Config(PART) Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono
[LOG 09:48:26.580] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin
[LOG 09:48:26.581] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100
[LOG 09:48:26.581] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25
[LOG 09:48:26.582] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50
[LOG 09:48:26.582] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100
[LOG 09:48:26.583] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25
[LOG 09:48:26.583] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50
[LOG 09:48:26.584] Config(PART) Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO
[LOG 09:48:26.584] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2
[LOG 09:48:26.585] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini
[LOG 09:48:26.585] Config(PART) Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank
[LOG 09:48:26.586] Config(PART) Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank
[LOG 09:48:26.586] Config(PART) Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong
[LOG 09:48:26.587] Config(PART) Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank
[LOG 09:48:26.587] Config(PART) Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank
[LOG 09:48:26.588] Config(PART) Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank
[LOG 09:48:26.588] Config(PART) Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank
[LOG 09:48:26.589] Config(PART) Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge
[LOG 09:48:26.589] Config(PART) Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial
[LOG 09:48:26.590] Config(PART) Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore
[LOG 09:48:26.590] Config(PART) Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna
[LOG 09:48:26.591] Config(PART) Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel
[LOG 09:48:26.592] Config(PART) Squad/Parts/Misc/PotatoRoid/part/PotatoRoid
[LOG 09:48:26.592] Config(PART) Squad/Parts/Resources/FuelCell/FuelCell/FuelCell
[LOG 09:48:26.592] Config(PART) Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray
[LOG 09:48:26.593] Config(PART) Squad/Parts/Resources/ISRU/ISRU/ISRU
[LOG 09:48:26.593] Config(PART) Squad/Parts/Resources/LargeTank/LargeTank/LargeTank
[LOG 09:48:26.594] Config(PART) Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill
[LOG 09:48:26.594] Config(PART) Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU
[LOG 09:48:26.595] Config(PART) Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner
[LOG 09:48:26.595] Config(PART) Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill
[LOG 09:48:26.596] Config(PART) Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank
[LOG 09:48:26.596] Config(PART) Squad/Parts/Resources/SmallTank/SmallTank/SmallTank
[LOG 09:48:26.597] Config(PART) Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner
[LOG 09:48:26.598] Config(PART) Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner
[LOG 09:48:26.598] Config(PART) Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere
[LOG 09:48:26.599] Config(PART) Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment
[LOG 09:48:26.599] Config(PART) Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab
[LOG 09:48:26.600] Config(PART) Squad/Parts/Science/MaterialBay/materialBay/science_module
[LOG 09:48:26.600] Config(PART) Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer
[LOG 09:48:26.601] Config(PART) Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer
[LOG 09:48:26.601] Config(PART) Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter
[LOG 09:48:26.602] Config(PART) Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer
[LOG 09:48:26.602] Config(PART) Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi
[LOG 09:48:26.603] Config(PART) Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad
[LOG 09:48:26.603] Config(PART) Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri
[LOG 09:48:26.604] Config(PART) Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort
[LOG 09:48:26.605] Config(PART) Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall
[LOG 09:48:26.605] Config(PART) Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody
[LOG 09:48:26.606] Config(PART) Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody
[LOG 09:48:26.606] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage
[LOG 09:48:26.607] Config(PART) Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage
[LOG 09:48:26.607] Config(PART) Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural
[LOG 09:48:26.608] Config(PART) Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler
[LOG 09:48:26.608] Config(PART) Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter
[LOG 09:48:26.609] Config(PART) Squad/Parts/Structural/stationHub/stationHub/stationHub
[LOG 09:48:26.609] Config(PART) Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2
[LOG 09:48:26.610] Config(PART) Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3
[LOG 09:48:26.610] Config(PART) Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1
[LOG 09:48:26.611] Config(PART) Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode
[LOG 09:48:26.612] Config(PART) Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1
[LOG 09:48:26.612] Config(PART) Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2
[LOG 09:48:26.613] Config(PART) Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint
[LOG 09:48:26.613] Config(PART) Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon
[LOG 09:48:26.614] Config(PART) Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube
[LOG 09:48:26.614] Config(PART) Squad/Parts/Structural/strutOcto/strutOcto/strutOcto
[LOG 09:48:26.615] Config(PART) Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter
[LOG 09:48:26.615] Config(PART) Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x
[LOG 09:48:26.616] Config(PART) Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x
[LOG 09:48:26.616] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge
[LOG 09:48:26.617] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed
[LOG 09:48:26.617] Config(PART) Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall
[LOG 09:48:26.618] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge
[LOG 09:48:26.618] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg
[LOG 09:48:26.619] Config(PART) Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm
[LOG 09:48:26.619] Config(PART) Squad/Parts/Utility/commDish88-88/commDish88-88/commDish
[LOG 09:48:26.620] Config(PART) Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna
[LOG 09:48:26.621] Config(PART) Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna
[LOG 09:48:26.621] Config(PART) Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2
[LOG 09:48:26.622] Config(PART) Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler
[LOG 09:48:26.622] Config(PART) Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2
[LOG 09:48:26.623] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator
[LOG 09:48:26.623] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini
[LOG 09:48:26.624] Config(PART) Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig
[LOG 09:48:26.625] Config(PART) Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2
[LOG 09:48:26.625] Config(PART) Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler
[LOG 09:48:26.626] Config(PART) Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini
[LOG 09:48:26.626] Config(PART) Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2
[LOG 09:48:26.627] Config(PART) Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral
[LOG 09:48:26.627] Config(PART) Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3
[LOG 09:48:26.628] Config(PART) Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1
[LOG 09:48:26.628] Config(PART) Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge
[LOG 09:48:26.629] Config(PART) Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice
[LOG 09:48:26.629] Config(PART) Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1
[LOG 09:48:26.630] Config(PART) Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder
[LOG 09:48:26.630] Config(PART) Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay
[LOG 09:48:26.631] Config(PART) Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1
[LOG 09:48:26.631] Config(PART) Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2
[LOG 09:48:26.632] Config(PART) Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg
[LOG 09:48:26.632] Config(PART) Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter
[LOG 09:48:26.633] Config(PART) Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2
[LOG 09:48:26.634] Config(PART) Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1
[LOG 09:48:26.634] Config(PART) Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem
[LOG 09:48:26.635] Config(PART) Squad/Parts/Utility/linearRCS/linearRCS/linearRcs
[LOG 09:48:26.635] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL
[LOG 09:48:26.636] Config(PART) Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS
[LOG 09:48:26.636] Config(PART) Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin
[LOG 09:48:26.637] Config(PART) Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort
[LOG 09:48:26.637] Config(PART) Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL
[LOG 09:48:26.638] Config(PART) Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM
[LOG 09:48:26.638] Config(PART) Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp
[LOG 09:48:26.639] Config(PART) Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS
[LOG 09:48:26.639] Config(PART) Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle
[LOG 09:48:26.639] Config(PART) Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue
[LOG 09:48:26.640] Config(PART) Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge
[LOG 09:48:26.641] Config(PART) Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial
[LOG 09:48:26.641] Config(PART) Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue
[LOG 09:48:26.642] Config(PART) Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1
[LOG 09:48:26.642] Config(PART) Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock
[LOG 09:48:26.643] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125
[LOG 09:48:26.643] Config(PART) Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250
[LOG 09:48:26.644] Config(PART) Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1
[LOG 09:48:26.644] Config(PART) Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2
[LOG 09:48:26.645] Config(PART) Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler
[LOG 09:48:26.645] Config(PART) Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler
[LOG 09:48:26.646] Config(PART) Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler
[LOG 09:48:26.646] Config(PART) Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge
[LOG 09:48:26.647] Config(PART) Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed
[LOG 09:48:26.647] Config(PART) Squad/Parts/Wheel/LandingGear/GearFree/GearFree
[LOG 09:48:26.648] Config(PART) Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium
[LOG 09:48:26.648] Config(PART) Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall
[LOG 09:48:26.649] Config(PART) Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay
[LOG 09:48:26.649] Config(PART) Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1
[LOG 09:48:26.650] Config(PART) Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2
[LOG 09:48:26.650] Config(PART) Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed
[LOG 09:48:26.651] Config(PART) Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3
[LOG 09:48:26.651] Config(PROP) Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands
[LOG 09:48:26.652] Config(PROP) Squad/Props/AtmosphereDepth/prop/AtmosphereDepth
[LOG 09:48:26.652] Config(PROP) Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch
[LOG 09:48:26.653] Config(PROP) Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll
[LOG 09:48:26.653] Config(PROP) Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw
[LOG 09:48:26.654] Config(PROP) Squad/Props/ButtonSquare/prop/ButtonSquare
[LOG 09:48:26.654] Config(PROP) Squad/Props/circularButton/prop/circularButton
[LOG 09:48:26.655] Config(PROP) Squad/Props/Compass/prop/Compass
[LOG 09:48:26.655] Config(PROP) Squad/Props/directionalKnob/prop/directionalKnob
[LOG 09:48:26.656] Config(PROP) Squad/Props/directionalKnob2/prop/directionalKnob2
[LOG 09:48:26.656] Config(PROP) Squad/Props/IndicatorPanel/prop/IndicatorPanel
[LOG 09:48:26.657] Config(PROP) Squad/Props/IVANavBall/prop/NavBall
[LOG 09:48:26.657] Config(PROP) Squad/Props/ledPanelSpeed/prop/ledPanelSpeed
[LOG 09:48:26.658] Config(PROP) Squad/Props/Monitor/DockingMode/MonitorDockingMode
[LOG 09:48:26.658] Config(PROP) Squad/Props/NavBall/prop/NavBall
[LOG 09:48:26.658] Config(PROP) Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode
[LOG 09:48:26.659] Config(PROP) Squad/Props/PropsGeneric/CargoBagA/CargoBagA
[LOG 09:48:26.659] Config(PROP) Squad/Props/PropsGeneric/CargoBagB/CargoBagB
[LOG 09:48:26.660] Config(PROP) Squad/Props/PropsGeneric/CargoBagC/CargoBagC
[LOG 09:48:26.660] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane
[LOG 09:48:26.661] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90
[LOG 09:48:26.662] Config(PROP) Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame
[LOG 09:48:26.662] Config(PROP) Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger
[LOG 09:48:26.663] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot
[LOG 09:48:26.663] Config(PROP) Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet
[LOG 09:48:26.664] Config(PROP) Squad/Props/PropsGeneric/SideStick/SideStick
[LOG 09:48:26.664] Config(PROP) Squad/Props/pullSwitch/prop/pullSwitch
[LOG 09:48:26.664] Config(PROP) Squad/Props/radarAltitude/prop/RadarAltimeter
[LOG 09:48:26.665] Config(PROP) Squad/Props/squareButton/prop/squareButton
[LOG 09:48:26.665] Config(PROP) Squad/Props/standingSwitch/prop/standingSwitch
[LOG 09:48:26.666] Config(PROP) Squad/Props/switch/prop/switch
[LOG 09:48:26.666] Config(PROP) Squad/Props/switchGuard/prop/switchGuard
[LOG 09:48:26.667] Config(PROP) Squad/Props/switchWithGuards/prop/switchWithGuards
[LOG 09:48:26.667] Config(PROP) Squad/Props/throttle/prop/throttle
[LOG 09:48:26.668] Config(PROP) Squad/Props/VSI/prop/VSI
[LOG 09:48:26.668] Config(GLOBAL_RESOURCE) Squad/Resources/Ore/GLOBAL_RESOURCE
[LOG 09:48:26.669] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 09:48:26.669] Config(PLANETARY_RESOURCE) Squad/Resources/Ore/PLANETARY_RESOURCE
[LOG 09:48:26.670] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.670] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.671] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.671] Config(BIOME_RESOURCE) Squad/Resources/Ore/BIOME_RESOURCE
[LOG 09:48:26.672] Config(RESOURCE_OVERLAY_CONFIGURATION_SOLID) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_SOLID
[LOG 09:48:26.672] Config(RESOURCE_OVERLAY_CONFIGURATION_LINES) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_LINES
[LOG 09:48:26.673] Config(RESOURCE_OVERLAY_CONFIGURATION_DOTS) Squad/Resources/Overlay/RESOURCE_OVERLAY_CONFIGURATION_DOTS
[LOG 09:48:26.673] Config(RESOURCE_CONFIGURATION) Squad/Resources/ResourceDefaults/RESOURCE_CONFIGURATION
[LOG 09:48:26.674] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/LiquidFuel
[LOG 09:48:26.674] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Oxidizer
[LOG 09:48:26.675] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/SolidFuel
[LOG 09:48:26.675] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/MonoPropellant
[LOG 09:48:26.676] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/XenonGas
[LOG 09:48:26.676] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/ElectricCharge
[LOG 09:48:26.677] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/IntakeAir
[LOG 09:48:26.677] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/EVA Propellant
[LOG 09:48:26.678] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ore
[LOG 09:48:26.678] Config(RESOURCE_DEFINITION) Squad/Resources/ResourcesGeneric/Ablator
[LOG 09:48:26.679] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.679] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.680] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.680] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.681] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.682] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.682] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.683] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.683] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.684] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.684] Config(EXPERIMENT_DEFINITION) Squad/Resources/ScienceDefs/EXPERIMENT_DEFINITION
[LOG 09:48:26.685] Config(STORY_DEF) Squad/Resources/StoryDefs/STORY_DEF
[LOG 09:48:26.685] Config(TechTree) Squad/Resources/TechTree/TechTree
[LOG 09:48:26.686] Config(INTERNAL) Squad/Spaces/crewCabinInternals/internal/crewCabinInternals
[LOG 09:48:26.686] Config(INTERNAL) Squad/Spaces/cupolaInternal/internal/cupolaInternal
[LOG 09:48:26.687] Config(INTERNAL) Squad/Spaces/GenericSpace1/internal/GenericSpace1
[LOG 09:48:26.687] Config(INTERNAL) Squad/Spaces/GenericSpace3/internal/GenericSpace3
[LOG 09:48:26.688] Config(INTERNAL) Squad/Spaces/landerCabinInternals/internal/landerCabinInternals
[LOG 09:48:26.688] Config(INTERNAL) Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal
[LOG 09:48:26.689] Config(INTERNAL) Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int
[LOG 09:48:26.690] Config(INTERNAL) Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal
[LOG 09:48:26.690] Config(INTERNAL) Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal
[LOG 09:48:26.691] Config(INTERNAL) Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal
[LOG 09:48:26.691] Config(INTERNAL) Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit
[LOG 09:48:26.692] Config(INTERNAL) Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals
[LOG 09:48:26.692] Config(INTERNAL) Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int
[LOG 09:48:26.693] Config(INTERNAL) Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal
[LOG 09:48:26.693] Config(INTERNAL) Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int
[LOG 09:48:26.694] Config(INTERNAL) Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int
[LOG 09:48:26.694] Config(INTERNAL) Squad/Spaces/Placeholder/internal/Placeholder
[LOG 09:48:26.695] Config(INTERNAL) Squad/Spaces/PodCockpit/internal/PodCockpit
[LOG 09:48:26.695] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Finances
[LOG 09:48:26.696] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Science
[LOG 09:48:26.696] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Public Relations
[LOG 09:48:26.697] Config(STRATEGY_DEPARTMENT) Squad/Strategies/Departments/Operations
[LOG 09:48:26.697] Config(STRATEGY) Squad/Strategies/Strategies/AppreciationCampaignCfg
[LOG 09:48:26.698] Config(STRATEGY) Squad/Strategies/Strategies/FundraisingCampaignCfg
[LOG 09:48:26.699] Config(STRATEGY) Squad/Strategies/Strategies/OpenSourceTechProgramCfg
[LOG 09:48:26.699] Config(STRATEGY) Squad/Strategies/Strategies/UnpaidResearchProgramCfg
[LOG 09:48:26.700] Config(STRATEGY) Squad/Strategies/Strategies/OutsourcedResearchCfg
[LOG 09:48:26.700] Config(STRATEGY) Squad/Strategies/Strategies/PatentsLicensingCfg
[LOG 09:48:26.701] Config(STRATEGY) Squad/Strategies/Strategies/AgressiveNegotiations
[LOG 09:48:26.701] Config(STRATEGY) Squad/Strategies/Strategies/RecoveryTransponders
[LOG 09:48:26.702] Config(STRATEGY) Squad/Strategies/Strategies/BailoutGrant
[LOG 09:48:26.702] Config(STRATEGY) Squad/Strategies/Strategies/researchIPsellout
[LOG 09:48:26.702] Config(STRATEGY) Squad/Strategies/Strategies/LeadershipInitiative
[LOG 09:48:26.703] Config(TUTORIAL) Squad/Tutorials/FlightSuborbital/FlightSuborbital
[LOG 09:48:26.703] Config(TUTORIAL) Squad/Tutorials/FromMun/FromMun
[LOG 09:48:26.704] Config(TUTORIAL) Squad/Tutorials/GoForOrbit/GoForOrbit
[LOG 09:48:26.706] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.707] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.707] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.708] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.708] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.709] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.709] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.709] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.710] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.711] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.711] Resource RESOURCE_DEFINITION added to database
[LOG 09:48:26.713] GameDatabase: Assets loaded in 41.269s
[LOG 09:48:26.713] CodeAssetLoader: Compiling all code assets
[LOG 09:48:26.720] PartLoader: Loading part database
[LOG 09:48:26.720] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONrcsBlock45/IONRCSBlock45'
[LOG 09:48:26.735] EffectList: Created 11 effect types
[LOG 09:48:26.766] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCS4Way45IonRCS/IONrcsBlock45/IONRCSBlock45' has no database record. Creating.
[LOG 09:48:26.782] DragCubeSystem: Creating drag cubes for part 'IONRCSBlock45'
[LOG 09:48:26.814] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONrcsBlock/IONRCSBlock'
[LOG 09:48:26.824] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCS4WayIonRCS/IONrcsBlock/IONRCSBlock' has no database record. Creating.
[LOG 09:48:26.829] DragCubeSystem: Creating drag cubes for part 'IONRCSBlock'
[LOG 09:48:26.852] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/part/LinearIonRCS'
[LOG 09:48:26.863] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearIonRCS/part/LinearIonRCS' has no database record. Creating.
[LOG 09:48:26.868] DragCubeSystem: Creating drag cubes for part 'LinearIonRCS'
[LOG 09:48:26.898] PartLoader: Compiling Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/part/LinearPPTRCS'
[LOG 09:48:26.912] PartLoader: Part 'REPOSoftTech/IONRCS/Parts/IONRCSLinearPPTRCS/part/LinearPPTRCS' has no database record. Creating.
[LOG 09:48:26.916] DragCubeSystem: Creating drag cubes for part 'LinearPPTRCS'
[LOG 09:48:26.944] PartLoader: Compiling Part 'Squad/Parts/Aero/aerodynamicNoseCone/aerodynamicNoseCone/noseCone'
[LOG 09:48:26.953] PartLoader: Compiling Part 'Squad/Parts/Aero/airbrake/Airbrake/airbrake1'
[LOG 09:48:26.969] PartLoader: Compiling Part 'Squad/Parts/Aero/airIntakeRadialXM-G50/airIntakeRadialXM-G50/airScoop'
[LOG 09:48:26.981] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/ControlSurface/airlinerCtrlSrf'
[LOG 09:48:26.994] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/MainWing/airlinerMainWing'
[LOG 09:48:27.006] PartLoader: Compiling Part 'Squad/Parts/Aero/airlinerWings/TailFin/airlinerTailFin'
[LOG 09:48:27.020] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/advancedCanard/AdvancedCanard'
[LOG 09:48:27.032] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/standardCanard/CanardController'
[LOG 09:48:27.044] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/sweptWing/sweptWing'
[LOG 09:48:27.056] PartLoader: Compiling Part 'Squad/Parts/Aero/airplaneFins/tailfin/tailfin'
[LOG 09:48:27.068] PartLoader: Compiling Part 'Squad/Parts/Aero/basicFin/basicFin/basicFin'
[LOG 09:48:27.079] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/circularIntake/CircularIntake'
[LOG 09:48:27.092] PartLoader: Compiling Part 'Squad/Parts/Aero/circularIntake/intakeShockCone/shockConeIntake'
[LOG 09:48:27.103] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/avionicsNoseCone/avionicsNoseCone'
[LOG 09:48:27.132] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeA/pointyNoseConeA'
[LOG 09:48:27.145] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/ConeB/pointyNoseConeB'
[LOG 09:48:27.157] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/noseConeAdapter/noseConeAdapter'
[LOG 09:48:27.168] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/smallNoseCone/standardNoseCone'
[LOG 09:48:27.178] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorA/airplaneTail'
[LOG 09:48:27.189] PartLoader: Compiling Part 'Squad/Parts/Aero/cones/tailConnectorB/airplaneTailB'
[LOG 09:48:27.200] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize1/fairingSize1'
[LOG 09:48:27.227] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize2/fairingSize2'
[LOG 09:48:27.245] PartLoader: Compiling Part 'Squad/Parts/Aero/fairings/fairingSize3/fairingSize3'
[LOG 09:48:27.262] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield1/HeatShield1'
[LOG 09:48:27.281] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield2/HeatShield2'
[LOG 09:48:27.299] PartLoader: Compiling Part 'Squad/Parts/Aero/HeatShield/HeatShield3/HeatShield3'
[LOG 09:48:27.316] PartLoader: Compiling Part 'Squad/Parts/Aero/InflatableHeatShield/HeatShield/InflatableHeatShield'
[LOG 09:48:27.336] PartLoader: Compiling Part 'Squad/Parts/Aero/intakeRadialLong/intakeRadialLong/IntakeRadialLong'
[LOG 09:48:27.348] PartLoader: Compiling Part 'Squad/Parts/Aero/miniIntake/SmallIntake/miniIntake'
[LOG 09:48:27.360] PartLoader: Compiling Part 'Squad/Parts/Aero/protectiveRocketNoseMk7/protectiveRocketNoseMk7/rocketNoseCone'
[LOG 09:48:27.368] PartLoader: Compiling Part 'Squad/Parts/Aero/ramAirIntake/ramAirIntake/ramAirIntake'
[LOG 09:48:27.380] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/delta/wingShuttleDelta'
[LOG 09:48:27.390] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon1/wingShuttleElevon1'
[LOG 09:48:27.402] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/elevon2/wingShuttleElevon2'
[LOG 09:48:27.414] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/rudder/wingShuttleRudder'
[LOG 09:48:27.426] PartLoader: Compiling Part 'Squad/Parts/Aero/shuttleWings/strake/wingShuttleStrake'
[LOG 09:48:27.438] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-R8/wingletAV-R8/R8winglet'
[LOG 09:48:27.450] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletAV-T1/wingletAV-T1/winglet'
[LOG 09:48:27.461] PartLoader: Compiling Part 'Squad/Parts/Aero/wingletDeltaDeluxe/wingletDeltaDeluxe/winglet3'
[LOG 09:48:27.473] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector1/wingConnector'
[LOG 09:48:27.484] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector2/wingConnector2'
[LOG 09:48:27.494] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector3/wingConnector3'
[LOG 09:48:27.505] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector4/wingConnector4'
[LOG 09:48:27.528] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/connector5/wingConnector5'
[LOG 09:48:27.540] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta/deltaWing'
[LOG 09:48:27.551] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/delta_small/delta_small'
[LOG 09:48:27.562] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon1/StandardCtrlSrf'
[LOG 09:48:27.574] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon2/elevon2'
[LOG 09:48:27.587] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon3/elevon3'
[LOG 09:48:27.599] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon4/smallCtrlSrf'
[LOG 09:48:27.611] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/elevon5/elevon5'
[LOG 09:48:27.623] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/strake/wingStrake'
[LOG 09:48:27.634] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural1/structuralWing'
[LOG 09:48:27.645] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural2/structuralWing2'
[LOG 09:48:27.656] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural3/structuralWing3'
[LOG 09:48:27.667] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/structural4/structuralWing4'
[LOG 09:48:27.678] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept1/sweptWing1'
[LOG 09:48:27.689] PartLoader: Compiling Part 'Squad/Parts/Aero/wings/swept2/sweptWing2'
[LOG 09:48:27.700] PartLoader: Compiling Part 'Squad/Parts/Command/advancedSasModuleLarge/advSasModuleLarge/asasmodule1-2'
[LOG 09:48:27.712] PartLoader: Compiling Part 'Squad/Parts/Command/cupola/cupola/cupola'
[LOG 09:48:27.736] PartLoader: Compiling Part 'Squad/Parts/Command/externalCommandSeat/externalCommandSeat/seatExternalCmd'
[LOG 09:48:27.750] PartLoader: Compiling Part 'Squad/Parts/Command/hitchhikerStorageContainer/hitchikerStorageContainer/crewCabin'
[LOG 09:48:27.767] PartLoader: Compiling Part 'Squad/Parts/Command/inlineAdvancedStabilizer/inlineAdvancedStabilizer/advSasModule'
[LOG 09:48:27.777] PartLoader: Compiling Part 'Squad/Parts/Command/inlineReactionWheel/inlineReactionWheel/sasModule'
[LOG 09:48:27.788] PartLoader: Compiling Part 'Squad/Parts/Command/Mk1-2Pod/mk1-2CommandPod/Mark1-2Pod'
[LOG 09:48:27.811] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1Cockpit/Mark1Cockpit'
[LOG 09:48:27.834] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1CrewCabin/MK1CrewCabin'
[LOG 09:48:27.852] PartLoader: Compiling Part 'Squad/Parts/Command/mk1Cockpits/mk1InlineCockpit/Mark2Cockpit'
[LOG 09:48:27.875] PartLoader: Compiling Part 'Squad/Parts/Command/mk1LanderCan/mk1LanderCan/landerCabinSmall'
[LOG 09:48:27.908] PartLoader: Compiling Part 'Squad/Parts/Command/mk1pod/mk1Pod/mk1pod'
[LOG 09:48:27.931] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitInline/mk2CockpitInline/mk2Cockpit_Inline'
[LOG 09:48:27.957] PartLoader: Compiling Part 'Squad/Parts/Command/mk2CockpitStandard/mk2CockpitStandard/mk2Cockpit_Standard'
[LOG 09:48:27.982] PartLoader: Compiling Part 'Squad/Parts/Command/mk2DroneCore/mk2Dronecore/mk2DroneCore'
[LOG 09:48:27.998] PartLoader: Compiling Part 'Squad/Parts/Command/mk2LanderCan/mk2LanderCan/mk2LanderCabin'
[LOG 09:48:28.018] PartLoader: Compiling Part 'Squad/Parts/Command/mk3CockpitShuttle/mk3CockpitShuttle/mk3Cockpit_Shuttle'
[LOG 09:48:28.042] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreCube/probeCoreCube/probeCoreCube'
[LOG 09:48:28.056] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreHex/probeCoreHex/probeCoreHex'
[LOG 09:48:28.072] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto/probeCoreOcto/probeCoreOcto'
[LOG 09:48:28.087] PartLoader: Compiling Part 'Squad/Parts/Command/probeCoreOcto2/probeCoreOcto2/probeCoreOcto2'
[LOG 09:48:28.101] PartLoader: Compiling Part 'Squad/Parts/Command/probeRoverBody/probeRoverBody/roverBody'
[LOG 09:48:28.115] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackLarge/probeStackLarge/probeStackLarge'
[LOG 09:48:28.130] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSmall/probeStackSmall/probeStackSmall'
[LOG 09:48:28.145] PartLoader: Compiling Part 'Squad/Parts/Command/probeStackSphere/probeStackSphere/probeCoreSphere'
[LOG 09:48:28.157] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/fuelLine/fuelLine/fuelLine'
[LOG 09:48:28.175] PartLoader: Compiling Part 'Squad/Parts/CompoundParts/strutConnector/strutConnector/strutConnector'
[LOG 09:48:28.188] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6ShroudSolarPanels/1x6ShroudSolarPanels/solarPanels2'
[LOG 09:48:28.203] PartLoader: Compiling Part 'Squad/Parts/Electrical/1x6SolarPanels/1x6SolarPanels/solarPanels4'
[LOG 09:48:28.217] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2ShroudSolarPanels/3x2ShroudSolarPanels/solarPanels1'
[LOG 09:48:28.230] PartLoader: Compiling Part 'Squad/Parts/Electrical/3x2SolarPanels/3x2SolarPanels/solarPanels3'
[LOG 09:48:28.244] PartLoader: Compiling Part 'Squad/Parts/Electrical/gigantorXlSolarArray/gigantorXlSolarArray/largeSolarPanel'
[LOG 09:48:28.258] PartLoader: Compiling Part 'Squad/Parts/Electrical/radialFlatSolarPanel/radialFlatSolarPanel/solarPanels5'
[LOG 09:48:28.271] PartLoader: Compiling Part 'Squad/Parts/Electrical/RTG/RTG/rtg'
[LOG 09:48:28.303] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-100Battery/z-100Battery/batteryPack'
[LOG 09:48:28.312] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-1kBattery/z-1kBattery/batteryBank'
[LOG 09:48:28.321] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-200Battery/z-200Battery/batteryBankMini'
[LOG 09:48:28.330] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-400Battery/z-400Battery/ksp_r_largeBatteryPack'
[LOG 09:48:28.339] PartLoader: Compiling Part 'Squad/Parts/Electrical/z-4kBattery/z-4kBattery/batteryBankLarge'
[LOG 09:48:28.348] PartLoader: Compiling Part 'Squad/Parts/Engine/ionEngine/ionEngine/ionEngine'
[LOG 09:48:28.375] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineAfterburning/turboJet'
[LOG 09:48:28.426] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBasic/JetEngine'
[LOG 09:48:28.454] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineBig/turboFanSize2'
[LOG 09:48:28.489] PartLoader: Compiling Part 'Squad/Parts/Engine/jetEngines/jetEngineTurbo/turboFanEngine'
[LOG 09:48:28.520] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine24-77/liquidEngine24-77/smallRadialEngine'
[LOG 09:48:28.541] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngine48-7S/liquidEngine48-7S/liquidEngineMini'
[LOG 09:48:28.564] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineAerospike/liquidEngineAerospike/toroidalAerospike'
[LOG 09:48:28.590] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1/liquidEngineLV-1/microEngine'
[LOG 09:48:28.608] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-1R/liquidEngineLV-1R/radialEngineMini'
[LOG 09:48:28.627] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-909/liquidEngineLV-909/liquidEngine3'
[LOG 09:48:28.652] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-N/liquidEngineLV-N/nuclearEngine'
[LOG 09:48:28.679] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T30/liquidEngineLV-T30/liquidEngine'
[LOG 09:48:28.720] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineLV-T45/liquidEngineLV-T45/liquidEngine2'
[LOG 09:48:28.748] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMainsail/liquidEngineMainsail/liquidEngine1-2'
[LOG 09:48:28.776] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineMk55/liquidEngineMk55/radialLiquidEngine1-2'
[LOG 09:48:28.800] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEnginePoodle/liquidEnginePoodle/liquidEngine2-2'
[LOG 09:48:28.827] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSkipper/skipperLiquidEngine/engineLargeSkipper'
[LOG 09:48:28.855] PartLoader: Compiling Part 'Squad/Parts/Engine/liquidEngineSSME/SSME/SSME'
[LOG 09:48:28.884] PartLoader: Compiling Part 'Squad/Parts/Engine/MassiveSRB/part/MassiveBooster'
[LOG 09:48:28.907] PartLoader: Compiling Part 'Squad/Parts/Engine/miniJet/SmallJetEngine/miniJetEngine'
[LOG 09:48:28.930] PartLoader: Compiling Part 'Squad/Parts/Engine/OMSEngine/omsEngine/omsEngine'
[LOG 09:48:28.945] PartLoader: Compiling Part 'Squad/Parts/Engine/rapierEngine/rapierEngine/RAPIER'
[LOG 09:48:28.980] PartLoader: Compiling Part 'Squad/Parts/Engine/Size2LFB/part/Size2LFB'
[LOG 09:48:29.007] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3AdvancedEngine/part/Size3AdvancedEngine'
[LOG 09:48:29.038] PartLoader: Compiling Part 'Squad/Parts/Engine/Size3EngineCluster/part/Size3EngineCluster'
[LOG 09:48:29.066] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterBACC/solidBoosterBACC/solidBooster1-1'
[LOG 09:48:29.087] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-10/solidBoosterRT-10/solidBooster'
[LOG 09:48:29.127] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterRT-5/solidBoosterRT-5/solidBooster_sm'
[LOG 09:48:29.146] PartLoader: Compiling Part 'Squad/Parts/Engine/solidBoosterSep/solidBoosterSep/sepMotor1'
[LOG 09:48:29.164] PartLoader: Compiling Part 'Squad/Parts/Engine/vernorEngine/vernorEngine/vernierEngine'
[LOG 09:48:29.178] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Mk2/adapterMk3-Mk2'
[LOG 09:48:29.187] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-ShuttleAdapter/adapterEngines'
[LOG 09:48:29.197] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2/adapterMk3-Size2'
[LOG 09:48:29.206] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Mk3-Size2Slant/adapterMk3-Size2Slant'
[LOG 09:48:29.216] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Mk2/adapterSize2-Mk2'
[LOG 09:48:29.225] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1/adapterSize2-Size1'
[LOG 09:48:29.235] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size2-Size1Slant/adapterSize2-Size1Slant'
[LOG 09:48:29.244] PartLoader: Compiling Part 'Squad/Parts/FuelTank/adapterTanks/Size3-Mk3/adapterSize3-Mk3'
[LOG 09:48:29.254] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankJumbo-64/fuelTankJumbo-64/fuelTank3-2'
[LOG 09:48:29.265] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankOscarB/fuelTankOscarB/miniFuelTank'
[LOG 09:48:29.274] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT100/fuelTankT100/fuelTankSmallFlat'
[LOG 09:48:29.283] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT200/fuelTankT200/fuelTankSmall'
[LOG 09:48:29.293] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT400/fuelTankT400/fuelTank'
[LOG 09:48:29.302] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankT800/fuelTankT800/fuelTank_long'
[LOG 09:48:29.312] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankToroidal/fuelTankToroidal/toroidalFuelTank'
[LOG 09:48:29.321] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-16/fuelTankX200-16/fuelTank2-2'
[LOG 09:48:29.329] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-32/fuelTankX200-32/fuelTank1-2'
[LOG 09:48:29.338] PartLoader: Compiling Part 'Squad/Parts/FuelTank/fuelTankX200-8/fuelTankX200-8/fuelTank4-2'
[LOG 09:48:29.348] PartLoader: Compiling Part 'Squad/Parts/FuelTank/miniFuselage/miniFuselage/miniFuselage'
[LOG 09:48:29.357] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/bicoupler/mk2_1m_Bicoupler'
[LOG 09:48:29.369] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/long/mk2_1m_AdapterLong'
[LOG 09:48:29.380] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2Adapters/standard/mk2SpacePlaneAdapter'
[LOG 09:48:29.392] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/LFO_long/mk2FuselageLongLFO'
[LOG 09:48:29.403] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageLong/L_long/mk2Fuselage'
[LOG 09:48:29.414] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/LFO_short/mk2FuselageShortLFO'
[LOG 09:48:29.426] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/L_short/mk2FuselageShortLiquid'
[LOG 09:48:29.437] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk2FuselageShort/Mono_short/mk2FuselageShortMono'
[LOG 09:48:29.449] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/CREW/mk3CrewCabin'
[LOG 09:48:29.468] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_100/mk3FuselageLFO_100'
[LOG 09:48:29.477] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_25/mk3FuselageLFO_25'
[LOG 09:48:29.487] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LFO_50/mk3FuselageLFO_50'
[LOG 09:48:29.497] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_100/mk3FuselageLF_100'
[LOG 09:48:29.523] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_25/mk3FuselageLF_25'
[LOG 09:48:29.533] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/LF_50/mk3FuselageLF_50'
[LOG 09:48:29.543] PartLoader: Compiling Part 'Squad/Parts/FuelTank/mk3Fuselage/MONO/mk3FuselageMONO'
[LOG 09:48:29.553] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR1/RCSFuelTankR1/RCSTank1-2'
[LOG 09:48:29.562] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR10/RCSFuelTankR10/rcsTankMini'
[LOG 09:48:29.572] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSFuelTankR25/RCSFuelTankR25/RCSFuelTank'
[LOG 09:48:29.581] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCSTankRadial/radialRCSTank/radialRCSTank'
[LOG 09:48:29.590] PartLoader: Compiling Part 'Squad/Parts/FuelTank/RCStankRadialLong/RCSTankRadialLong/rcsTankRadialLong'
[LOG 09:48:29.599] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/large/Size3LargeTank'
[LOG 09:48:29.609] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/medium/Size3MediumTank'
[LOG 09:48:29.618] PartLoader: Compiling Part 'Squad/Parts/FuelTank/Size3Tanks/small/Size3SmallTank'
[LOG 09:48:29.628] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTank/xenonTank/xenonTank'
[LOG 09:48:29.637] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankLarge/xenonTankLarge/xenonTankLarge'
[LOG 09:48:29.646] PartLoader: Compiling Part 'Squad/Parts/FuelTank/xenonTankRadial/xenonTankRadial/xenonTankRadial'
[LOG 09:48:29.655] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HECS2/HECS2_ProbeCore'
[LOG 09:48:29.672] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/HighGainAntenna/HighGainAntenna'
[LOG 09:48:29.688] PartLoader: Compiling Part 'Squad/Parts/Misc/AsteroidDay/LgRadialSolar/LgRadialSolarPanel'
[LOG 09:48:29.701] PartLoader: Compiling Part 'Squad/Parts/Misc/PotatoRoid/part/PotatoRoid'
[ERR 09:48:29.707] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.707] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:29.713] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.713] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:29.728] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.729] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[ERR 09:48:29.738] ConvexHullBuilder: convex hull has more than 255 polygons!

[ERR 09:48:29.739] Gu::ConvexMesh::loadConvexHull: convex hull init failed! Try to use the PxConvexFlag::eINFLATE_CONVEX flag. (see PxToolkit::createConvexMeshSafe)

[LOG 09:48:29.740] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCell/FuelCell'
[LOG 09:48:29.758] PartLoader: Compiling Part 'Squad/Parts/Resources/FuelCell/FuelCellArray/FuelCellArray'
[LOG 09:48:29.774] PartLoader: Compiling Part 'Squad/Parts/Resources/ISRU/ISRU/ISRU'
[LOG 09:48:29.813] PartLoader: Compiling Part 'Squad/Parts/Resources/LargeTank/LargeTank/LargeTank'
[LOG 09:48:29.824] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniDrill/MiniDrill/MiniDrill'
[LOG 09:48:29.856] PartLoader: Compiling Part 'Squad/Parts/Resources/MiniISRU/MiniISRU/MiniISRU'
[LOG 09:48:29.889] PartLoader: Compiling Part 'Squad/Parts/Resources/OrbitalScanner/OrbitalScanner/OrbitalScanner'
[LOG 09:48:29.909] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialDrill/RadialDrill/RadialDrill'
[LOG 09:48:29.938] PartLoader: Compiling Part 'Squad/Parts/Resources/RadialTank/RadialTank/RadialOreTank'
[LOG 09:48:29.949] PartLoader: Compiling Part 'Squad/Parts/Resources/SmallTank/SmallTank/SmallTank'
[LOG 09:48:29.959] PartLoader: Compiling Part 'Squad/Parts/Resources/SurfaceScanner/SurfaceScanner/SurfaceScanner'
[LOG 09:48:29.995] PartLoader: Compiling Part 'Squad/Parts/Resources/SurveyScanner/SurveyScanner/SurveyScanner'
[LOG 09:48:30.015] PartLoader: Compiling Part 'Squad/Parts/Science/AtmosphereSensor/sensorAtmosphere/sensorAtmosphere'
[LOG 09:48:30.028] PartLoader: Compiling Part 'Squad/Parts/Science/GooExperiment/gooExperiment/GooExperiment'
[LOG 09:48:30.043] PartLoader: Compiling Part 'Squad/Parts/Science/LargeCrewedLab/largeCrewedLab/Large_Crewed_Lab'
[LOG 09:48:30.068] PartLoader: Compiling Part 'Squad/Parts/Science/MaterialBay/materialBay/science_module'
[LOG 09:48:30.084] PartLoader: Compiling Part 'Squad/Parts/Science/sensorAccelerometer/sensorAccelerometer/sensorAccelerometer'
[LOG 09:48:30.099] PartLoader: Compiling Part 'Squad/Parts/Science/sensorBarometer/sensorBarometer/sensorBarometer'
[LOG 09:48:30.113] PartLoader: Compiling Part 'Squad/Parts/Science/sensorGravimeter/sensorGravimeter/sensorGravimeter'
[LOG 09:48:30.127] PartLoader: Compiling Part 'Squad/Parts/Science/sensorThermometer/sensorThermometer/sensorThermometer'
[LOG 09:48:30.142] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallBi/adapterLargeSmallBi/adapterLargeSmallBi'
[LOG 09:48:30.151] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallQuad/adapterLargeSmallQuad/adapterLargeSmallQuad'
[LOG 09:48:30.161] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterLargeSmallTri/adapterLargeSmallTri/adapterLargeSmallTri'
[LOG 09:48:30.170] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniShort/adapterSmallMiniShort/adapterSmallMiniShort'
[LOG 09:48:30.179] PartLoader: Compiling Part 'Squad/Parts/Structural/adapterSmallMiniTall/adapterSmallMiniTall/adapterSmallMiniTall'
[LOG 09:48:30.188] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineBodyRadial/radialEngineBody'
[LOG 09:48:30.202] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/engineNacelle/nacelleBody'
[LOG 09:48:30.215] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Fuselage/MK1Fuselage'
[LOG 09:48:30.225] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1FuselageIntake/MK1IntakeFuselage'
[LOG 09:48:30.239] PartLoader: Compiling Part 'Squad/Parts/Structural/mk1Parts/mk1Structural/Mk1FuselageStructural'
[LOG 09:48:30.247] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3Decoupler/part/size3Decoupler'
[LOG 09:48:30.262] PartLoader: Compiling Part 'Squad/Parts/Structural/Size3To2Adapter/part/Size3to2Adapter'
[LOG 09:48:30.271] PartLoader: Compiling Part 'Squad/Parts/Structural/stationHub/stationHub/stationHub'
[LOG 09:48:30.279] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200/structuralIBeam200/structuralIBeam2'
[LOG 09:48:30.288] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam200Pocket/structuralIBeam200Pocket/structuralIBeam3'
[LOG 09:48:30.297] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralIBeam650/structuralIBeam650/structuralIBeam1'
[LOG 09:48:30.307] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralMicronode/structuralMicronode/structuralMiniNode'
[LOG 09:48:30.316] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel1x1/structuralPanel1x1/structuralPanel1'
[LOG 09:48:30.325] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPanel2x2/structuralPanel2x2/structuralPanel2'
[LOG 09:48:30.334] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/smallHardpoint/smallHardpoint'
[LOG 09:48:30.349] PartLoader: Compiling Part 'Squad/Parts/Structural/structuralPylons/structuralPylon/structuralPylon'
[LOG 09:48:30.365] PartLoader: Compiling Part 'Squad/Parts/Structural/strutCubicOcto/strutCubicOcto/strutCube'
[LOG 09:48:30.374] PartLoader: Compiling Part 'Squad/Parts/Structural/strutOcto/strutOcto/strutOcto'
[LOG 09:48:30.408] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderAdapter/trussGirderAdapter/trussAdapter'
[LOG 09:48:30.418] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderL/trussGirderL/trussPiece1x'
[LOG 09:48:30.428] PartLoader: Compiling Part 'Squad/Parts/Structural/trussGirderXL/trussGirderXL/trussPiece3x'
[LOG 09:48:30.437] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadLarge/foldingRadLarge'
[LOG 09:48:30.456] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadMed/foldingRadMed'
[LOG 09:48:30.469] PartLoader: Compiling Part 'Squad/Parts/Thermal/FoldingRadiators/foldingRadSmall/foldingRadSmall'
[LOG 09:48:30.482] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelEdge/radPanelEdge'
[LOG 09:48:30.493] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelLg/radPanelLg'
[LOG 09:48:30.505] PartLoader: Compiling Part 'Squad/Parts/Thermal/RadiatorPanels/radPanelSm/radPanelSm'
[LOG 09:48:30.517] PartLoader: Compiling Part 'Squad/Parts/Utility/commDish88-88/commDish88-88/commDish'
[LOG 09:48:30.533] PartLoader: Compiling Part 'Squad/Parts/Utility/commsAntennaDTS-M1/commsAntennaDTS-M1/mediumDishAntenna'
[LOG 09:48:30.551] PartLoader: Compiling Part 'Squad/Parts/Utility/commsDish16/commsAntenna16/longAntenna'
[LOG 09:48:30.566] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialHDM/decouplerRadialHDM/radialDecoupler1-2'
[LOG 09:48:30.583] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-38K/decouplerRadialTT-38K/radialDecoupler'
[LOG 09:48:30.598] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerRadialTT-70/decouplerRadialTT-70/radialDecoupler2'
[LOG 09:48:30.613] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-18D/decouplerSeparatorTR-18D/stackSeparator'
[LOG 09:48:30.628] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-2C/decouplerSeparatorTR-2C/stackSeparatorMini'
[LOG 09:48:30.641] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerSeparatorTR-XL/decouplerSeparatorTR-XL/stackSeparatorBig'
[LOG 09:48:30.654] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStack2m/decouplerStack2m/decoupler1-2'
[LOG 09:48:30.667] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-18A/decouplerStackTR-18A/stackDecoupler'
[LOG 09:48:30.680] PartLoader: Compiling Part 'Squad/Parts/Utility/decouplerStackTR-2V/decouplerStackTR-2V/stackDecouplerMini'
[LOG 09:48:30.693] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPort/dockingPort/dockingPort2'
[LOG 09:48:30.706] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortInline/dockingPortInline/dockingPortLateral'
[LOG 09:48:30.723] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortJr/dockingPortJr/dockingPort3'
[LOG 09:48:30.736] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortShielded/dockingPortShielded/dockingPort1'
[LOG 09:48:30.753] PartLoader: Compiling Part 'Squad/Parts/Utility/dockingPortSr/dockingPortSr/dockingPortLarge'
[LOG 09:48:30.767] PartLoader: Compiling Part 'Squad/Parts/Utility/GrapplingDevice/part/GrapplingDevice'
[LOG 09:48:30.810] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderRadial/ladderRadial/ladder1'
[LOG 09:48:30.819] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopic/ladderTelescopic/telescopicLadder'
[LOG 09:48:30.832] PartLoader: Compiling Part 'Squad/Parts/Utility/ladderTelescopicBay/ladderTelescopicBay/telescopicLadderBay'
[LOG 09:48:30.845] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-1/landingLegLT-1/landingLeg1'
[LOG 09:48:30.874] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-2/landingLegLT-2/landingLeg1-2'
[LOG 09:48:30.898] PartLoader: Compiling Part 'Squad/Parts/Utility/landingLegLT-5/landingLegLT-5/miniLandingLeg'
[LOG 09:48:30.921] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapter/largeAdapter/largeAdapter'
[LOG 09:48:30.931] PartLoader: Compiling Part 'Squad/Parts/Utility/largeAdapterShort/largeAdapterShort/largeAdapter2'
[LOG 09:48:30.940] PartLoader: Compiling Part 'Squad/Parts/Utility/launchClamp1/launchClamp1/launchClamp1'
[LOG 09:48:30.958] PartLoader: Compiling Part 'Squad/Parts/Utility/launchEscapeSystem/part/LaunchEscapeSystem'
[LOG 09:48:30.978] PartLoader: Compiling Part 'Squad/Parts/Utility/linearRCS/linearRCS/linearRcs'
[LOG 09:48:30.991] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayL/mk2CargoBayL'
[LOG 09:48:31.008] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CargoBay/BayS/mk2CargoBayS'
[LOG 09:48:31.022] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2CrewCabin/mk2CrewCabin/mk2CrewCabin'
[LOG 09:48:31.042] PartLoader: Compiling Part 'Squad/Parts/Utility/mk2DockingPort/mk2DockingPort/mk2DockingPort'
[LOG 09:48:31.061] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/long/mk3CargoBayL'
[LOG 09:48:31.074] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/medium/mk3CargoBayM'
[LOG 09:48:31.087] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/ramp/mk3CargoRamp'
[LOG 09:48:31.100] PartLoader: Compiling Part 'Squad/Parts/Utility/mk3CargoBay/short/mk3CargoBayS'
[LOG 09:48:31.113] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk1/parachuteMk1/parachuteSingle'
[LOG 09:48:31.132] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk12-R/parachuteMk12-R/radialDrogue'
[LOG 09:48:31.149] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk16-XL/parachuteMk16-XL/parachuteLarge'
[LOG 09:48:31.167] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk2-R/parachuteMk2-R/parachuteRadial'
[LOG 09:48:31.206] PartLoader: Compiling Part 'Squad/Parts/Utility/parachuteMk25/parachuteMk25/parachuteDrogue'
[LOG 09:48:31.225] PartLoader: Compiling Part 'Squad/Parts/Utility/radialAttachmentPoint/radialAttachmentPoint/stackPoint1'
[LOG 09:48:31.235] PartLoader: Compiling Part 'Squad/Parts/Utility/rcsBlockRV-105/rcsBlockRV-105/RCSBlock'
[LOG 09:48:31.249] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_125/ServiceBay_125'
[LOG 09:48:31.271] PartLoader: Compiling Part 'Squad/Parts/Utility/ServiceBay/ServiceBay_250/ServiceBay_250'
[LOG 09:48:31.292] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk1/spotLightMk1/spotLight1'
[LOG 09:48:31.305] PartLoader: Compiling Part 'Squad/Parts/Utility/spotLightMk2/spotLightMk2/spotLight2'
[LOG 09:48:31.317] PartLoader: Compiling Part 'Squad/Parts/Utility/stackBiCoupler/stackBiCoupler/stackBiCoupler'
[LOG 09:48:31.326] PartLoader: Compiling Part 'Squad/Parts/Utility/stackQuadCoupler/stackQuadCoupler/stackQuadCoupler'
[LOG 09:48:31.338] PartLoader: Compiling Part 'Squad/Parts/Utility/stackTriCoupler/stackTriCoupler/stackTriCoupler'
[LOG 09:48:31.347] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearExtraLarge/GearLarge'
[LOG 09:48:31.381] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFixed/GearFixed'
[LOG 09:48:31.401] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearFree/GearFree'
[LOG 09:48:31.424] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearLarge/GearMedium'
[LOG 09:48:31.457] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearMedium/GearSmall'
[LOG 09:48:31.490] PartLoader: Compiling Part 'Squad/Parts/Wheel/LandingGear/GearSmall/SmallGearBay'
[LOG 09:48:31.524] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelM1/roverWheelM1/roverWheel1'
[LOG 09:48:31.553] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelS2/roverWheelS2/roverWheel2'
[LOG 09:48:31.580] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelTR-2L/roverWheelTR-2L/wheelMed'
[LOG 09:48:31.629] PartLoader: Compiling Part 'Squad/Parts/Wheel/roverWheelXL3/roverWheelXL3/roverWheel3'
[LOG 09:48:31.655] PartLoader: Compiling Internal Prop 'Squad/Props/AltimeterThreeHands/prop/AltimeterThreeHands'
[LOG 09:48:31.659] PartLoader: Compiling Internal Prop 'Squad/Props/AtmosphereDepth/prop/AtmosphereDepth'
[LOG 09:48:31.662] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/pitchConfig/AxisIndicatorPitch'
[LOG 09:48:31.664] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/rollConfig/AxisIndicatorRoll'
[LOG 09:48:31.666] PartLoader: Compiling Internal Prop 'Squad/Props/AxisIndicator/yawConfig/AxisIndicatorYaw'
[LOG 09:48:31.668] PartLoader: Compiling Internal Prop 'Squad/Props/ButtonSquare/prop/ButtonSquare'
[LOG 09:48:31.670] PartLoader: Compiling Internal Prop 'Squad/Props/circularButton/prop/circularButton'
[LOG 09:48:31.672] PartLoader: Compiling Internal Prop 'Squad/Props/Compass/prop/Compass'
[LOG 09:48:31.673] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob/prop/directionalKnob'
[LOG 09:48:31.675] PartLoader: Compiling Internal Prop 'Squad/Props/directionalKnob2/prop/directionalKnob2'
[LOG 09:48:31.676] PartLoader: Compiling Internal Prop 'Squad/Props/IndicatorPanel/prop/IndicatorPanel'
[LOG 09:48:31.679] PartLoader: Compiling Internal Prop 'Squad/Props/IVANavBall/prop/NavBall'
[LOG 09:48:31.682] PartLoader: Compiling Internal Prop 'Squad/Props/ledPanelSpeed/prop/ledPanelSpeed'
[LOG 09:48:31.684] PartLoader: Compiling Internal Prop 'Squad/Props/Monitor/DockingMode/MonitorDockingMode'
[LOG 09:48:31.685] PartLoader: Compiling Internal Prop 'Squad/Props/NavBall/prop/NavBall'
[LOG 09:48:31.687] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Button_DockingMode/Button_DockingMode'
[LOG 09:48:31.688] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagA/CargoBagA'
[LOG 09:48:31.689] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagB/CargoBagB'
[LOG 09:48:31.690] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/CargoBagC/CargoBagC'
[LOG 09:48:31.691] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane/Hatch_Plane'
[LOG 09:48:31.692] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Curve90/Hatch_Plane_Curve90'
[LOG 09:48:31.694] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Hatch_Plane_Frame/Hatch_Plane_Frame'
[LOG 09:48:31.695] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Passenger/Seat_Passenger'
[LOG 09:48:31.696] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot/Seat_Pilot'
[LOG 09:48:31.697] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/Seat_Pilot_Helmet/Seat_Pilot_Helmet'
[LOG 09:48:31.698] PartLoader: Compiling Internal Prop 'Squad/Props/PropsGeneric/SideStick/SideStick'
[LOG 09:48:31.699] PartLoader: Compiling Internal Prop 'Squad/Props/pullSwitch/prop/pullSwitch'
[LOG 09:48:31.701] PartLoader: Compiling Internal Prop 'Squad/Props/radarAltitude/prop/RadarAltimeter'
[LOG 09:48:31.703] PartLoader: Compiling Internal Prop 'Squad/Props/squareButton/prop/squareButton'
[LOG 09:48:31.704] PartLoader: Compiling Internal Prop 'Squad/Props/standingSwitch/prop/standingSwitch'
[LOG 09:48:31.706] PartLoader: Compiling Internal Prop 'Squad/Props/switch/prop/switch'
[LOG 09:48:31.707] PartLoader: Compiling Internal Prop 'Squad/Props/switchGuard/prop/switchGuard'
[LOG 09:48:31.708] PartLoader: Compiling Internal Prop 'Squad/Props/switchWithGuards/prop/switchWithGuards'
[LOG 09:48:31.709] PartLoader: Compiling Internal Prop 'Squad/Props/throttle/prop/throttle'
[LOG 09:48:31.711] PartLoader: Compiling Internal Prop 'Squad/Props/VSI/prop/VSI'
[LOG 09:48:31.714] PartLoader: Compiling Internal Space 'Squad/Spaces/crewCabinInternals/internal/crewCabinInternals'
[LOG 09:48:31.724] PartLoader: Compiling Internal Space 'Squad/Spaces/cupolaInternal/internal/cupolaInternal'
[LOG 09:48:31.736] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace1/internal/GenericSpace1'
[LOG 09:48:31.737] PartLoader: Compiling Internal Space 'Squad/Spaces/GenericSpace3/internal/GenericSpace3'
[LOG 09:48:31.740] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinInternals/internal/landerCabinInternals'
[LOG 09:48:31.748] PartLoader: Compiling Internal Space 'Squad/Spaces/landerCabinSmallInternal/internal/landerCabinSmallInternal'
[LOG 09:48:31.755] PartLoader: Compiling Internal Space 'Squad/Spaces/LargeCrewedLabInternals/internal/Mobile_Processing_Lab_Int'
[LOG 09:48:31.758] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CabinInternal/internal/mk1CabinInternal'
[LOG 09:48:31.766] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1CockpitInternal/internal/mk1CockpitInternal'
[LOG 09:48:31.777] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1InlineInternal/internal/mk1InlineInternal'
[LOG 09:48:31.786] PartLoader: Compiling Internal Space 'Squad/Spaces/mk1PodCockpit/internal/mk1PodCockpit'
[LOG 09:48:31.790] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2CockpitStandardInternal/internal/mk2CockpitStandardInternals'
[LOG 09:48:31.807] PartLoader: Compiling Internal Space 'Squad/Spaces/Mk2CrewCabinInternal/internal_MK2_CrewCab/MK2_CrewCab_Int'
[LOG 09:48:31.815] PartLoader: Compiling Internal Space 'Squad/Spaces/mk2InlineInternal/internal/mk2InlineInternal'
[LOG 09:48:31.827] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3CockpitInternal/internal_MK3/MK3_Cockpit_Int'
[LOG 09:48:31.866] PartLoader: Compiling Internal Space 'Squad/Spaces/MK3_CrewCab_Int/internal_MK3_CrewCab/MK3_CrewCab_Int'
[LOG 09:48:31.870] InternalSeat: Cannot find portraitCamera of name 'Camera_Left003'
[LOG 09:48:31.878] PartLoader: Compiling Internal Space 'Squad/Spaces/Placeholder/internal/Placeholder'
[LOG 09:48:31.889] PartLoader: Compiling Internal Space 'Squad/Spaces/PodCockpit/internal/PodCockpit'
[LOG 09:48:31.904] Loading Systems: Elapsed time is 46.46166s
[WRN 09:48:31.940] The referenced script on this Behaviour is missing!
[WRN 09:48:31.940] The referenced script on this Behaviour is missing!
[WRN 09:48:32.486] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:32.486] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:32.526] UIMasterController: HideUI
[LOG 09:48:32.634] Agent: Found 18 agent mentality types
[LOG 09:48:32.635] AgentList: 28 agents parsed and loaded.
[WRN 09:48:32.637] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:48:32.638] UIMasterController: HideUI
[LOG 09:48:32.656] PQS - Graphics shader in fallback mode
[LOG 09:48:32.666] PQS - Graphics shader in fallback mode
[LOG 09:48:32.674] PQS - Graphics shader in fallback mode
[LOG 09:48:32.679] PQS - Graphics shader in fallback mode
[LOG 09:48:32.684] PQS - Graphics shader in fallback mode
[LOG 09:48:32.696] PQS - Graphics shader in fallback mode
[LOG 09:48:32.701] PQS - Graphics shader in fallback mode
[LOG 09:48:32.852] PQS - Graphics shader in fallback mode
[LOG 09:48:32.858] PQS - Graphics shader in fallback mode
[LOG 09:48:32.864] PQS - Graphics shader in fallback mode
[LOG 09:48:32.870] PQS - Graphics shader in fallback mode
[LOG 09:48:32.875] PQS - Graphics shader in fallback mode
[LOG 09:48:32.880] PQS - Graphics shader in fallback mode
[LOG 09:48:32.885] PQS - Graphics shader in fallback mode
[LOG 09:48:32.890] PQS - Graphics shader in fallback mode
[LOG 09:48:32.895] PQS - Graphics shader in fallback mode
[LOG 09:48:32.900] PQS - Graphics shader in fallback mode
[LOG 09:48:32.906] PQS - Graphics shader in fallback mode
[LOG 09:48:32.919] [CelestialBody]: Kerbin's solar day length is 1d, 0h, 0m long. sidereal day length is 5h, 59m, 9s long
[WRN 09:48:32.929] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:48:32.931] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:32.932] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[WRN 09:48:33.178] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:33.179] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:33.209] UIMasterController: HideUI
[WRN 09:48:33.211] [HighLogic]: =========================== Scene Change : From LOADING to MAINMENU =====================
[LOG 09:48:34.259] AddonLoader: Instantiating addon 'HyperEditModule' from assembly 'HyperEdit-1.5.2_for-KSP-1.1.2'
[LOG 09:48:34.262] HyperEdit: Using "R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\Kerbaltek\HyperEdit-1.5.2_for-KSP-1.1.2" as root config directory
[LOG 09:48:34.263] HyperEdit: Cannot add to ApplicationLauncher, instance was null
[LOG 09:48:34.265] UIMasterController: ShowUI
[WRN 09:48:35.092] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:48:35.093] [ApplicationLauncher] Awake False
[LOG 09:48:35.095] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 09:48:35.111] ScaleModList: listSize 41 maxListSize 0
[WRN 09:48:35.114] [UiApp] Awake: MessageSystem
[WRN 09:48:35.128] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:35.129] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:35.213] [UIApp] Adding MessageSystem to Application Launcher
[LOG 09:48:35.216] [ApplicationLauncher] SetHidden:
[LOG 09:48:35.266] [MessageSystem] OnAppInitialized
[LOG 09:48:35.267] [MessageSystem] Reposition 0.137237 5045
[LOG 09:48:47.277] MiniAVC -> Remote checking has been disabled for: IONRCS
[LOG 09:48:47.278] MiniAVC -> R:\User\Emul\PC\KSP\Copy of KSP-1.1.2-Clean\GameData\REPOSoftTech\IONRCS\IONRCS.version
    NAME: IONRCS
    URL: http://ksp-avc.cybutek.net/version.php?id=284
    DOWNLOAD: http://spacedock.info/mod/586/ION RCS
    GITHUB: NULL
    VERSION: 0.1.1
    KSP_VERSION: 1.1.2
    KSP_VERSION_MIN: 1.1
    KSP_VERSION_MAX: 1.1.2
    CompatibleKspVersion: True
    CompatibleKspVersionMin: True
    CompatibleKspVersionMax: True
    CompatibleGitHubVersion: True
[LOG 09:48:47.279] MiniAVC -> FirstRunGui was destroyed.
[LOG 09:48:47.323] MiniAVC -> Starter was destroyed.
[LOG 09:48:51.184] ExperienceSystem: Found 0 trait types
[LOG 09:48:51.186] ExperienceSystem: Found 9 effect types
[LOG 09:48:52.461] ReflectionUtil: Found 5 types with UpgradeModule attribute in 5 assemblies.
[LOG 09:48:52.474] [KSPUpgradePipeline]: Test (1.1.2) is up to date.
[LOG 09:48:52.479] ScenarioTypes: List Created 14 scenario types loaded from 5 loaded assemblies.
[LOG 09:48:52.482] UIMasterController: HideUI
[WRN 09:48:52.483] [HighLogic]: =========================== Scene Change : From MAINMENU to SPACECENTER (Async) =====================
[LOG 09:48:52.672] UIMasterController: HideUI
[WRN 09:48:53.011] The referenced script on this Behaviour is missing!
[WRN 09:48:53.011] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.012] The referenced script on this Behaviour is missing!
[WRN 09:48:53.013] The referenced script on this Behaviour is missing!
[WRN 09:48:53.013] The referenced script on this Behaviour is missing!
[WRN 09:48:53.013] The referenced script on this Behaviour is missing!
[LOG 09:48:53.796] AddonLoader: Instantiating addon 'ContractDefs' from assembly 'KSP'
[LOG 09:48:53.810] UIMasterController: HideUI
[LOG 09:48:53.811] [PlanetariumCamera]: Focus: Kerbin
[LOG 09:48:54.273] Loading Depletion Nodes
[LOG 09:48:54.274] DepNodeCount:  0
[LOG 09:48:54.275] Loading Biome Nodes
[LOG 09:48:54.275] BiomeNodeCount:  0
[LOG 09:48:54.276] Loading Planet Nodes
[LOG 09:48:54.276] PlanetNodeCount:  0
[LOG 09:48:54.287] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:48:54.321] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:48:54.322] [UiApp] Awake: KSPedia
[LOG 09:48:54.322] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 09:48:54.323] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 09:48:54.325] [ApplicationLauncher] SetVisible:
[LOG 09:48:54.326] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:48:54.334] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:48:54.336] [UIApp] OnDestroy: ContractsApp
[WRN 09:48:54.573] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:48:54.574] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:48:54.575] [MessageSystem] Reposition 0.02 5539
[LOG 09:48:55.533] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:48:56.139] UIMasterController: ShowUI
[LOG 09:49:11.023] Flight State Captured
[LOG 09:49:11.028] Saving Achievements Tree...
[LOG 09:49:11.032] [MessageSystem] Save Messages
[LOG 09:49:11.041] Game State Saved to saves/Test/persistent
[LOG 09:49:11.044] UIMasterController: HideUI
[WRN 09:49:11.045] [HighLogic]: =========================== Scene Change : From SPACECENTER to EDITOR (Async) =====================
[LOG 09:49:11.232] [UIApp] OnDestroy: KSPedia
[LOG 09:49:11.310] UIMasterController: HideUI
[WRN 09:49:12.093] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:49:12.094] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:49:12.095] UICanvasPrefabSpawner SceneLogic spawning Editor
[LOG 09:49:12.124] No Input Locks in effect right now
[LOG 09:49:12.191] UIMasterController: HideUI
[WRN 09:49:12.206] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:49:12.209] ------------------- initializing editor mode... ------------------
[LOG 09:49:12.210] editor started
[LOG 09:49:12.227] IconLoader awake
[WRN 09:49:12.669] The referenced script on this Behaviour is missing!
[WRN 09:49:12.669] The referenced script on this Behaviour is missing!
[WRN 09:49:12.669] The referenced script on this Behaviour is missing!
[LOG 09:49:12.967] Loading Depletion Nodes
[LOG 09:49:12.967] DepNodeCount:  0
[LOG 09:49:12.967] Loading Biome Nodes
[LOG 09:49:12.968] BiomeNodeCount:  0
[LOG 09:49:12.968] Loading Planet Nodes
[LOG 09:49:12.969] PlanetNodeCount:  0
[LOG 09:49:12.970] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:49:12.971] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:49:12.972] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:49:12.972] [UiApp] Awake: EngineersReport
[WRN 09:49:12.973] [UiApp] Awake: KSPedia
[LOG 09:49:12.973] [ApplicationLauncher] OnSceneLoadedGUIReady: scene EDITOR ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop False
[LOG 09:49:12.974] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:49:12.984] [UIApp] OnDestroy: ContractsApp
[LOG 09:49:13.287] [MessageSystem] Reposition 0.02 5741
[LOG 09:49:13.526] [UIApp] Adding EngineersReport to Application Launcher
[LOG 09:49:13.565] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:49:13.568] [GenericAppFrame] Reposition 0.2507544 5747
[LOG 09:49:13.823] UIMasterController: ShowUI
[LOG 09:49:43.666] rtg added to ship - part count: 2
[LOG 09:49:46.813] deleting part batteryBank
[LOG 09:49:49.283] batteryBankMini added to ship - part count: 3
[LOG 09:49:55.383] batteryBankMini added to ship - part count: 4
[LOG 09:49:57.849] batteryBankMini added to ship - part count: 5
[LOG 09:49:59.904] batteryBankMini added to ship - part count: 6
[LOG 09:50:05.832] batteryBankMini added to ship - part count: 7
[LOG 09:50:08.827] deleting part batteryBankMini
[LOG 09:50:10.375] deleting part batteryBankMini
[LOG 09:50:17.786] xenonTank added to ship - part count: 7
[LOG 09:50:21.213] xenonTank added to ship - part count: 8
[LOG 09:50:40.412] IONRCSBlock added to ship - part count: 9
[LOG 09:50:40.413] IONRCSBlock added to ship - part count: 10
[LOG 09:50:40.414] IONRCSBlock added to ship - part count: 11
[LOG 09:50:40.414] IONRCSBlock added to ship - part count: 12
[LOG 09:50:44.404] IONRCSBlock added to ship - part count: 13
[LOG 09:50:44.405] IONRCSBlock added to ship - part count: 14
[LOG 09:50:44.406] IONRCSBlock added to ship - part count: 15
[LOG 09:50:44.406] IONRCSBlock added to ship - part count: 16
[LOG 09:51:15.929] [Pre-Flight Check]: Checking for CraftWithinPartCountLimit: PASS!
[LOG 09:51:15.930] [Pre-Flight Check]: Checking for CraftWithinSizeLimits: PASS!
[LOG 09:51:15.931] [Pre-Flight Check]: Checking for CraftWithinMassLimits: PASS!
[LOG 09:51:15.931] [Pre-Flight Check]: Checking for ExperimentalPartsAvailable: PASS!
[LOG 09:51:15.932] [Pre-Flight Check]: Checking for CanAffordLaunchTest: PASS!
[LOG 09:51:15.933] [Pre-Flight Check]: Checking for FacilityOperational: PASS!
[LOG 09:51:15.933] [Pre-Flight Check]: Checking for NoControlSources: PASS!
[LOG 09:51:15.934] [Pre-Flight Check]: Checking for LaunchSiteClear: PASS!
[LOG 09:51:15.935] [Pre-Flight Check]: All Checks Complete. Go for Launch!
[LOG 09:51:15.940] Launching vessel from LaunchPad. Craft file: R:/User/Emul/PC/KSP/Copy of KSP-1.1.2-Clean/KSP_x64_Data/../saves/Test/Ships/VAB/Auto-Saved Ship.craft
[LOG 09:51:15.941] [MessageSystem] Save Messages
[LOG 09:51:15.943] Game State Saved to saves/Test/persistent
[LOG 09:51:15.945] UIMasterController: HideUI
[WRN 09:51:15.961] [HighLogic]: =========================== Scene Change : From EDITOR to FLIGHT (Async) =====================
[LOG 09:51:16.172] [UIApp] OnDestroy: EngineersReport
[LOG 09:51:16.174] [UIApp] OnDestroy: KSPedia
[LOG 09:51:16.265] UIMasterController: HideUI
[WRN 09:51:16.819] The referenced script on this Behaviour is missing!
[WRN 09:51:16.821] The referenced script on this Behaviour is missing!
[WRN 09:51:17.136] [UiApp] Awake: ResourceDisplay
[LOG 09:51:17.136] UICanvasPrefabSpawner FlightUI spawning Flight
[LOG 09:51:17.211] AddonLoader: Instantiating addon 'NavWaypoint' from assembly 'KSP'
[LOG 09:51:17.214] AddonLoader: Instantiating addon 'AeroGUI' from assembly 'KSP'
[LOG 09:51:17.218] UIMasterController: HideUI
[LOG 09:51:17.245] ------------------- initializing flight mode... ------------------
[LOG 09:51:17.248] [MessageSystem] Save Messages
[LOG 09:51:17.250] Loading ship from file: R:/User/Emul/PC/KSP/Copy of KSP-1.1.2-Clean/KSP_x64_Data/../saves/Test/Ships/VAB/Auto-Saved Ship.craft
[LOG 09:51:17.316] Untitled Space Craft loaded!
[LOG 09:51:19.618] putting ship to ground: 13.62763
[LOG 09:51:19.623] [Untitled Space Craft]: Ready to Launch - waiting to start physics...
[LOG 09:51:19.629] [FLIGHT GLOBALS]: Switching To Vessel Untitled Space Craft ----------------------
[LOG 09:51:19.630] setting new dominant body: Kerbin
FlightGlobals.mainBody: Kerbin
[LOG 09:51:19.632] Reference Frame: Rotating
[LOG 09:51:19.637] Vessel assembly complete!
[LOG 09:51:19.637] all systems started
[LOG 09:51:19.666] [FlightIntegrator]: Reloaded drag cube for zeroed cube root part probeCoreOcto2 on vessel Untitled Space Craft
[LOG 09:51:19.924] Loading Depletion Nodes
[LOG 09:51:19.925] DepNodeCount:  0
[LOG 09:51:19.925] Loading Biome Nodes
[LOG 09:51:19.925] BiomeNodeCount:  0
[LOG 09:51:19.926] Loading Planet Nodes
[LOG 09:51:19.926] PlanetNodeCount:  0
[LOG 09:51:19.928] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:51:19.930] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:51:19.930] [UiApp] Awake: CurrencyWidgetsApp
[WRN 09:51:19.931] [UiApp] Awake: ResourceDisplay
[WRN 09:51:19.931] [UiApp] Awake: KSPedia
[LOG 09:51:19.932] [ApplicationLauncher] OnSceneLoadedGUIReady: scene FLIGHT ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 09:51:19.932] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 09:51:19.934] ScaleModList: listSize 41 maxListSize 849
[LOG 09:51:19.935] ScaleModList: listSize 41 maxListSize 840
[WRN 09:51:19.936] [KnowledgeBase] OnAppLauncherReady 8955
[LOG 09:51:19.943] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:51:20.005] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:51:20.006] [UIApp] OnDestroy: ContractsApp
[LOG 09:51:20.053] [FlightIntegrator]: Vessel Untitled Space Craft has been unloaded 1.79769313486232E+308, applying analytic temperature 310.049856285791
[LOG 09:51:20.055] [Progress Node Reached]: RecordsAltitude
[LOG 09:51:20.056] [Progress Node Reached]: RecordsSpeed
[LOG 09:51:20.057] [Progress Node Reached]: RecordsDistance
[WRN 09:51:20.058] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:51:20.059] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:51:20.059] [MessageSystem] Reposition 0.02 8956
[LOG 09:51:20.148] [PlanetariumCamera]: Focus: Untitled Space Craft
[LOG 09:51:20.257] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 09:51:20.259] ScaleModList: listSize 41 maxListSize 799
[LOG 09:51:20.261] [UIApp] Adding ResourceDisplay to Application Launcher
[LOG 09:51:20.262] ScaleModList: listSize 41 maxListSize 758
[WRN 09:51:20.349] [ResourceDisplay] OnAppStarted(): id: -291358
[LOG 09:51:20.351] [GenericAppFrame] Reposition 0.1703075 8960
[WRN 09:51:20.353] [ResourceDisplay] OnAppStarted(): id: 138744
[LOG 09:51:20.354] ResourceDisplay already exist, destroying this instance
[LOG 09:51:20.355] [UIApp] OnDestroy: ResourceDisplay
[LOG 09:51:20.356] ScaleModList: listSize 41 maxListSize 758
[LOG 09:51:20.446] CURRENCY WIDGET False False False
[LOG 09:51:20.449] [UIApp] OnDestroy: CurrencyWidgetsApp
[LOG 09:51:20.528] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:51:20.530] ScaleModList: listSize 41 maxListSize 758
[LOG 09:51:21.156] UIMasterController: ShowUI
[LOG 09:51:21.162] Flight State Captured
[LOG 09:51:21.163] Saving Achievements Tree...
[LOG 09:51:21.165] [MessageSystem] Save Messages
[LOG 09:51:21.173] Game State Saved as persistent
[LOG 09:51:24.001] HyperEdit: No winpos found for "HyperEdit", defaulting to 100,100
[LOG 09:51:26.624] Unpacking Untitled Space Craft
[LOG 09:51:26.986] HyperEdit: No winpos found for "Orbit Editor", defaulting to 100,100
[LOG 09:51:28.996] HyperEdit: Set ActiveVessel.Landed = false
[LOG 09:51:28.997] HyperEdit: Set ActiveVessel.landedAt = ""
[LOG 09:51:29.000] Packing Untitled Space Craft for orbit
[LOG 09:51:29.003] HyperEdit: Orbit "Active vessel" changed to: inc=0.0001 ecc=0 sma=700000 lan=0.0001 argpe=0 mep=0 epoch=0 refbody=Kerbin
[LOG 09:51:29.081] Reference Frame: Inertial
[LOG 09:51:29.097] [Progress Node Complete]: RecordsAltitude
[LOG 09:51:29.098] [Progress Node Complete]: RecordsDistance
[LOG 09:51:29.965] [Progress Node Reached]: Orbit
[LOG 09:51:29.966] [Progress Node Reached]: Kerbin
[LOG 09:51:29.966] [Progress Node Complete]: Orbit
[LOG 09:51:31.381] Unpacking Untitled Space Craft
[LOG 09:51:33.374] Reference Frame: Rotating
[LOG 09:51:35.505] GenericAppFrame: auto scaling app.
[LOG 09:51:35.552] GenericAppFrame: auto scaling app.
[LOG 09:51:43.601] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:03.726] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:16.381] RCS lock/unlock
[LOG 09:52:22.573] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:40.094] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:52:57.357] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:53:01.455] Reference Frame: Inertial
[LOG 09:53:14.802] SCREENSHOT!!
[LOG 09:53:15.960] [AsteroidSpawner]: New object found near Kerbin: Ast. ERS-253!
[LOG 09:53:42.177] [AsteroidSpawner]: New object found near Kerbin: Ast. FYB-870!
[LOG 09:54:10.880] [AsteroidSpawner]: New object found near Kerbin: Ast. GXH-155!
[LOG 09:54:21.180] UIMasterController: ShowUI
[LOG 09:54:21.181] Game Paused!
[LOG 09:54:24.298] [FlightDriver]: Flight State Reverted to Prelaunch.
[LOG 09:54:24.300] Game State Saved as persistent
[LOG 09:54:24.303] UIMasterController: ShowUI
[LOG 09:54:24.304] Game Unpaused!
[WRN 09:54:24.305] Can not play a disabled audio source
[LOG 09:54:24.306] UIMasterController: HideUI
[WRN 09:54:24.314] [HighLogic]: =========================== Scene Change : From FLIGHT to EDITOR =====================
[LOG 09:54:24.319] Progress data not uploaded because Game Settings disallow it.
[LOG 09:54:24.819] KbApp.OnDestroy Planet Resources
[LOG 09:54:24.820] [PlanetariumCamera]: Focus: Kerbin
[LOG 09:54:24.821] KbApp.OnDestroy Vessel Info
[LOG 09:54:24.822] KbApp.OnDestroy Unowned Info
[LOG 09:54:24.824] [UIApp] OnDestroy: KSPedia
[LOG 09:54:24.825] ScaleModList: listSize 41 maxListSize 758
[LOG 09:54:24.825] KbApp.OnDestroy NullName
[LOG 09:54:24.826] [UIApp] OnDestroy: ResourceDisplay
[LOG 09:54:24.826] ScaleModList: listSize 41 maxListSize 758
[LOG 09:54:24.827] KbApp.OnDestroy Planet Parameters
[LOG 09:54:24.827] KbApp.OnDestroy Vessel Crew
[LOG 09:54:24.828] KbApp.OnDestroy Planet Info
[WRN 09:54:24.845] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:54:24.845] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:54:24.846] UICanvasPrefabSpawner SceneLogic spawning Editor
[LOG 09:54:24.868] No Input Locks in effect right now
[LOG 09:54:24.951] UIMasterController: ShowUI
[WRN 09:54:25.135] The referenced script on this Behaviour is missing!
[WRN 09:54:25.135] The referenced script on this Behaviour is missing!
[WRN 09:54:25.136] The referenced script on this Behaviour is missing!
[WRN 09:54:26.060] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:54:26.061] ------------------- initializing editor mode... ------------------
[LOG 09:54:26.062] editor started
[LOG 09:54:26.077] IconLoader awake
[LOG 09:54:26.201] Untitled Space Craft loaded!
[LOG 09:54:26.394] Loading Depletion Nodes
[LOG 09:54:26.394] DepNodeCount:  0
[LOG 09:54:26.395] Loading Biome Nodes
[LOG 09:54:26.396] BiomeNodeCount:  0
[LOG 09:54:26.396] Loading Planet Nodes
[LOG 09:54:26.397] PlanetNodeCount:  0
[LOG 09:54:26.400] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:54:26.401] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:54:26.402] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:54:26.403] [UiApp] Awake: EngineersReport
[WRN 09:54:26.403] [UiApp] Awake: KSPedia
[LOG 09:54:26.404] [ApplicationLauncher] OnSceneLoadedGUIReady: scene EDITOR ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop True
[LOG 09:54:26.405] [ApplicationLauncher] SpawnSimpleLayout: HorizontalRightLeft
[LOG 09:54:26.408] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:54:26.414] [UIApp] OnDestroy: ContractsApp
[LOG 09:54:26.481] [MessageSystem] Reposition 0.02 12172
[LOG 09:54:26.650] [UIApp] Adding EngineersReport to Application Launcher
[LOG 09:54:26.690] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:54:26.692] [GenericAppFrame] Reposition 0.2314445 12178
[LOG 09:54:29.530] [MessageSystem] Save Messages
[LOG 09:54:29.532] Game State Saved to saves/Test/persistent
[LOG 09:54:29.533] UIMasterController: HideUI
[WRN 09:54:29.541] [HighLogic]: =========================== Scene Change : From EDITOR to SPACECENTER =====================
[WRN 09:54:29.590] The referenced script on this Behaviour is missing!
[WRN 09:54:29.590] The referenced script on this Behaviour is missing!
[WRN 09:54:29.590] The referenced script on this Behaviour is missing!
[WRN 09:54:29.591] The referenced script on this Behaviour is missing!
[WRN 09:54:29.591] The referenced script on this Behaviour is missing!
[WRN 09:54:29.591] The referenced script on this Behaviour is missing!
[LOG 09:54:29.776] [UIApp] OnDestroy: EngineersReport
[LOG 09:54:29.782] [UIApp] OnDestroy: KSPedia
[LOG 09:54:32.201] UIMasterController: ShowUI
[LOG 09:54:32.388] Loading Depletion Nodes
[LOG 09:54:32.389] DepNodeCount:  0
[LOG 09:54:32.389] Loading Biome Nodes
[LOG 09:54:32.390] BiomeNodeCount:  0
[LOG 09:54:32.390] Loading Planet Nodes
[LOG 09:54:32.391] PlanetNodeCount:  0
[LOG 09:54:32.394] [ScenarioDestructibles]: Loading... 0 objects registered
[WRN 09:54:32.397] HighlightingSystem : Edge Highlighting requires AA to work!
[WRN 09:54:32.397] [UiApp] Awake: KSPedia
[LOG 09:54:32.398] [ApplicationLauncher] OnSceneLoadedGUIReady: scene SPACECENTER ShouldBeVisible() True ShouldBeOnTop() False iIsPositionedAtTop False
[LOG 09:54:32.399] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[LOG 09:54:32.403] [AsteroidSpawner]: No new objects this time. (Odds are 1:2)
[LOG 09:54:32.403] [UIApp] OnDestroy: ContractsApp
[WRN 09:54:32.589] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:54:32.589] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:54:32.590] [MessageSystem] Reposition 0.02 12252
[LOG 09:54:33.011] [UIApp] Adding KSPedia to Application Launcher
[LOG 09:54:34.657] UIMasterController: ShowUI
[LOG 09:54:34.658] Game Paused!
[LOG 09:54:36.053] Flight State Captured
[LOG 09:54:36.054] Saving Achievements Tree...
[LOG 09:54:36.055] [MessageSystem] Save Messages
[LOG 09:54:36.057] Game State Saved to saves/Test/persistent
[LOG 09:54:36.060] UIMasterController: ShowUI
[LOG 09:54:36.060] Game Unpaused!
[LOG 09:54:36.062] UIMasterController: HideUI
[WRN 09:54:36.064] [HighLogic]: =========================== Scene Change : From SPACECENTER to MAINMENU (Async) =====================
[LOG 09:54:36.066] UIMasterController: ShowUI
[LOG 09:54:36.066] Game Unpaused!
[LOG 09:54:36.436] [UIApp] OnDestroy: KSPedia
[LOG 09:54:36.521] UIMasterController: HideUI
[LOG 09:54:37.998] UIMasterController: ShowUI
[WRN 09:54:38.657] HighlightingSystem : Edge Highlighting requires AA to work!
[LOG 09:54:38.658] [ApplicationLauncher] OnSceneLoadedGUIReady: scene MAINMENU ShouldBeVisible() True ShouldBeOnTop() True iIsPositionedAtTop False
[LOG 09:54:38.658] [ApplicationLauncher] SpawnSimpleLayout: VerticalTopDown
[LOG 09:54:38.660] [ApplicationLauncher] SetHidden:
[LOG 09:54:38.661] HyperEdit: Not adding to ApplicationLauncher, button already exists (yet onGUIApplicationLauncherReady was called?)
[WRN 09:54:38.665] HighlightingSystem : Edge Highlighting requires AA to work!
[ERR 09:54:38.665] HighlightingSystem : Highlighting System has been disabled due to unsupported Unity features on the current platform!

[LOG 09:54:38.666] [MessageSystem] Reposition 0.02 12318
[LOG 09:54:46.068] [UIApp] OnDestroy: MessageSystem

 

 

Yeah it was broken. :blush: Fixed in V 0.1.2.0. go get it now! :sticktongue:

 

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 months later...

Now that KSP 1.2 Prerelease is out, PLEASE do not expect mods to be updated quickly.  
Prerelease is for the purpose of further debugging, and gives us modders an opportunity to see the new code and work with it.  
Since prerelease is typically a moving target, I will not be releasing any "official" release of my mods until KSP goes Full 1.2 Release itself.
Sorry to disappoint you all, but I do not have the free time to be continually updating and releasing while 1.2 is still a moving target.

 

Link to comment
Share on other sites

  • 1 month later...
  • 3 weeks later...
  • 3 months later...
  • 8 months later...
  • 3 months later...

Ping @JPLRepo

I am having some trouble balancing the 4 way rcs blocks. It seems like the thrust vectors for the blocks are out of whack some how. The screen shot is from a clean install + RCS build aid, used to display RCS thrust vectors. It does not matter if you place them in mirror symmetry or individually, the one on the right will always has this weird angled vector. This is the front of a vessel in the SPH, if you go behind the center of mass, it happens on the other side of the vessel, (the left side instead). The other axis are are also messed up, I just chose to illustrate and explain one case, for pitch. Would you like logs for this? As you can see, when the RCS blocks are set to pitch, they should both fire down to push the nose up, and while one of them does, the other one fires at an angle out to the side. 

 

screenshot

Edited by Errol
Link to comment
Share on other sites

  • 1 month later...
  • 4 weeks later...
  • 1 year later...
  • 3 years later...

Hi everyone, some of you may or may not know that I am a senior dev on KSP1 and now also on KSP2.
Unfortunately I am finding it harder and harder to find time to invest in my KSP1 mods as I would like to. Almost all of my efforts and time now go into KSP2.
That is not to say that I am giving up on my KSP1 mods, just that it is unlikely I am going to have much time to invest in looking at or fixing problems with them. I will find the time to fix some things but it is going to be a very slow road I'm afraid.
I will try my best, but cannot gaurantee anything. Instead - I am sinking all my time into KSP2 development in order to deliver all the exciting new stuff we can for KSP2 and opening up modding in KSP2 for everyone as well.
I hope you all understand. Thanks for your patience and support.

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...